diff options
author | jbrjake <[email protected]> | 2008-07-11 21:59:15 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-07-11 21:59:15 +0000 |
commit | 4ac57457da4b980f1e49a1cf8905be0917648d9f (patch) | |
tree | bb822276bd2e9a29767e4e68cb0b57abf2e8a154 /macosx/Controller.mm | |
parent | 88fa043fa37a190b8fb9258698e03e166318016c (diff) |
Much improved decomb filter. Totally different algorithm, with a temporal element, a block window, and a simple weighting decision for which deinterlacer to use. See code comments.
The code isn't well optimized yet, and would probably benefit from -O3 (as opposed to the -Os optimization level currently used in macosx builds).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1566 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 42bd48d8e..0143763e0 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2703,7 +2703,7 @@ the user is using "Custom" settings by determining the sender*/ } else if ([fPictureController decomb] == 1) { - [fPicSettingDecomb setStringValue: @"4:10:15:9:10:35:9"]; + [fPicSettingDecomb setStringValue: @"1:2:6:9:80:16:16"]; } else if ([fPictureController decomb] == 2) { |