Skip to content

Commit

Permalink
Channelscan Remove inactive debug message
Browse files Browse the repository at this point in the history
Remove a debug message that was used during development but that
was not intended to be committed.
  • Loading branch information
kmdewaal committed Sep 6, 2020
1 parent 497eae2 commit 132d7fb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions mythtv/libs/libmythtv/mpeg/mpegstreamdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1804,11 +1804,7 @@ void MPEGStreamData::TestDecryption(const ProgramMapTable *pmt)
const uint streamType = pmt->StreamType(i);
bool is_vid = StreamID::IsVideo(streamType);
bool is_aud = StreamID::IsAudio(streamType);
#if 0
LOG(VB_RECORD, LOG_DEBUG, LOC +
QString("KdW program:%1 i:%2 pid:0x%3 IsVideo:%4 IsAudio:%5")
.arg(pmt->ProgramNumber()).arg(i).arg(pmt->StreamPID(i),0,16).arg(is_vid).arg(is_aud));
#endif

if (is_vid || is_aud)
{
AddEncryptionTestPID(
Expand Down

0 comments on commit 132d7fb

Please sign in to comment.