mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-14 22:50:34 +00:00
Initialize loop filter parameters
This commit is contained in:
parent
34a583e045
commit
a9dd203412
1 changed files with 5 additions and 0 deletions
|
@ -110,6 +110,11 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
|
|||
|
||||
cm.SetMvs(mvsIn);
|
||||
|
||||
if (cm.Lf.FilterLevel != 0 && cm.SkipLoopFilter == 0)
|
||||
{
|
||||
LoopFilter.LoopFilterFrameInit(ref cm, cm.Lf.FilterLevel);
|
||||
}
|
||||
|
||||
fixed (byte* dataPtr = bitstream)
|
||||
{
|
||||
try
|
||||
|
|
Loading…
Reference in a new issue