diff options
Diffstat (limited to 'macosx/HBVideo.m')
-rw-r--r-- | macosx/HBVideo.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBVideo.m b/macosx/HBVideo.m index 604e4aecc..70b7c09a1 100644 --- a/macosx/HBVideo.m +++ b/macosx/HBVideo.m @@ -576,7 +576,7 @@ NSString * const HBVideoChangedNotification = @"HBVideoChangedNotification"; if (hb_video_encoder_get_presets(self.encoder) != NULL) { - if (self.encoder == HB_VCODEC_X264 && [preset[@"x264UseAdvancedOptions"] boolValue]) + if ((self.encoder & HB_VCODEC_X264_MASK) && [preset[@"x264UseAdvancedOptions"] boolValue]) { // preset does not use the x264 preset system, reset the widgets. self.preset = @"medium"; |