aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/VDec/FFmpeg.cs
blob: 183d077922462501986cb0236d7ab313a801657b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
using FFmpeg.AutoGen;
using System;
using System.Runtime.InteropServices;

namespace Ryujinx.Graphics.VDec
{
    unsafe static class FFmpegWrapper
    {
        private static AVCodec*        Codec;
        private static AVCodecContext* Context;
        private static AVFrame*        Frame;
        private static SwsContext*     ScalerCtx;

        private static int ScalerWidth;
        private static int ScalerHeight;

        public static bool IsInitialized { get; private set; }

        public static void H264Initialize()
        {
            EnsureCodecInitialized(AVCodecID.AV_CODEC_ID_H264);
        }

        public static void Vp9Initialize()
        {
            EnsureCodecInitialized(AVCodecID.AV_CODEC_ID_VP9);
        }

        private static void EnsureCodecInitialized(AVCodecID CodecId)
        {
            if (IsInitialized)
            {
                Uninitialize();
            }

            Codec   = ffmpeg.avcodec_find_decoder(CodecId);
            Context = ffmpeg.avcodec_alloc_context3(Codec);
            Frame   = ffmpeg.av_frame_alloc();

            ffmpeg.avcodec_open2(Context, Codec, null);

            IsInitialized = true;
        }

        public static int DecodeFrame(byte[] Data)
        {
            if (!IsInitialized)
            {
                throw new InvalidOperationException("Tried to use uninitialized codec!");
            }

            AVPacket Packet;

            ffmpeg.av_init_packet(&Packet);

            fixed (byte* Ptr = Data)
            {
                Packet.data = Ptr;
                Packet.size = Data.Length;

                ffmpeg.avcodec_send_packet(Context, &Packet);
            }

            return ffmpeg.avcodec_receive_frame(Context, Frame);
        }

        public static FFmpegFrame GetFrame()
        {
            if (!IsInitialized)
            {
                throw new InvalidOperationException("Tried to use uninitialized codec!");
            }

            AVFrame ManagedFrame = Marshal.PtrToStructure<AVFrame>((IntPtr)Frame);

            byte*[] Data = ManagedFrame.data.ToArray();

            return new FFmpegFrame()
            {
                Width  = ManagedFrame.width,
                Height = ManagedFrame.height,

                LumaPtr    = Data[0],
                ChromaBPtr = Data[1],
                ChromaRPtr = Data[2]
            };
        }

        public static FFmpegFrame GetFrameRgba()
        {
            if (!IsInitialized)
            {
                throw new InvalidOperationException("Tried to use uninitialized codec!");
            }

            AVFrame ManagedFrame = Marshal.PtrToStructure<AVFrame>((IntPtr)Frame);

            EnsureScalerSetup(ManagedFrame.width, ManagedFrame.height);

            byte*[] Data = ManagedFrame.data.ToArray();

            int[] LineSizes = ManagedFrame.linesize.ToArray();

            byte[] Dst = new byte[ManagedFrame.width * ManagedFrame.height * 4];

            fixed (byte* Ptr = Dst)
            {
                byte*[] DstData = new byte*[] { Ptr };

                int[] DstLineSizes = new int[] { ManagedFrame.width * 4 };

                ffmpeg.sws_scale(ScalerCtx, Data, LineSizes, 0, ManagedFrame.height, DstData, DstLineSizes);
            }

            return new FFmpegFrame()
            {
                Width  = ManagedFrame.width,
                Height = ManagedFrame.height,

                Data = Dst
            };
        }

        private static void EnsureScalerSetup(int Width, int Height)
        {
            if (Width == 0 || Height == 0)
            {
                return;
            }

            if (ScalerCtx == null || ScalerWidth != Width || ScalerHeight != Height)
            {
                FreeScaler();

                ScalerCtx = ffmpeg.sws_getContext(
                    Width, Height, AVPixelFormat.AV_PIX_FMT_YUV420P,
                    Width, Height, AVPixelFormat.AV_PIX_FMT_RGBA, 0, null, null, null);

                ScalerWidth  = Width;
                ScalerHeight = Height;
            }
        }

        public static void Uninitialize()
        {
            if (IsInitialized)
            {
                ffmpeg.av_frame_unref(Frame);
                ffmpeg.av_free(Frame);
                ffmpeg.avcodec_close(Context);

                FreeScaler();

                IsInitialized = false;
            }
        }

        private static void FreeScaler()
        {
            if (ScalerCtx != null)
            {
                ffmpeg.sws_freeContext(ScalerCtx);

                ScalerCtx = null;
            }
        }
    }
}