diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-08-06 18:40:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-06 23:40:41 +0200 |
| commit | 157ad3f54f6f8b16f9bf4004d3dc954197eaf66a (patch) | |
| tree | 0e66caf5a1b9ca8d4f77a7a63af026ea450e6427 /Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs | |
| parent | ee22517d92c48eab9643b6fc8ce4dac2b7e95f57 (diff) | |
Silence several build warnings (#1428)
* Silence several build warnings
* Remove fixed buffers from NVDEC struct
* Remove unused field and usings
* Fix wrong name
* Silence more warning on H264 PictureInfo
Diffstat (limited to 'Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs')
| -rw-r--r-- | Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs b/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs index bc848454..b2858d2d 100644 --- a/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs +++ b/Ryujinx.Graphics.Nvdec/Types/Vp9/EntropyProbs.cs @@ -5,6 +5,7 @@ namespace Ryujinx.Graphics.Nvdec.Types.Vp9 { struct EntropyProbs { +#pragma warning disable CS0649 public Array10<Array10<Array8<byte>>> KfYModeProbE0ToE7; public Array10<Array10<byte>> KfYModeProbE8; public Array3<byte> Padding384; @@ -41,6 +42,7 @@ namespace Ryujinx.Graphics.Nvdec.Types.Vp9 public Array5<byte> CompRefProb; public Array17<byte> Padding58F; public Array4<Array2<Array2<Array6<Array6<Array4<byte>>>>>> CoefProbs; +#pragma warning restore CS0649 public void Convert(ref Vp9EntropyProbs fc) { |
