Support ffmpeg 6.x

This commit is contained in:
Reilly Brogan 2024-07-22 19:24:38 -05:00
parent 95d252b7b8
commit 3c0e90f047
No known key found for this signature in database
GPG Key ID: F58C404158883626
1 changed files with 2 additions and 2 deletions

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)