diff options
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.mm | 6 | ||||
-rw-r--r-- | macosx/PictureController.mm | 14 |
2 files changed, 2 insertions, 18 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 66ea953a1..8279c2873 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2816,11 +2816,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It { [fPicSettingAutoCrop setStringValue: @"Auto"]; } - /* check video framerate and turn off detelecine if necessary */ - if (fTitle->rate_base == 1126125 || [[fVidRatePopUp titleOfSelectedItem] isEqualToString: @"23.976 (NTSC Film)"]) - { - [fPictureController setDetelecine:0]; - } + diff --git a/macosx/PictureController.mm b/macosx/PictureController.mm index a1441acf7..865f1c202 100644 --- a/macosx/PictureController.mm +++ b/macosx/PictureController.mm @@ -138,19 +138,7 @@ static int GetAlignedSize( int size ) [fCropMatrix selectCellAtRow: 0 column:0]; } - /* set the detelecine state according to the state in main window */ - /* if framerate is 23.976 we do not allow detelecine, otherwise, enable and set according to fDetelecineMainWindow outlet */ - if (fTitle->rate_base == 1126125) - { - [fDetelecineCheck setEnabled: NO]; - [fDetelecineCheck setState: NSOffState]; - - } - else - { - [fDetelecineCheck setEnabled: YES]; - [fDetelecineCheck setState: fPictureFilterSettings.detelecine]; - } + /* we use a popup to show the denoise settings */ [fDenoisePopUp removeAllItems]; |