diff options
| author | TSR Berry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-08 01:22:00 +0200 |
|---|---|---|
| committer | Mary <thog@protonmail.com> | 2023-04-27 23:51:14 +0200 |
| commit | cee712105850ac3385cd0091a923438167433f9f (patch) | |
| tree | 4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs | |
| parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) | |
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs')
| -rw-r--r-- | src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs b/src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs new file mode 100644 index 00000000..a3aa4de7 --- /dev/null +++ b/src/Ryujinx.Graphics.Video/Vp9BackwardUpdates.cs @@ -0,0 +1,32 @@ +using Ryujinx.Common.Memory; + +namespace Ryujinx.Graphics.Video +{ + public struct Vp9BackwardUpdates + { + public Array4<Array10<uint>> YMode; + public Array10<Array10<uint>> UvMode; + public Array16<Array4<uint>> Partition; + public Array4<Array2<Array2<Array6<Array6<Array4<uint>>>>>> Coef; + public Array4<Array2<Array2<Array6<Array6<uint>>>>> EobBranch; + public Array4<Array3<uint>> SwitchableInterp; + public Array7<Array4<uint>> InterMode; + public Array4<Array2<uint>> IntraInter; + public Array5<Array2<uint>> CompInter; + public Array5<Array2<Array2<uint>>> SingleRef; + public Array5<Array2<uint>> CompRef; + public Array2<Array4<uint>> Tx32x32; + public Array2<Array3<uint>> Tx16x16; + public Array2<Array2<uint>> Tx8x8; + public Array3<Array2<uint>> Skip; + public Array4<uint> Joints; + public Array2<Array2<uint>> Sign; + public Array2<Array11<uint>> Classes; + public Array2<Array2<uint>> Class0; + public Array2<Array10<Array2<uint>>> Bits; + public Array2<Array2<Array4<uint>>> Class0Fp; + public Array2<Array4<uint>> Fp; + public Array2<Array2<uint>> Class0Hp; + public Array2<Array2<uint>> Hp; + } +} |
