ffmpeg: Fix green screen issues on Linux

This commit is contained in:
KeatonTheBot 2025-05-25 21:10:20 -05:00
parent f6351e3fff
commit 2f400491d5

View file

@ -12,8 +12,8 @@ namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
private static readonly Dictionary<string, (int, int)> _librariesWhitelist = new()
{
{ AvCodecLibraryName, (58, 61) },
{ AvUtilLibraryName, (56, 59) },
{ AvCodecLibraryName, (59, 60) },
{ AvUtilLibraryName, (57, 58) },
};
private static string FormatLibraryNameForCurrentOs(string libraryName, int version)