From a2d1eeae7a4fda1c0af7a4cc390dace060428f20 Mon Sep 17 00:00:00 2001 From: dynaflash Date: Thu, 15 Jan 2009 18:55:58 +0000 Subject: [PATCH] MacGui: Remove the decomb string from the main window so decomb uses the libhb default - Now instead of reading out the parameters for Decomb the main window just shows On/Off git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2088 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- macosx/Controller.mm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 7d07da08f..5c78de06d 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2831,9 +2831,7 @@ fWorkingCount = 0; if ([fPictureController decomb] > 0) { /* Run old deinterlacer fd by default */ - //fPicSettingDecomb - hb_filter_decomb.settings = (char *) [[fPicSettingDecomb stringValue] UTF8String]; - //hb_filter_decomb.settings = "4:10:15:9:10:35:9"; // <-- jbrjakes recommended parameters as of 5/23/08 + //hb_filter_decomb.settings = (char *) [[fPicSettingDecomb stringValue] UTF8String]; hb_list_add( job->filters, &hb_filter_decomb ); } @@ -3170,7 +3168,7 @@ fWorkingCount = 0; if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 1) { /* Run old deinterlacer fd by default */ - hb_filter_decomb.settings = (char *) [[queueToApply objectForKey:@"JobPictureDecomb"] UTF8String]; + //hb_filter_decomb.settings = (char *) [[queueToApply objectForKey:@"JobPictureDecomb"] UTF8String]; hb_list_add( job->filters, &hb_filter_decomb ); } @@ -4183,7 +4181,7 @@ the user is using "Custom" settings by determining the sender*/ /* Detelecine */ if ([fPictureController detelecine]) { - [fPicSettingDetelecine setStringValue: @"Yes"]; + [fPicSettingDetelecine setStringValue: @"On"]; } else { @@ -4193,7 +4191,8 @@ the user is using "Custom" settings by determining the sender*/ /* Decomb */ if ([fPictureController decomb]) { - [fPicSettingDecomb setStringValue: @"1:2:6:9:80:16:16"]; + //[fPicSettingDecomb setStringValue: @"1:2:6:9:80:16:16"]; + [fPicSettingDecomb setStringValue: @"On"]; } else { -- 2.40.0