summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-08-11 17:34:33 +0000
committerjbrjake <[email protected]>2007-08-11 17:34:33 +0000
commit6bd6cb369fcdefd64f0ccdc1c2d3bb07c2a7eacc (patch)
tree5598a05c880545245a49c4ce0ef3bce7aac37799
parentf5ce47231ef9076e251f2e34613289abcc60fefd (diff)
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://svn.handbrake.fr/HandBrake/trunk@797 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/Controller.mm12
1 files changed, 6 insertions, 6 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 481c4c178..964254c0c 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 );
}
}