From 5357da68cf1fc5b9c2b84e538cad2a81879e7b46 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Sat, 11 Aug 2007 17:34:33 +0000 Subject: [PATCH] MacGui: tweaks the deinterlacing parameters. -Slow becomes yadif 0 -Slower becomes yadif 2, mcdeint 1 -Slowest becomes yadif 1, mcdeint 2 Thanks for the recommendations, huevos_rancheros. git-svn-id: svn://localhost/HandBrake/trunk@797 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/Controller.mm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 481c4c17..964254c0 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1419,20 +1419,20 @@ list = hb_get_titles( fHandle ); } if ([fPicSettingDeinterlace intValue] == 2) { - /* Yadif mode 1 */ - hb_filter_deinterlace.settings = "1"; + /* Yadif mode 0 (1-pass with spatial deinterlacing.) */ + hb_filter_deinterlace.settings = "0"; hb_list_add( job->filters, &hb_filter_deinterlace ); } if ([fPicSettingDeinterlace intValue] == 3) { - /* Yadif and Mcdeint */ - hb_filter_deinterlace.settings = "1:-1:1"; + /* Yadif (1-pass w/o spatial deinterlacing) and Mcdeint */ + hb_filter_deinterlace.settings = "2:-1:1"; hb_list_add( job->filters, &hb_filter_deinterlace ); } if ([fPicSettingDeinterlace intValue] == 4) { - /* Yadif and Mcdeint Slow Modes*/ - hb_filter_deinterlace.settings = "3:-1:2"; + /* Yadif (2-pass w/ spatial deinterlacing) and Mcdeint Slow Mode*/ + hb_filter_deinterlace.settings = "1:-1:2"; hb_list_add( job->filters, &hb_filter_deinterlace ); } } -- 2.11.0