summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.mm
diff options
context:
space:
mode:
authordynaflash <[email protected]>2009-01-15 18:55:58 +0000
committerdynaflash <[email protected]>2009-01-15 18:55:58 +0000
commita2d1eeae7a4fda1c0af7a4cc390dace060428f20 (patch)
tree592ade448b8f1ef4f873f867b19eb65a9f566a6d /macosx/Controller.mm
parent61839577d0b409b0ff5b3b3b0e5ff914ce7e474f (diff)
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
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r--macosx/Controller.mm11
1 files 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
{