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);
|
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
|
||||||
|
5
tuner.c
5
tuner.c
@ -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();
|
||||||
@ -373,7 +370,7 @@ cString cSatipTuner::GeneratePidParameter(bool allPidsP)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return param;
|
return param;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cSatipTuner::UpdatePids(bool forceP)
|
bool cSatipTuner::UpdatePids(bool forceP)
|
||||||
|
9
tuner.h
9
tuner.h
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user