From: schon Date: Wed, 25 May 2011 09:24:51 +0000 (+0900) Subject: remove debug msg X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=7ca8a9335e44c5e15cfb8f3c6c71168cce8d7892 remove debug msg --- diff --git a/lib/dvb/pmt.cpp b/lib/dvb/pmt.cpp index a4c5620..6efea36 100644 --- a/lib/dvb/pmt.cpp +++ b/lib/dvb/pmt.cpp @@ -474,7 +474,6 @@ int eDVBServicePMTHandler::getProgramInfo(program &program) case AC3_DESCRIPTOR: { Ac3Descriptor *ac = (Ac3Descriptor*)(*desc); - eDebug("ac->getAc3TypeFlag() : 0x%x", ac->getAc3TypeFlag()); isaudio = 1; audio.type = audioStream::atAC3; @@ -483,7 +482,6 @@ int eDVBServicePMTHandler::getProgramInfo(program &program) { uint8_t ac3type = ac->getAc3Type(); - eDebug("ac->getAc3Type() : 0x%x", ac->getAc3Type()); if( ( ac3type & 0x80 ) && ( (ac3type<<5) == 0xA0 || (ac3type<<5) == 0xC0) ) // From EN-300 468 v1.7.1 Table D.1 audio.type = audioStream::atDDP; }