UI: Fix potential null pointer dereference

If you're using an encoder from a plugin, and you remove that plugin,
this value will be null, causing a crash. (Lain note: I realize that
this isn't the best solution to this problem, though there really isn't
any way to infer what type of encoder the prior encoder was. Should also
save the encoder type as additional setting metadata in future
versions.)
This commit is contained in:
Lain
2023-08-17 17:06:24 -07:00
parent ad740735d2
commit b8d85d84a4

View File

@@ -1441,7 +1441,7 @@ static QString get_adv_audio_fallback(const QString &enc)
{
const char *codec = obs_get_encoder_codec(QT_TO_UTF8(enc));
if (strcmp(codec, "aac") == 0)
if (codec && strcmp(codec, "aac") == 0)
return "ffmpeg_opus";
QString aac_default = "ffmpeg_aac";