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:
parent
8c6d16e6b7
commit
701cc4be54
11
common.h
11
common.h
@ -126,17 +126,6 @@ public:
|
||||
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
|
||||
|
3
tuner.c
3
tuner.c
@ -76,9 +76,6 @@ cSatipTuner::~cSatipTuner()
|
||||
Cancel(3);
|
||||
Close();
|
||||
|
||||
// Terminate curl session
|
||||
RtspTerminate();
|
||||
|
||||
// Close the listening sockets
|
||||
rtpSocketM->Close();
|
||||
rtcpSocketM->Close();
|
||||
|
9
tuner.h
9
tuner.h
@ -90,15 +90,6 @@ private:
|
||||
bool KeepAlive(void);
|
||||
bool UpdateSignalInfoCache(void);
|
||||
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:
|
||||
virtual void Action(void);
|
||||
|
Loading…
Reference in New Issue
Block a user