mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-16 14:20:54 -05:00
Move solution and projects to src
This commit is contained in:
20
src/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs
Normal file
20
src/Ryujinx.Graphics.Nvdec.Vp9/TileWorkerData.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Ryujinx.Common.Memory;
|
||||
using Ryujinx.Graphics.Nvdec.Vp9.Dsp;
|
||||
using Ryujinx.Graphics.Nvdec.Vp9.Types;
|
||||
using Ryujinx.Graphics.Video;
|
||||
|
||||
namespace Ryujinx.Graphics.Nvdec.Vp9
|
||||
{
|
||||
internal struct TileWorkerData
|
||||
{
|
||||
public ArrayPtr<byte> DataEnd;
|
||||
public int BufStart;
|
||||
public int BufEnd;
|
||||
public Reader BitReader;
|
||||
public Vp9BackwardUpdates Counts;
|
||||
public MacroBlockD Xd;
|
||||
/* dqcoeff are shared by all the planes. So planes must be decoded serially */
|
||||
public Array32<Array32<int>> Dqcoeff;
|
||||
public InternalErrorInfo ErrorInfo;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user