zapit: remove redundant console output

This commit is contained in:
Stefan Seyfried
2013-03-03 15:17:19 +01:00
parent 9064d34a1e
commit adee6e9220

View File

@@ -729,7 +729,7 @@ void CZapit::SetAudioStreamType(CZapitAudioChannel::ZapitAudioChannelType audioC
int newpercent = GetPidVolume(0, 0, audioChannelType == CZapitAudioChannel::AC3); int newpercent = GetPidVolume(0, 0, audioChannelType == CZapitAudioChannel::AC3);
SetVolumePercent(newpercent); SetVolumePercent(newpercent);
printf("[zapit] starting %s audio\n", audioStr); DBG("starting %s audio\n", audioStr);
} }
bool CZapit::ChangeAudioPid(uint8_t index) bool CZapit::ChangeAudioPid(uint8_t index)
@@ -1951,7 +1951,7 @@ bool CZapit::StartPlayBack(CZapitChannel *thisChannel)
pcrDemux->pesFilter(thisChannel->getPcrPid()); pcrDemux->pesFilter(thisChannel->getPcrPid());
} }
if (have_pcr) { if (have_pcr) {
printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); //printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid());
pcrDemux->Start(); pcrDemux->Start();
} }
#else #else
@@ -1973,7 +1973,7 @@ bool CZapit::StartPlayBack(CZapitChannel *thisChannel)
} }
#endif #endif
if (have_pcr) { if (have_pcr) {
printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid()); //printf("[zapit] starting PCR 0x%X\n", thisChannel->getPcrPid());
pcrDemux->Start(); pcrDemux->Start();
} }