From 8fc81aea82638fd1b20dc4e8c555c589fc77e65b Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Fri, 4 Nov 2022 18:15:18 +0100 Subject: [PATCH] Fixed encoder detection --- Core/src/EncoderUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/EncoderUtils.cpp b/Core/src/EncoderUtils.cpp index 6b99cd67..e1d8e20b 100644 --- a/Core/src/EncoderUtils.cpp +++ b/Core/src/EncoderUtils.cpp @@ -142,7 +142,7 @@ AVMediaType EncoderUtils::GetMediaType(const wxString codecId) bool EncoderUtils::IsEncoderAvailable(const wxString name) { // If it's not an external encoder we can skip this check - if (!name.Lower().EndsWith("_qsv") && !name.Lower().EndsWith("_amv") && !name.Lower().EndsWith("_nvenc") && + if (!name.Lower().EndsWith("_qsv") && !name.Lower().EndsWith("_amf") && !name.Lower().EndsWith("_nvenc") && name.Lower() != "libfdk_aac") return true;