mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-17 04:31:30 +00:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using Ryujinx.Common.Memory;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
|
|
{
|
|
struct AVFrame
|
|
{
|
|
|
|
public Array8<nint> Data;
|
|
public Array8<int> LineSize;
|
|
public nint ExtendedData;
|
|
public int Width;
|
|
public int Height;
|
|
public int NumSamples;
|
|
public int Format;
|
|
public int KeyFrame;
|
|
public int PictureType;
|
|
public AVRational SampleAspectRatio;
|
|
public long Pts;
|
|
public long PktDts;
|
|
public AVRational TimeBase;
|
|
public int CodedPictureNumber;
|
|
public int DisplayPictureNumber;
|
|
public int Quality;
|
|
public nint Opaque;
|
|
public int RepeatPicture;
|
|
public int InterlacedFrame;
|
|
public int TopFieldFirst;
|
|
public int PaletteHasChanged;
|
|
public long ReorderedOpaque;
|
|
public int SampleRate;
|
|
public ulong ChannelLayout;
|
|
|
|
// NOTE: There is more after, but the layout kind of changed a bit and we don't need more than this. This is safe as we only manipulate this behind a reference.
|
|
}
|
|
}
|