aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs')
-rw-r--r--src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
new file mode 100644
index 00000000..1ca9d1d5
--- /dev/null
+++ b/src/Ryujinx.Graphics.Nvdec.FFmpeg/Surface.cs
@@ -0,0 +1,41 @@
+using Ryujinx.Graphics.Nvdec.FFmpeg.Native;
+using Ryujinx.Graphics.Video;
+using System;
+
+namespace Ryujinx.Graphics.Nvdec.FFmpeg
+{
+ unsafe class Surface : ISurface
+ {
+ public AVFrame* Frame { get; }
+
+ public int RequestedWidth { get; }
+ public int RequestedHeight { get; }
+
+ 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);
+
+ public FrameField Field => Frame->InterlacedFrame != 0 ? FrameField.Interlaced : FrameField.Progressive;
+
+ public int Width => Frame->Width;
+ public int Height => Frame->Height;
+ public int Stride => Frame->LineSize[0];
+ public int UvWidth => (Width + 1) >> 1;
+ public int UvHeight => (Height + 1) >> 1;
+ public int UvStride => Frame->LineSize[1];
+
+ public Surface(int width, int height)
+ {
+ RequestedWidth = width;
+ RequestedHeight = height;
+
+ Frame = FFmpegApi.av_frame_alloc();
+ }
+
+ public void Dispose()
+ {
+ FFmpegApi.av_frame_unref(Frame);
+ FFmpegApi.av_free(Frame);
+ }
+ }
+}