summaryrefslogtreecommitdiffstats
path: root/macosx/HBFilters.m
diff options
context:
space:
mode:
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];
}