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

Moved tuner statistics back to cSatipTuner.

This commit is contained in:
Rolf Ahrenberg
2014-11-16 16:30:45 +02:00
parent 5c051d919b
commit 6b2090e9ad
4 changed files with 4 additions and 4 deletions

View File

@@ -242,8 +242,10 @@ unsigned int cSatipTuner::GetVideoDataSize(void)
void cSatipTuner::ProcessVideoData(u_char *bufferP, int lengthP)
{
//debug("cSatipTuner::%s(%d) [device %d]", __FUNCTION__, lengthP, deviceIdM);
if (lengthP > 0)
if (lengthP > 0) {
AddTunerStatistic(lengthP);
deviceM->WriteData(bufferP, lengthP);
}
cMutexLock MutexLock(&mutexM);
reConnectM.Set(eConnectTimeoutMs);
}