2014-03-08 12:07:47 +01:00
|
|
|
/*
|
|
|
|
* tuner.c: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "config.h"
|
2014-03-13 17:23:55 +01:00
|
|
|
#include "discover.h"
|
2014-03-08 12:07:47 +01:00
|
|
|
#include "tuner.h"
|
|
|
|
|
|
|
|
cSatipTuner::cSatipTuner(cSatipDeviceIf &deviceP, unsigned int packetLenP)
|
|
|
|
: cThread("SAT>IP tuner"),
|
|
|
|
sleepM(),
|
|
|
|
deviceM(&deviceP),
|
2014-11-09 11:51:52 +01:00
|
|
|
deviceIdM(deviceM ? deviceM->GetId() : -1),
|
2014-03-08 12:07:47 +01:00
|
|
|
packetBufferLenM(packetLenP),
|
2014-11-09 11:51:52 +01:00
|
|
|
rtspM(new cSatipRtsp(*this)),
|
2014-03-08 12:07:47 +01:00
|
|
|
rtpSocketM(new cSatipSocket()),
|
|
|
|
rtcpSocketM(new cSatipSocket()),
|
|
|
|
streamAddrM(""),
|
|
|
|
streamParamM(""),
|
2014-03-13 17:23:55 +01:00
|
|
|
currentServerM(NULL),
|
|
|
|
nextServerM(NULL),
|
2014-03-08 12:07:47 +01:00
|
|
|
mutexM(),
|
|
|
|
keepAliveM(),
|
2014-11-05 20:55:40 +01:00
|
|
|
statusUpdateM(),
|
2014-03-08 12:07:47 +01:00
|
|
|
pidUpdateCacheM(),
|
2014-05-14 21:14:59 +02:00
|
|
|
sessionM(""),
|
2014-03-31 21:07:15 +02:00
|
|
|
timeoutM(eMinKeepAliveIntervalMs),
|
2014-03-08 12:07:47 +01:00
|
|
|
openedM(false),
|
|
|
|
tunedM(false),
|
|
|
|
hasLockM(false),
|
|
|
|
signalStrengthM(-1),
|
|
|
|
signalQualityM(-1),
|
|
|
|
streamIdM(-1),
|
2014-04-19 16:27:47 +02:00
|
|
|
addPidsM(),
|
|
|
|
delPidsM(),
|
2014-03-08 12:07:47 +01:00
|
|
|
pidsM()
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(%d) [device %d]", __FUNCTION__, packetBufferLenM, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// Allocate packet buffer
|
|
|
|
packetBufferM = MALLOC(unsigned char, packetBufferLenM);
|
|
|
|
if (packetBufferM)
|
|
|
|
memset(packetBufferM, 0, packetBufferLenM);
|
|
|
|
else
|
2014-11-09 11:51:52 +01:00
|
|
|
error("MALLOC() failed for packet buffer [device %d]", deviceIdM);
|
|
|
|
|
|
|
|
// Open sockets
|
|
|
|
int i = 100;
|
|
|
|
while (i-- > 0) {
|
|
|
|
if (rtpSocketM->Open() && rtcpSocketM->Open(rtpSocketM->Port() + 1))
|
|
|
|
break;
|
|
|
|
rtpSocketM->Close();
|
|
|
|
rtcpSocketM->Close();
|
|
|
|
}
|
|
|
|
if ((rtpSocketM->Port() <= 0) || (rtcpSocketM->Port() <= 0)) {
|
|
|
|
error("Cannot open required RTP/RTCP ports [device %d]", deviceIdM);
|
|
|
|
}
|
|
|
|
|
2014-03-08 12:07:47 +01:00
|
|
|
// Start thread
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
cSatipTuner::~cSatipTuner()
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// Stop thread
|
|
|
|
sleepM.Signal();
|
|
|
|
if (Running())
|
|
|
|
Cancel(3);
|
|
|
|
Close();
|
2014-11-09 11:51:52 +01:00
|
|
|
|
|
|
|
// Close the listening sockets
|
|
|
|
rtpSocketM->Close();
|
|
|
|
rtcpSocketM->Close();
|
|
|
|
|
2014-03-08 12:07:47 +01:00
|
|
|
// Free allocated memory
|
|
|
|
free(packetBufferM);
|
|
|
|
DELETENULL(rtcpSocketM);
|
|
|
|
DELETENULL(rtpSocketM);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipTuner::Action(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(): entering [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-25 22:50:30 +01:00
|
|
|
cTimeMs timeout(eReConnectTimeoutMs);
|
2014-03-08 12:07:47 +01:00
|
|
|
// Increase priority
|
|
|
|
SetPriority(-1);
|
|
|
|
// Do the thread loop
|
|
|
|
while (packetBufferM && Running()) {
|
|
|
|
int length = -1;
|
|
|
|
unsigned int size = min(deviceM->CheckData(), packetBufferLenM);
|
|
|
|
if (tunedM && (size > 0)) {
|
|
|
|
// Update pids
|
|
|
|
UpdatePids();
|
|
|
|
// Remember the heart beat
|
|
|
|
KeepAlive();
|
2014-11-05 20:55:40 +01:00
|
|
|
// Read reception statistics via DESCRIBE and RTCP
|
|
|
|
ReadReceptionStatus();
|
2014-03-08 12:07:47 +01:00
|
|
|
if (rtcpSocketM && rtcpSocketM->IsOpen()) {
|
|
|
|
unsigned char buf[1450];
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
if (rtcpSocketM->ReadApplication(buf, sizeof(buf)) > 0) {
|
|
|
|
ParseReceptionParameters((const char *)buf);
|
|
|
|
timeout.Set(eReConnectTimeoutMs);
|
|
|
|
}
|
|
|
|
}
|
2014-11-03 20:54:19 +01:00
|
|
|
// Quirk for devices without valid reception data
|
|
|
|
if (currentServerM && currentServerM->Quirk(cSatipServer::eSatipQuirkForceLock)) {
|
|
|
|
hasLockM = true;
|
|
|
|
signalStrengthM = eDefaultSignalStrength;
|
|
|
|
signalQualityM = eDefaultSignalQuality;
|
|
|
|
}
|
2014-03-08 12:07:47 +01:00
|
|
|
// Read data
|
|
|
|
if (rtpSocketM && rtpSocketM->IsOpen())
|
|
|
|
length = rtpSocketM->ReadVideo(packetBufferM, size);
|
|
|
|
}
|
|
|
|
if (length > 0) {
|
|
|
|
AddTunerStatistic(length);
|
|
|
|
deviceM->WriteData(packetBufferM, length);
|
|
|
|
timeout.Set(eReConnectTimeoutMs);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Reconnect if necessary
|
2014-03-25 22:50:30 +01:00
|
|
|
if (openedM && timeout.TimedOut()) {
|
2014-03-08 12:07:47 +01:00
|
|
|
Disconnect();
|
|
|
|
Connect();
|
|
|
|
timeout.Set(eReConnectTimeoutMs);
|
|
|
|
}
|
|
|
|
sleepM.Wait(10); // to avoid busy loop and reduce cpu load
|
|
|
|
}
|
|
|
|
}
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(): exiting [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::Open(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-11-05 20:55:40 +01:00
|
|
|
return Connect();
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::Close(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-11-05 20:55:40 +01:00
|
|
|
return Disconnect();
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::Connect(void)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
|
2014-11-09 11:51:52 +01:00
|
|
|
if (!isempty(*streamAddrM)) {
|
|
|
|
cString connectionUri = cString::sprintf("rtsp://%s", *streamAddrM);
|
|
|
|
cString uri = cString::sprintf("%s/?%s", *connectionUri, *streamParamM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// Just retune
|
|
|
|
if (tunedM && (streamIdM >= 0)) {
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(): retune [device %d]", __FUNCTION__, deviceIdM);
|
2014-04-19 16:27:47 +02:00
|
|
|
keepAliveM.Set(0);
|
|
|
|
KeepAlive();
|
2014-03-08 12:07:47 +01:00
|
|
|
// Flush any old content
|
|
|
|
if (rtpSocketM)
|
|
|
|
rtpSocketM->Flush();
|
2014-11-09 11:51:52 +01:00
|
|
|
openedM = rtspM->Setup(*uri, rtpSocketM->Port(), rtcpSocketM->Port());
|
2014-11-05 20:55:40 +01:00
|
|
|
return openedM;
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
2014-03-27 22:27:38 +01:00
|
|
|
keepAliveM.Set(timeoutM);
|
2014-11-09 11:51:52 +01:00
|
|
|
openedM = rtspM->Options(*connectionUri) && rtspM->Setup(*uri, rtpSocketM->Port(), rtcpSocketM->Port());
|
|
|
|
if (openedM) {
|
|
|
|
if (nextServerM && nextServerM->Quirk(cSatipServer::eSatipQuirkSessionId))
|
|
|
|
rtspM->SetSession(SkipZeroes(*sessionM));
|
|
|
|
tunedM = true;
|
|
|
|
UpdatePids(true);
|
|
|
|
if (nextServerM) {
|
|
|
|
cSatipDiscover::GetInstance()->UseServer(nextServerM, true);
|
|
|
|
currentServerM = nextServerM;
|
|
|
|
nextServerM = NULL;
|
|
|
|
}
|
2014-11-05 20:55:40 +01:00
|
|
|
}
|
2014-03-08 12:07:47 +01:00
|
|
|
|
2014-11-05 20:55:40 +01:00
|
|
|
return openedM;
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:40 +01:00
|
|
|
openedM = false;
|
|
|
|
return openedM;
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::Disconnect(void)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-11-05 20:55:40 +01:00
|
|
|
openedM = false;
|
2014-03-08 12:07:47 +01:00
|
|
|
|
2014-11-09 11:51:52 +01:00
|
|
|
if (!isempty(*streamAddrM)) {
|
|
|
|
cString uri = cString::sprintf("rtsp://%s/stream=%d", *streamAddrM, streamIdM);
|
|
|
|
rtspM->Teardown(*uri);
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset signal parameters
|
|
|
|
hasLockM = false;
|
|
|
|
signalStrengthM = -1;
|
|
|
|
signalQualityM = -1;
|
|
|
|
|
2014-03-13 17:23:55 +01:00
|
|
|
if (currentServerM)
|
|
|
|
cSatipDiscover::GetInstance()->UseServer(currentServerM, false);
|
2014-03-08 12:07:47 +01:00
|
|
|
tunedM = false;
|
2014-11-05 20:55:40 +01:00
|
|
|
statusUpdateM.Set(0);
|
2014-03-31 21:07:15 +02:00
|
|
|
timeoutM = eMinKeepAliveIntervalMs;
|
2014-04-19 16:27:47 +02:00
|
|
|
addPidsM.Clear();
|
|
|
|
delPidsM.Clear();
|
2014-03-08 12:07:47 +01:00
|
|
|
|
2014-11-05 20:55:40 +01:00
|
|
|
// return always true
|
2014-03-08 12:07:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipTuner::ParseReceptionParameters(const char *paramP)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s(%s) [device %d]", __FUNCTION__, paramP, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
// DVB-S2:
|
|
|
|
// ver=<major>.<minor>;src=<srcID>;tuner=<feID>,<level>,<lock>,<quality>,<frequency>,<polarisation>,<system>,<type>,<pilots>,<roll_off>,<symbol_rate>,<fec_inner>;pids=<pid0>,...,<pidn>
|
|
|
|
// DVB-T2:
|
|
|
|
// ver=1.1;tuner=<feID>,<level>,<lock>,<quality>,<freq>,<bw>,<msys>,<tmode>,<mtype>,<gi>,<fec>,<plp>,<t2id>,<sm>;pids=<pid0>,...,<pidn>
|
|
|
|
if (!isempty(paramP)) {
|
|
|
|
char *s = strdup(paramP);
|
|
|
|
char *c = strstr(s, ";tuner=");
|
|
|
|
if (c) {
|
|
|
|
int value;
|
|
|
|
|
|
|
|
// level:
|
|
|
|
// Numerical value between 0 and 255
|
|
|
|
// An incoming L-band satellite signal of
|
|
|
|
// -25dBm corresponds to 224
|
|
|
|
// -65dBm corresponds to 32
|
|
|
|
// No signal corresponds to 0
|
|
|
|
c = strstr(c, ",");
|
|
|
|
value = atoi(++c);
|
|
|
|
// Scale value to 0-100
|
|
|
|
signalStrengthM = (value >= 0) ? (value * 100 / 255) : -1;
|
|
|
|
|
|
|
|
// lock:
|
|
|
|
// lock Set to one of the following values:
|
|
|
|
// "0" the frontend is not locked
|
|
|
|
// "1" the frontend is locked
|
|
|
|
c = strstr(c, ",");
|
|
|
|
hasLockM = atoi(++c);
|
|
|
|
|
|
|
|
// quality:
|
|
|
|
// Numerical value between 0 and 15
|
|
|
|
// Lowest value corresponds to highest error rate
|
|
|
|
// The value 15 shall correspond to
|
|
|
|
// -a BER lower than 2x10-4 after Viterbi for DVB-S
|
|
|
|
// -a PER lower than 10-7 for DVB-S2
|
|
|
|
c = strstr(c, ",");
|
|
|
|
value = atoi(++c);
|
|
|
|
// Scale value to 0-100
|
|
|
|
signalQualityM = (hasLockM && (value >= 0)) ? (value * 100 / 15) : 0;
|
|
|
|
}
|
|
|
|
free(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-16 18:58:09 +01:00
|
|
|
void cSatipTuner::SetStreamId(int streamIdP)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(%d) [device %d]", __FUNCTION__, streamIdP, deviceIdM);
|
2014-03-16 18:58:09 +01:00
|
|
|
streamIdM = streamIdP;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cSatipTuner::SetSessionTimeout(const char *sessionP, int timeoutP)
|
2014-03-08 12:07:47 +01:00
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(%s, %d) [device %d]", __FUNCTION__, sessionP, timeoutP, deviceIdM);
|
2014-03-16 18:58:09 +01:00
|
|
|
sessionM = sessionP;
|
2014-03-31 21:07:15 +02:00
|
|
|
timeoutM = (timeoutP > eMinKeepAliveIntervalMs) ? timeoutP : eMinKeepAliveIntervalMs;
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
2014-11-09 11:51:52 +01:00
|
|
|
int cSatipTuner::GetId(void)
|
|
|
|
{
|
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
|
|
|
return deviceIdM;
|
|
|
|
}
|
|
|
|
|
2014-03-13 17:23:55 +01:00
|
|
|
bool cSatipTuner::SetSource(cSatipServer *serverP, const char *parameterP, const int indexP)
|
2014-03-08 12:07:47 +01:00
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
debug("cSatipTuner::%s(%s, %d) [device %d]", __FUNCTION__, parameterP, indexP, deviceIdM);
|
2014-03-13 17:23:55 +01:00
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-03 20:55:54 +01:00
|
|
|
if (serverP) {
|
|
|
|
nextServerM = cSatipDiscover::GetInstance()->GetServer(serverP);
|
|
|
|
if (nextServerM && !isempty(nextServerM->Address()) && !isempty(parameterP)) {
|
|
|
|
// Update stream address and parameter
|
2014-11-09 11:51:52 +01:00
|
|
|
streamAddrM = rtspM->RtspUnescapeString(nextServerM->Address());
|
2014-11-03 20:55:54 +01:00
|
|
|
streamParamM = parameterP;
|
|
|
|
// Reconnect
|
|
|
|
Connect();
|
|
|
|
}
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
2014-11-03 20:55:54 +01:00
|
|
|
else
|
|
|
|
Disconnect();
|
2014-03-08 12:07:47 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::SetPid(int pidP, int typeP, bool onP)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s(%d, %d, %d) [device %d]", __FUNCTION__, pidP, typeP, onP, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-04-19 16:27:47 +02:00
|
|
|
if (onP) {
|
2014-11-09 01:32:50 +01:00
|
|
|
pidsM.AddPid(pidP);
|
|
|
|
addPidsM.AddPid(pidP);
|
|
|
|
delPidsM.RemovePid(pidP);
|
2014-04-19 16:27:47 +02:00
|
|
|
}
|
|
|
|
else {
|
2014-11-09 01:32:50 +01:00
|
|
|
pidsM.RemovePid(pidP);
|
|
|
|
delPidsM.AddPid(pidP);
|
|
|
|
addPidsM.RemovePid(pidP);
|
2014-04-19 16:27:47 +02:00
|
|
|
}
|
2014-03-08 12:07:47 +01:00
|
|
|
pidUpdateCacheM.Set(ePidUpdateIntervalMs);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-19 16:27:47 +02:00
|
|
|
bool cSatipTuner::UpdatePids(bool forceP)
|
2014-03-08 12:07:47 +01:00
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-04-19 16:27:47 +02:00
|
|
|
if (((forceP && pidsM.Size()) || (pidUpdateCacheM.TimedOut() && (addPidsM.Size() || delPidsM.Size()))) &&
|
2014-11-09 11:51:52 +01:00
|
|
|
tunedM && !isempty(*streamAddrM) && (streamIdM > 0)) {
|
2014-04-19 16:27:47 +02:00
|
|
|
cString uri = cString::sprintf("rtsp://%s/stream=%d", *streamAddrM, streamIdM);
|
2014-11-05 20:55:40 +01:00
|
|
|
bool usedummy = !!(currentServerM && currentServerM->Quirk(cSatipServer::eSatipQuirkPlayPids));
|
|
|
|
if (forceP || usedummy) {
|
2014-04-19 16:27:47 +02:00
|
|
|
if (pidsM.Size()) {
|
|
|
|
uri = cString::sprintf("%s?pids=", *uri);
|
|
|
|
for (int i = 0; i < pidsM.Size(); ++i)
|
|
|
|
uri = cString::sprintf("%s%d%s", *uri, pidsM[i], (i == (pidsM.Size() - 1)) ? "" : ",");
|
|
|
|
}
|
2014-11-05 20:55:40 +01:00
|
|
|
if (usedummy && (pidsM.Size() == 1) && (pidsM[0] < 0x20))
|
|
|
|
uri = cString::sprintf("%s,%d", *uri, eDummyPid);
|
2014-04-19 16:27:47 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (addPidsM.Size()) {
|
|
|
|
uri = cString::sprintf("%s?addpids=", *uri);
|
|
|
|
for (int i = 0; i < addPidsM.Size(); ++i)
|
|
|
|
uri = cString::sprintf("%s%d%s", *uri, addPidsM[i], (i == (addPidsM.Size() - 1)) ? "" : ",");
|
|
|
|
}
|
|
|
|
if (delPidsM.Size()) {
|
|
|
|
uri = cString::sprintf("%s%sdelpids=", *uri, addPidsM.Size() ? "&" : "?");
|
|
|
|
for (int i = 0; i < delPidsM.Size(); ++i)
|
|
|
|
uri = cString::sprintf("%s%d%s", *uri, delPidsM[i], (i == (delPidsM.Size() - 1)) ? "" : ",");
|
|
|
|
}
|
|
|
|
}
|
2014-11-09 11:51:52 +01:00
|
|
|
if (rtspM->Play(*uri)) {
|
2014-04-19 16:27:47 +02:00
|
|
|
addPidsM.Clear();
|
|
|
|
delPidsM.Clear();
|
2014-11-09 11:51:52 +01:00
|
|
|
return true;
|
2014-04-19 16:27:47 +02:00
|
|
|
}
|
2014-11-09 11:51:52 +01:00
|
|
|
Disconnect();
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::KeepAlive(void)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
if (tunedM && keepAliveM.TimedOut()) {
|
2014-03-08 12:07:47 +01:00
|
|
|
cString uri = cString::sprintf("rtsp://%s/stream=%d", *streamAddrM, streamIdM);
|
2014-11-09 11:51:52 +01:00
|
|
|
if (rtspM->Options(*uri)) {
|
2014-03-27 22:27:38 +01:00
|
|
|
keepAliveM.Set(timeoutM);
|
2014-11-09 11:51:52 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Disconnect();
|
2014-03-08 12:07:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-05 20:55:40 +01:00
|
|
|
bool cSatipTuner::ReadReceptionStatus(void)
|
|
|
|
{
|
|
|
|
cMutexLock MutexLock(&mutexM);
|
2014-11-09 11:51:52 +01:00
|
|
|
if (tunedM && !pidsM.Size() && statusUpdateM.TimedOut() ) {
|
2014-11-05 20:55:40 +01:00
|
|
|
cString uri = cString::sprintf("rtsp://%s/stream=%d", *streamAddrM, streamIdM);
|
2014-11-09 11:51:52 +01:00
|
|
|
if (rtspM->Describe(*uri)) {
|
2014-11-05 20:55:40 +01:00
|
|
|
statusUpdateM.Set(eStatusUpdateTimeoutMs);
|
2014-11-09 11:51:52 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Disconnect();
|
2014-11-05 20:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-08 12:07:47 +01:00
|
|
|
int cSatipTuner::SignalStrength(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return signalStrengthM;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cSatipTuner::SignalQuality(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return signalQualityM;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cSatipTuner::HasLock(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return tunedM && hasLockM;
|
|
|
|
}
|
|
|
|
|
|
|
|
cString cSatipTuner::GetSignalStatus(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return cString::sprintf("lock=%d strength=%d quality=%d", HasLock(), SignalStrength(), SignalQuality());
|
|
|
|
}
|
|
|
|
|
|
|
|
cString cSatipTuner::GetInformation(void)
|
|
|
|
{
|
2014-11-09 11:51:52 +01:00
|
|
|
//debug("cSatipTuner::%s() [device %d]", __FUNCTION__, deviceIdM);
|
2014-03-08 12:07:47 +01:00
|
|
|
return tunedM ? cString::sprintf("rtsp://%s/?%s [stream=%d]", *streamAddrM, *streamParamM, streamIdM) : "connection failed";
|
|
|
|
}
|