diff options
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r-- | macosx/PictureController.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h index b15eedb6d..a418ba40c 100644 --- a/macosx/PictureController.h +++ b/macosx/PictureController.h @@ -44,7 +44,7 @@ IBOutlet NSButton * fVFRCheck; IBOutlet NSButton * fDeblockCheck; IBOutlet NSPopUpButton * fDenoisePopUp; - IBOutlet NSButton * fPARCheck; + IBOutlet NSPopUpButton * fAnamorphicPopUp; IBOutlet NSButton * fEffectsCheck; IBOutlet NSButton * fPrevButton; IBOutlet NSButton * fNextButton; @@ -53,7 +53,9 @@ int MaxOutputWidth; int MaxOutputHeight; BOOL autoCrop; - + BOOL allowLooseAnamorphic; + int output_width, output_height, output_par_width, output_par_height; + int display_width; /* used to track the previous state of the keep aspect ratio checkbox when turning anamorphic on, so it can be returned to the previous state when anamorphic is turned @@ -85,6 +87,9 @@ - (BOOL) autoCrop; - (void) setAutoCrop: (BOOL) setting; +- (BOOL) allowLooseAnamorphic; +- (void) setAllowLooseAnamorphic: (BOOL) setting; + - (int) detelecine; - (void) setDetelecine: (int) setting; - (int) vfr; |