summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.h
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-05-15 19:11:17 +0000
committerjbrjake <[email protected]>2007-05-15 19:11:17 +0000
commit2cf831aa6215005f9e151398672735555acd0e8b (patch)
treeb5c49cd3dd493f3dbc1e9453ebd607518f8e81ad /macosx/Controller.h
parent51eb216f691cf5dd1592efa578462ff5cded5068 (diff)
MacGui: x264 options widget for motion estimation. This is the first widget to use strings for values instead of numbers, so it's a little wonky. Right now, if you don't have a motion est. value specified, but you do have another option with "me" in the name (like "subME" or "b-fraMEs"), the widget will be unresponsive.
Hopefully I'm not accidentally breaking anything with this commit. Had to revert, update, and rewire some stuff after I tried to commit and realized I'd missed a revision. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@582 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r--macosx/Controller.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h
index 44a1d36f1..c2459ec71 100644
--- a/macosx/Controller.h
+++ b/macosx/Controller.h
@@ -152,9 +152,11 @@
IBOutlet NSPopUpButton * fX264optSubmePopUp;
IBOutlet NSTextField * fX264optTrellisLabel;
IBOutlet NSPopUpButton * fX264optTrellisPopUp;
- IBOutlet NSTextField * fX264optMixedRefsLabel;
+ IBOutlet NSTextField * fX264optMixedRefsLabel;
IBOutlet NSPopUpButton * fX264optMixedRefsPopUp;
-
+ IBOutlet NSTextField * fX264optMotionEstLabel;
+ IBOutlet NSPopUpButton * fX264optMotionEstPopUp;
+
/* User Preset variables here fPresetNewPicSettingsApply*/
IBOutlet NSDrawer * fPresetDrawer;