1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

removed leftovers, corrected whitespace indention in tuner.c

This commit is contained in:
nafets227 2014-11-10 21:54:26 +01:00
parent 8c6d16e6b7
commit 701cc4be54
3 changed files with 1 additions and 24 deletions

View File

@ -126,17 +126,6 @@ public:
this->Remove(i); this->Remove(i);
} }
void InsertUnique(T Data, int Before = 0)
{
if (IndexOf(Data) < 0)
this->Insert(Data, Before);
}
void AppendUnique(T Data)
{
if (IndexOf(Data) < 0)
this->Append(Data);
}
}; };
#endif // __SATIP_COMMON_H #endif // __SATIP_COMMON_H

View File

@ -76,9 +76,6 @@ cSatipTuner::~cSatipTuner()
Cancel(3); Cancel(3);
Close(); Close();
// Terminate curl session
RtspTerminate();
// Close the listening sockets // Close the listening sockets
rtpSocketM->Close(); rtpSocketM->Close();
rtcpSocketM->Close(); rtcpSocketM->Close();

View File

@ -90,15 +90,6 @@ private:
bool KeepAlive(void); bool KeepAlive(void);
bool UpdateSignalInfoCache(void); bool UpdateSignalInfoCache(void);
bool UpdatePids(bool forceP = false); bool UpdatePids(bool forceP = false);
cString GeneratePidParameter(bool allPidsP = false);
bool RtspInitialize(void);
bool RtspTerminate(void);
bool RtspOptions(void);
bool RtspSetup(const char *paramP, int rtpPortP, int rtcpPortP);
bool RtspDescribe(void);
bool RtspPlay(const char *paramP = NULL);
bool RtspTeardown(void);
protected: protected:
virtual void Action(void); virtual void Action(void);