Skip to content

Commit 025670e

Browse files
Remove a commflag hack.
This is disabling special decode settings for other applications like mythccextractor. The hack appears to be a leftover from when the commflagging speedup hacks were being tested.
1 parent ac795d5 commit 025670e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

mythtv/libs/libmythtv/avformatdecoder.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,7 @@ AvFormatDecoder::AvFormatDecoder(MythPlayer *parent,
330330
if (gCoreContext->GetNumSetting("CCBackground", 0))
331331
CC708Window::forceWhiteOnBlackText = true;
332332

333-
int x = gCoreContext->GetNumSetting("CommFlagFast", 0);
334-
LOG(VB_COMMFLAG, LOG_INFO, LOC + QString("CommFlagFast: %1").arg(x));
335-
if (x == 0)
336-
special_decode = kAVSpecialDecode_None;
337-
LOG(VB_COMMFLAG, LOG_INFO, LOC + QString("Special Decode Flags: 0x%1")
333+
LOG(VB_PLAYBACK, LOG_DEBUG, LOC + QString("Special Decode Flags: 0x%1")
338334
.arg(special_decode, 0, 16));
339335
}
340336

0 commit comments

Comments
 (0)