From adee6e922017f73378e4730468bdf679a87f70dd Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 3 Mar 2013 15:17:19 +0100 Subject: [PATCH] zapit: remove redundant console output --- src/zapit/src/zapit.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zapit/src/zapit.cpp b/src/zapit/src/zapit.cpp index 32719f60a..9db98d4bc 100644 --- a/src/zapit/src/zapit.cpp +++ b/src/zapit/src/zapit.cpp @@ -729,7 +729,7 @@ void CZapit::SetAudioStreamType(CZapitAudioChannel::ZapitAudioChannelType audioC int newpercent = GetPidVolume(0, 0, audioChannelType == CZapitAudioChannel::AC3); SetVolumePercent(newpercent); - printf("[zapit] starting %s audio\n", audioStr); + DBG("starting %s audio\n", audioStr); } bool CZapit::ChangeAudioPid(uint8_t index) @@ -1951,7 +1951,7 @@ bool CZapit::StartPlayBack(CZapitChannel *thisChannel) pcrDemux->pesFilter(thisChannel->getPcrPid()); } if (have_pcr) { - printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); + //printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); pcrDemux->Start(); } #else @@ -1973,7 +1973,7 @@ bool CZapit::StartPlayBack(CZapitChannel *thisChannel) } #endif if (have_pcr) { - printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); + //printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); pcrDemux->Start(); }