2022-07-14 15:13:23 +02:00
|
|
|
|
using Ryujinx.Graphics.Nvdec.FFmpeg.Native;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
using Ryujinx.Graphics.Video;
|
|
|
|
|
using System;
|
|
|
|
|
|
2021-10-12 22:55:57 +02:00
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.FFmpeg
|
2020-07-12 05:07:01 +02:00
|
|
|
|
{
|
|
|
|
|
unsafe class Surface : ISurface
|
|
|
|
|
{
|
|
|
|
|
public AVFrame* Frame { get; }
|
|
|
|
|
|
2020-10-11 11:09:38 +02:00
|
|
|
|
public int RequestedWidth { get; }
|
|
|
|
|
public int RequestedHeight { get; }
|
|
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
|
public Plane YPlane => new Plane((IntPtr)Frame->Data[0], Stride * Height);
|
|
|
|
|
public Plane UPlane => new Plane((IntPtr)Frame->Data[1], UvStride * UvHeight);
|
|
|
|
|
public Plane VPlane => new Plane((IntPtr)Frame->Data[2], UvStride * UvHeight);
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
|
public FrameField Field => Frame->InterlacedFrame != 0 ? FrameField.Interlaced : FrameField.Progressive;
|
2022-03-23 21:09:32 +01:00
|
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
|
public int Width => Frame->Width;
|
|
|
|
|
public int Height => Frame->Height;
|
|
|
|
|
public int Stride => Frame->LineSize[0];
|
2022-03-23 21:09:32 +01:00
|
|
|
|
public int UvWidth => (Width + 1) >> 1;
|
|
|
|
|
public int UvHeight => (Height + 1) >> 1;
|
2022-07-14 15:13:23 +02:00
|
|
|
|
public int UvStride => Frame->LineSize[1];
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2020-10-11 11:09:38 +02:00
|
|
|
|
public Surface(int width, int height)
|
2020-07-12 05:07:01 +02:00
|
|
|
|
{
|
2020-10-11 11:09:38 +02:00
|
|
|
|
RequestedWidth = width;
|
|
|
|
|
RequestedHeight = height;
|
|
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
|
Frame = FFmpegApi.av_frame_alloc();
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2022-07-14 15:13:23 +02:00
|
|
|
|
FFmpegApi.av_frame_unref(Frame);
|
|
|
|
|
FFmpegApi.av_free(Frame);
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|