mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 01:11:12 +02:00
scannit.cpp: remove extra debug
This commit is contained in:
@@ -153,22 +153,17 @@ bool CNit::Parse()
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
NetworkInformationSectionIterator sit;
|
NetworkInformationSectionIterator sit;
|
||||||
#ifdef DEBUG_NIT
|
|
||||||
printf("NIT: %d sections\n", sections.size());
|
|
||||||
#endif
|
|
||||||
for (sit = sections.begin(); sit != sections.end(); ++sit) {
|
for (sit = sections.begin(); sit != sections.end(); ++sit) {
|
||||||
NetworkInformationSection * nit = *sit;
|
NetworkInformationSection * nit = *sit;
|
||||||
const TransportStreamInfoList *tslist = nit->getTsInfo();
|
const TransportStreamInfoList *tslist = nit->getTsInfo();
|
||||||
#ifdef DEBUG_NIT
|
|
||||||
printf("NIT: %d TransportStreamInfos\n", tslist->size());
|
|
||||||
#endif
|
|
||||||
if (CServiceScan::getInstance()->Aborted())
|
if (CServiceScan::getInstance()->Aborted())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
for(TransportStreamInfoConstIterator tit = tslist->begin(); tit != tslist->end(); ++tit) {
|
for(TransportStreamInfoConstIterator tit = tslist->begin(); tit != tslist->end(); ++tit) {
|
||||||
TransportStreamInfo * tsinfo = *tit;
|
TransportStreamInfo * tsinfo = *tit;
|
||||||
const DescriptorList * dlist = tsinfo->getDescriptors();
|
const DescriptorList * dlist = tsinfo->getDescriptors();
|
||||||
#if 0 //ifdef DEBUG_NIT
|
#if 0
|
||||||
printf("NIT: tsid %04x onid %04x %d descriptors\n", tsinfo->getTransportStreamId(),
|
printf("NIT: tsid %04x onid %04x %d descriptors\n", tsinfo->getTransportStreamId(),
|
||||||
tsinfo->getOriginalNetworkId(), dlist->size());
|
tsinfo->getOriginalNetworkId(), dlist->size());
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user