summaryrefslogtreecommitdiffstats
path: root/macosx/HBFilters.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-10-10 12:16:04 +0200
committerDamiano Galassi <[email protected]>2015-10-10 21:50:26 +0200
commitf5fb3073f913110139fb28491af0807c7dab60af (patch)
treec9c07c21c275a971dd15cdb58ac0ceb396ba152b /macosx/HBFilters.m
parentb41f2cea72bfe6925fde8aa09ef6755378d1073d (diff)
MacGui: remove the deblock value 1 -> 5 special case
Diffstat (limited to 'macosx/HBFilters.m')
-rw-r--r--macosx/HBFilters.m11
1 files changed, 1 insertions, 10 deletions
diff --git a/macosx/HBFilters.m b/macosx/HBFilters.m
index 2ce4e6cd9..ec2e89895 100644
--- a/macosx/HBFilters.m
+++ b/macosx/HBFilters.m
@@ -365,16 +365,7 @@ NSString * const HBFiltersChangedNotification = @"HBFiltersChangedNotification";
self.denoiseCustomString = preset[@"PictureDenoiseCustom"];
// Deblock
- if ([preset[@"PictureDeblock"] intValue] == 1)
- {
- // if its a one, then its the old on/off deblock, set on to 5
- self.deblock = 5;
- }
- else
- {
- // use the settings intValue
- self.deblock = [preset[@"PictureDeblock"] intValue];
- }
+ self.deblock = [preset[@"PictureDeblock"] intValue];
self.grayscale = [preset[@"VideoGrayScale"] boolValue];
}