aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs
diff options
context:
space:
mode:
authorMary-nyan <mary@mary.zone>2022-11-02 09:26:50 +0100
committerGitHub <noreply@github.com>2022-11-02 09:26:50 +0100
commit7d8e198c33b7ad283db53315129209a2bd310f23 (patch)
treec5fb9e6ab0b5d6d16070d1881bcc923228eb265a /Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs
parent3d98e1361b2f1c3993aa7f1e9b1ac49fc5b6e512 (diff)
fix: Support FFmpeg 5.1.x for decoding (#3816)
For some reason FFmpeg 5.1.x reverted part of the changes made in 5.0.x on AVCodec. This fix decoding issues with it.
Diffstat (limited to 'Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs')
-rw-r--r--Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs b/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs
deleted file mode 100644
index 0913cbc4..00000000
--- a/Ryujinx.Graphics.Nvdec.FFmpeg/Native/AVCodecLegacy.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System;
-
-namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
-{
- struct AVCodecLegacy
- {
-#pragma warning disable CS0649
- public unsafe byte* Name;
- public unsafe byte* LongName;
- public int Type;
- public AVCodecID Id;
- public int Capabilities;
- public byte MaxLowRes;
- public unsafe AVRational* SupportedFramerates;
- public IntPtr PixFmts;
- public IntPtr SupportedSamplerates;
- public IntPtr SampleFmts;
- // Deprecated
- public unsafe ulong* ChannelLayouts;
- public unsafe IntPtr PrivClass;
- public IntPtr Profiles;
- public unsafe byte* WrapperName;
- public IntPtr ChLayouts;
-#pragma warning restore CS0649
- }
-}