diff options
author | dynaflash <[email protected]> | 2010-04-27 16:51:55 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-04-27 16:51:55 +0000 |
commit | 2324f99d7e145625623e31be70dea6d705bed80a (patch) | |
tree | 37ecfab494b0bd982ca5ca315ce2652d7fb37848 /macosx/Controller.m | |
parent | ffe243ffc380c02e92e6cc5e189e95bf9529d8e6 (diff) |
MacGui: reset hb_filter_decomb after use, so switching between default decomb and a custom decomb string does cause a garbage string. Thanks j45 for the patch!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3269 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 6a8814965..9d6cd0db9 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -3422,6 +3422,7 @@ bool one_burned = FALSE; */ /* Detelecine */ + hb_filter_detelecine.settings = NULL; if ([fPictureController detelecine] == 1) { /* use a custom detelecine string */ @@ -3440,6 +3441,7 @@ bool one_burned = FALSE; { /* Decomb */ /* we add the custom string if present */ + hb_filter_decomb.settings = NULL; if ([fPictureController decomb] == 1) { /* use a custom decomb string */ @@ -3975,6 +3977,7 @@ bool one_burned = FALSE; * The order of the filters is critical */ /* Detelecine */ + hb_filter_detelecine.settings = NULL; if ([[queueToApply objectForKey:@"PictureDetelecine"] intValue] == 1) { /* use a custom detelecine string */ @@ -3991,6 +3994,7 @@ bool one_burned = FALSE; { /* Decomb */ /* we add the custom string if present */ + hb_filter_decomb.settings = NULL; if ([[queueToApply objectForKey:@"PictureDecomb"] intValue] == 1) { /* use a custom decomb string */ |