From f5fb3073f913110139fb28491af0807c7dab60af Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Sat, 10 Oct 2015 12:16:04 +0200 Subject: MacGui: remove the deblock value 1 -> 5 special case --- macosx/HBFilters.m | 11 +---------- 1 file changed, 1 insertion(+), 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]; } -- cgit v1.2.3