Skip to content

Commit e988255

Browse files
committed
Demuxer: MythTV failing regression
1 parent 32f9c73 commit e988255

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/rust/src/demuxer/demux.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,11 @@ impl CcxDemuxer<'_> {
275275
}
276276
// MythTV detection logic
277277
match ccx_options.auto_myth {
278-
Some(false) => {
278+
Some(true) => {
279279
// Force stream mode to myth
280280
self.stream_mode = StreamMode::Myth;
281281
}
282-
Some(true) => {
282+
Some(false) => {
283283
if matches!(
284284
self.stream_mode,
285285
StreamMode::ElementaryOrNotFound | StreamMode::Program

0 commit comments

Comments
 (0)