diff options
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 3764e1892..aa0299b67 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -4802,6 +4802,12 @@ the user is using "Custom" settings by determining the sender*/ { [fVidQualityRFField setStringValue: [NSString stringWithFormat: @"%.2f", sliderRfInverse]]; } + /* Show a warning if x264 and rf 0 which is lossless */ + if ([[fVidEncoderPopUp selectedItem] tag] == HB_VCODEC_X264 && sliderRfInverse == 0.0) + { + [fVidQualityRFField setStringValue: [NSString stringWithFormat: @"%.2f (Warning: Lossless)", sliderRfInverse]]; + } + [self customSettingUsed: sender]; } |