mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-02-05 20:12:13 -05:00
UI: Fix matching FFmpeg formats/codecs
This commit is contained in:
@@ -2238,7 +2238,7 @@ void OBSBasicSettings::LoadAdvOutputRecordingEncoderProperties()
|
||||
static void SelectFormat(QComboBox *combo, const char *name,
|
||||
const char *mimeType)
|
||||
{
|
||||
FFmpegFormat format{name, mimeType};
|
||||
FFmpegFormat format{name, nullptr, mimeType};
|
||||
|
||||
for (int i = 0; i < combo->count(); i++) {
|
||||
QVariant v = combo->itemData(i);
|
||||
|
||||
Reference in New Issue
Block a user