diff options
author | dynaflash <[email protected]> | 2007-11-10 02:00:46 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-11-10 02:00:46 +0000 |
commit | e1c1cc4c11c79b2341c8eecd9a2dabac5a58a785 (patch) | |
tree | 61620ba50aeb0509a2e46c705f46a8ea376dc29d /macosx/PictureController.h | |
parent | d95e8d52105a29a03750232c47949b37dc3075dc (diff) |
MacGui: VFR controls initial implementation
- Adds a vfr checkbox next to the detelecine filter in the Picture Settings Window
- Tuns on detelecine and disables its checkbox
- Sets Framerate in the main window to 29.967 and disables it
- Sets job->vfr = 1 if vfr is checked in -prepareJob
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1052 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r-- | macosx/PictureController.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h index 62e78af4a..ff1267b8e 100644 --- a/macosx/PictureController.h +++ b/macosx/PictureController.h @@ -41,6 +41,7 @@ IBOutlet NSStepper * fCropRightStepper; IBOutlet NSPopUpButton * fDeinterlacePopUp; IBOutlet NSButton * fDetelecineCheck; + IBOutlet NSButton * fVFRCheck; IBOutlet NSButton * fDeblockCheck; IBOutlet NSPopUpButton * fDenoisePopUp; IBOutlet NSButton * fPARCheck; @@ -60,7 +61,8 @@ BOOL keepAspectRatioPreviousState; struct { - int detelecine; + int detelecine; + int vfr; int deinterlace; int denoise; int deblock; @@ -84,6 +86,8 @@ - (int) detelecine; - (void) setDetelecine: (int) setting; +- (int) vfr; +- (void) setVFR: (int) setting; - (int) deinterlace; - (void) setDeinterlace: (int) setting; - (int) denoise; |