Compare commits

...

2 Commits

Author SHA1 Message Date
Reilly Brogan
fbcff79a39
Merge 3c0e90f047 into 5dbba07e33 2024-09-28 10:34:19 -03:00
Reilly Brogan
3c0e90f047
Support ffmpeg 6.x 2024-07-22 19:24:38 -05:00

View File

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