mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Initialize loop filter parameters
This commit is contained in:
parent
c00b5835d5
commit
e78cf71e2b
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