summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.h
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-07-31 14:52:37 +0000
committerdynaflash <[email protected]>2007-07-31 14:52:37 +0000
commit4c4045f21dceb007b5bc66f997156a4ffbfb975e (patch)
tree50b50eff43cf6e3d21f5c778c407ce9ca3e46752 /macosx/Controller.h
parentcae08384433649c989276968854bee9045b619ee (diff)
MacGui: Enhanced Picture Settings in Presets (esp. cropping)
When creating a preset, three choices exist for picture settings: - None: Preset has no effect on any picture settings - Current: Preset will apply whatever picture settings were in effect at the time the preset was created (including deinterlace, par and *cropping) - Source Maximum (post scan): Preset will apply the maximum picture settings for each source and auto crop (basically the same picture settings that were in effect right after the source scan and nothing was modified with auto cropping enabled) Anamorphic and Deinterlace will be set according to general preferences - * Note on cropping with Current set for preset: If cropping was set to "Auto" at the time the preset was created, the preset will then use the sources auto crop values. If, however the cropping was set to "Custom" at the time the preset was created the preset will apply the custom cropping values to each source from when the preset was created. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@765 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r--macosx/Controller.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h
index 24a2011c4..fc5260f02 100644
--- a/macosx/Controller.h
+++ b/macosx/Controller.h
@@ -107,7 +107,10 @@
/* Picture variables */
int PicOrigOutputWidth;
int PicOrigOutputHeight;
-
+ int AutoCropTop;
+ int AutoCropBottom;
+ int AutoCropLeft;
+ int AutoCropRight;
/* Subtitles box */
IBOutlet NSTextField * fSubField;
IBOutlet NSPopUpButton * fSubPopUp;