0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Remove mf_aac references

This commit is contained in:
tytan652 2023-02-24 14:22:48 +01:00 committed by Rodney
parent 5d0a1c0010
commit 2a2d8fc1bb

View File

@ -139,7 +139,6 @@ static void PopulateBitrateMap()
call_once(once, []() {
const string encoders[] = {
"ffmpeg_aac",
"mf_aac",
"libfdk_aac",
"CoreAudio_AAC",
};
@ -175,10 +174,6 @@ static void PopulateBitrateMap()
if (strcmp(GetCodec(encoder.c_str()), "AAC") != 0)
continue;
// disable mf_aac if audio output is not stereo nor mono
if (output_channels >= 3 && encoder == "mf_aac")
continue;
HandleEncoderProperties(encoder.c_str());
}