http://gitunderground.i2p/archive/Ryujinx/src/branch/master/src/Ryujinx.Graphics.Nvdec.Vp9/QuantCommon.cs
. * editorconfig: Add default charset
* Change file encoding from UTF-8-BOM to UTF-8 2023-12-04 14:17:13 +01:00 205 lines 13 KiB C# Raw Permalink Blame History using Ryujinx.Graphics.Nvdec.Vp9.Types ; using System ; using System.Diagnostics ; namespace Ryujinx.Graphics.Nvdec.Vp9 { internal static class QuantCommon { public const int MinQ = 0 ; public const int MaxQ = 255 ; private static readonly short [ ] _dcQlookup = { 4 , 8 , 8 , 9 , 10 , 11 , 12 , 12 , 13 , 14 , 15 , 16 , 17 , 18 , 19 , 19 , 20 , 21 ,...