Skip to content

Commit

Permalink
MVLightPreset: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Feb 26, 2024
1 parent 15c53e9 commit 3d63fdc
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions lvsfunc/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@


MVLightPreset = MVToolsPreset(
block_size=16, overlap=8, range_conversion=3.5,
sad_mode=(SADMode.ADAPTIVE_SPATIAL_MIXED, SADMode.ADAPTIVE_SATD_MIXED),
search=SearchMode.DIAMOND, motion=MotionMode.HIGH_SAD,
block_size=16, overlap=8,
range_conversion=4.5,
sad_mode=SADMode.SPATIAL.same_recalc,
search=SearchMode.DIAMOND,
motion=MotionMode.HIGH_SAD,
prefilter=Prefilter.DFTTEST(
slocation=[(0.0, 1.0), (0.4, 3.2), (0.45, 40.0), (1.0, 48.0)],
ssystem=1, planes=0
)
sloc=[(0.0, 1.0), (0.4, 2.4), (0.45, 32.0), (1.0, 64.0)],
ssystem=1, planes=None
),
planes=None
)
"""Light's MVTools preset."""

0 comments on commit 3d63fdc

Please sign in to comment.