diff options
author | ritsuka <[email protected]> | 2014-08-21 17:26:28 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-21 17:26:28 +0000 |
commit | f96f713a3d83538ef59be552c0987ebf1b21d0a0 (patch) | |
tree | 896f1bbe81972224a7e3b02e9cd87cd5182c2802 /macosx/HBVideoController.h | |
parent | 6998c5f6e5c600273d9722536d1aef41651ea366 (diff) |
MacGui: generalize video preset/tune/profile/level handling to make it works with the x265 encoder. Moved the lavc encoder options textfield to the video tab.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6334 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideoController.h')
-rw-r--r-- | macosx/HBVideoController.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/HBVideoController.h b/macosx/HBVideoController.h index b3d0637bc..6845ed703 100644 --- a/macosx/HBVideoController.h +++ b/macosx/HBVideoController.h @@ -36,14 +36,14 @@ extern NSString *HBVideoEncoderChangedNotification; @property (nonatomic, copy, readwrite) NSString *pictureFiltersField; // Property exposed for the auto name function -@property (nonatomic, readonly) int selectedCodec; -@property (nonatomic, readonly) int selectedQualityType; +@property (nonatomic, readonly) int codec; +@property (nonatomic, readonly) int qualityType; @property (nonatomic, readonly) NSString *selectedBitrate; @property (nonatomic, readonly) NSString *selectedQuality; // Property updates when the video size changes -@property (nonatomic, readwrite) NSUInteger fX264PresetsWidthForUnparse; -@property (nonatomic, readwrite) NSUInteger fX264PresetsHeightForUnparse; +@property (nonatomic, readwrite) NSUInteger fPresetsWidthForUnparse; +@property (nonatomic, readwrite) NSUInteger fPresetsHeightForUnparse; @property (nonatomic, retain, readwrite) HBController *fHBController; @property (nonatomic, retain, readwrite) HBAdvancedController *fAdvancedOptions; |