aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/VDec/FFmpegFrame.cs
blob: 535a70c94eb77eb879775cbff25092962b0d1677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.VDec
{
    unsafe struct FFmpegFrame
    {
        public int Width;
        public int Height;

        public byte* LumaPtr;
        public byte* ChromaBPtr;
        public byte* ChromaRPtr;

        public byte[] Data;
    }
}