@@ -234,7 +234,7 @@ cIptvSectionFilterHandler::cIptvSectionFilterHandler(int deviceIndexP, unsigned
234
234
*cString::sprintf (" IPTV SECTION HANDLER %d" , deviceIndexP))),
235
235
mutexM(),
236
236
deviceIndexM(deviceIndexP) {
237
- debug1 (" %s (%d, %d) [device %d]" , __PRETTY_FUNCTION__, deviceIndexP, bufferLenP, deviceIndexM);
237
+ debug9 (" %s (%d, %d) [device %d]" , __PRETTY_FUNCTION__, deviceIndexP, bufferLenP, deviceIndexM);
238
238
239
239
// Initialize filter pointers
240
240
memset (filtersM, 0 , sizeof (filtersM));
@@ -250,7 +250,7 @@ cIptvSectionFilterHandler::cIptvSectionFilterHandler(int deviceIndexP, unsigned
250
250
}
251
251
252
252
cIptvSectionFilterHandler::~cIptvSectionFilterHandler () {
253
- debug1 (" %s [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
253
+ debug9 (" %s [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
254
254
// Stop thread
255
255
if (Running ())
256
256
Cancel (3 );
@@ -263,7 +263,7 @@ cIptvSectionFilterHandler::~cIptvSectionFilterHandler() {
263
263
}
264
264
265
265
void cIptvSectionFilterHandler::Action () {
266
- debug1 (" %s Entering [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
266
+ debug9 (" %s Entering [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
267
267
bool processed = false ;
268
268
// Do the thread loop
269
269
while (Running ()) {
@@ -294,7 +294,7 @@ void cIptvSectionFilterHandler::Action() {
294
294
}
295
295
}
296
296
ringBufferM->Del (len);
297
- debug1 (" %s Skipped %d bytes to sync on TS packet [device %d]]" ,
297
+ debug9 (" %s Skipped %d bytes to sync on TS packet [device %d]]" ,
298
298
__PRETTY_FUNCTION__,
299
299
len,
300
300
deviceIndexM);
@@ -313,7 +313,7 @@ void cIptvSectionFilterHandler::Action() {
313
313
}
314
314
cCondWait::SleepMs (10 ); // to avoid busy loop and reduce cpu load
315
315
}
316
- debug1 (" %s Exiting [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
316
+ debug9 (" %s Exiting [device %d]" , __PRETTY_FUNCTION__, deviceIndexM);
317
317
}
318
318
319
319
cString cIptvSectionFilterHandler::GetInformation () {
@@ -399,7 +399,7 @@ void cIptvSectionFilterHandler::Close(int handleP) {
399
399
// Search the filter for deletion
400
400
for (unsigned int i = 0 ; i < eMaxSecFilterCount; ++i) {
401
401
if (filtersM[i] && (handleP==filtersM[i]->GetFd ())) {
402
- debug1 (" %s (%d) pid=%d handle=%d index=%d [device %d]" ,
402
+ debug9 (" %s (%d) pid=%d handle=%d index=%d [device %d]" ,
403
403
__PRETTY_FUNCTION__,
404
404
handleP,
405
405
filtersM[i]->GetPid (),
@@ -418,7 +418,7 @@ int cIptvSectionFilterHandler::GetPid(int handleP) {
418
418
// Search the filter for data
419
419
for (unsigned int i = 0 ; i < eMaxSecFilterCount; ++i) {
420
420
if (filtersM[i] && (handleP==filtersM[i]->GetFd ())) {
421
- debug1 (" %s (%d) pid=%d handle=%d index=%d [device %d]" ,
421
+ debug9 (" %s (%d) pid=%d handle=%d index=%d [device %d]" ,
422
422
__PRETTY_FUNCTION__,
423
423
handleP,
424
424
filtersM[i]->GetPid (),
0 commit comments