plugins: Fix codec name on AAC encoders

This commit is contained in:
tytan652
2023-03-19 17:27:42 +01:00
parent aeab6b8fc4
commit 1514f1597a
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1409,7 +1409,7 @@ bool obs_module_load(void)
};
aac_info.id = "CoreAudio_AAC";
aac_info.type = OBS_ENCODER_AUDIO;
aac_info.codec = "AAC";
aac_info.codec = "aac";
aac_info.get_name = aac_get_name;
aac_info.destroy = aac_destroy;
aac_info.create = aac_create;