We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e428e commit f087394Copy full SHA for f087394
mythtv/libs/libmyth/audiooutputbase.cpp
@@ -579,18 +579,7 @@ void AudioOutputBase::Reconfigure(const AudioSettings &orig_settings)
579
if (enc)
580
output_format = FORMAT_S16; // Output s16le for AC-3 encoder
581
else
582
- {
583
- // re-encode audio using same format as input if upmixing
584
- // to minimize the memory sound buffer usage. There should be
585
- // no siginificant quality loss
586
- if (needs_upmix &&
587
- output_settings->IsSupportedFormat(format))
588
589
- output_format = format;
590
- }
591
- else
592
- output_format = output_settings->BestSupportedFormat();
593
+ output_format = output_settings->BestSupportedFormat();
594
}
595
596
bytes_per_frame = processing ? 4 : output_settings->SampleSize(format);
0 commit comments