Fix warning about missing default codecs on first run, when those codecs do exist

This commit is contained in:
aware70 2024-06-04 21:01:23 -05:00
parent 601a2ad5aa
commit 088bd6aacc

View file

@ -167,7 +167,7 @@ bool AudioCodecPage::IsRequired()
// Setup is required if codec errors are not ignored, and the default codecs // Setup is required if codec errors are not ignored, and the default codecs
// are not supported // are not supported
return (!ignoreCodecErrors && return (!ignoreCodecErrors &&
oggCodecs.contains(QMediaFormat::AudioCodec::Vorbis)); !oggCodecs.contains(QMediaFormat::AudioCodec::Vorbis));
} }
} // namespace setup } // namespace setup