Skip to content

Commit

Permalink
vinverse: Replace deprecated scale_8bit
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Oct 5, 2024
1 parent 336fdb5 commit 57293b0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions vsdeinterlace/funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
from typing import Any, Sequence, cast

from stgpytools import CustomIntEnum
from vsdenoise import MVTools
from vsexprtools import ExprVars, complexpr_available, norm_expr
from vsrgtools import BlurMatrix
from vsdenoise import MVTools
from vstools import (
ConvMode, CustomEnum, FormatsMismatchError, InvalidFramerateError,
FunctionUtil, FuncExceptT, GenericVSFunction, KwargsT, PlanesT,
core, vs, scale_8bit, check_variable
ColorRange, ConvMode, CustomEnum, FormatsMismatchError, FuncExceptT, FunctionUtil, GenericVSFunction,
InvalidFramerateError, KwargsT, PlanesT, check_variable, core, scale_value, vs
)

__all__ = [
Expand Down Expand Up @@ -259,8 +258,8 @@ def vinverse(
[func.work_clip, blurred, blurred2], # type:ignore
'x y - D1! D1@ abs D1A! D1A@ {thr} < x y z - {sstr} * D2! D1A@ D2@ abs < D1@ D2@ ? D3! '
'D1@ D2@ xor D3@ {scl} * D3@ ? y + x {amnt} - x {amnt} + clip ?',
planes, sstr=contra_str, amnt=scale_8bit(func.work_clip, amnt),
scl=scl, thr=scale_8bit(func.work_clip, thr),
planes, sstr=contra_str, amnt=scale_value(amnt, 8, func.work_clip, ColorRange.FULL),
scl=scl, thr=scale_value(thr, 8, func.work_clip, ColorRange.FULL),
)

return func.return_clip(combed)
Expand Down

0 comments on commit 57293b0

Please sign in to comment.