mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
13 lines
335 B
C#
13 lines
335 B
C#
|
namespace Ryujinx.Graphics.Nvdec.Vp9.Dsp
|
|||
|
{
|
|||
|
internal static class Filter
|
|||
|
{
|
|||
|
public const int FilterBits = 7;
|
|||
|
|
|||
|
public const int SubpelBits = 4;
|
|||
|
public const int SubpelMask = (1 << SubpelBits) - 1;
|
|||
|
public const int SubpelShifts = 1 << SubpelBits;
|
|||
|
public const int SubpelTaps = 8;
|
|||
|
}
|
|||
|
}
|