Skip to content

Commit

Permalink
Fixed encoder detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Vouk committed Nov 4, 2022
1 parent c8015f4 commit 8fc81ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/EncoderUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 8fc81ae

Please sign in to comment.