Skip to content

Commit

Permalink
Increased default MaskTrh
Browse files Browse the repository at this point in the history
  • Loading branch information
mysteryx93 committed May 16, 2017
1 parent f592123 commit 9a4c709
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions FrameRateConverter.avsi
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
## @ Prefilter - Specified a custom prefiltered clip. (Default = RemoveGrain(22))
##
## @ MaskTrh - The treshold where a block is considered bad, between 0 and 255. Smaller = stronger.
## 0 to disable artifact masking. (Default = 120)
## 0 to disable artifact masking. (Default = 140)
##
## @ MaskOcc - Occlusion mask treshold, between 0 and 255. 0 to disable occlusion masking. (Default = 105)
##
Expand Down Expand Up @@ -81,7 +81,7 @@ function FrameRateConverter(clip C, int "NewNum", int "NewDen", string "Preset",
NewDen = FrameDouble ? C.FrameRateDenominator : Default(NewDen, 1)
BlkSize = Default(BlkSize, C.Width>2000||C.Height>1200 ? 32 : C.Width>720||C.Height>480 ? 16 : 8)
BlkSizeV = Default(BlkSizeV, BlkSize)
MaskTrh = Default(MaskTrh, 120)
MaskTrh = Default(MaskTrh, 140)
SkipTrh = Default(SkipTrh, 60)
MaskOcc = MaskTrh > 0 ? Default(MaskOcc, 105) : 0
BlendOver = Default(BlendOver, 50)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Requires: FrameRateConverter.dll, MaskTools2, MvTools2, GRunT, rgtools (default
@ Prefilter - Specified a custom prefiltered clip. (Default = RemoveGrain(22))

@ MaskTrh - The treshold where a block is considered bad, between 0 and 255. Smaller = stronger.
0 to disable artifact masking. (Default = 120)
0 to disable artifact masking. (Default = 140)

@ MaskOcc - Occlusion mask treshold, between 0 and 255. 0 to disable occlusion masking. (Default = 105)

Expand Down
4 changes: 2 additions & 2 deletions Src/FrameRateConverter.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<TargetName>ConditionalMT</TargetName>
<TargetName>FrameRateConverter</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<TargetName>FrameRateConverter</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<TargetName>ConditionalMT</TargetName>
<TargetName>FrameRateConverter</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down

0 comments on commit 9a4c709

Please sign in to comment.