summaryrefslogtreecommitdiffstats
path: root/macosx/HBPresets.h
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-03-04 14:16:12 +0000
committerRodeo <[email protected]>2013-03-04 14:16:12 +0000
commitf33223991ef5a16ae3fa3a4d99295f6cff3e80e1 (patch)
treee52f214a801925db55a6f11efb33601d085407c8 /macosx/HBPresets.h
parentcf5277acc04d98d698ec03c4a91e48c5f24b00c3 (diff)
2013 preset changes:
- updated descriptions (all presets) - add maximum height (device presets) - harmonize PFR framerates (29.97 to 30 fps) - move qpmin hack from encx264 to the AppleTV preset - Android preset: switch to level 3.0 (720x576 @ Level 2.2 meant 12.5 fps max.) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5299 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPresets.h')
-rw-r--r--macosx/HBPresets.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/macosx/HBPresets.h b/macosx/HBPresets.h
index 598971efa..139b200ed 100644
--- a/macosx/HBPresets.h
+++ b/macosx/HBPresets.h
@@ -6,26 +6,28 @@
#import <Cocoa/Cocoa.h>
-
@interface HBPresets : NSObject {}
-/* Called by -addFactoryPresets in Controller.mm */
-- (NSMutableArray *) generateBuiltinPresets: (NSMutableArray *) UserPresets;
+/* Called by -addFactoryPresets in Controller.m */
+- (NSMutableArray *)generateBuiltinPresets:(NSMutableArray *)UserPresets;
-/* Built-In Preset Dictionaries (one for each built in preset) */
+/* Dictionaries for preset folders ("Devices, "Regular") */
- (NSDictionary *)createDevicesPresetFolder;
- (NSDictionary *)createRegularPresetFolder;
+/* Dictionaries for individual presets ("Devices" folder) */
+- (NSDictionary *)createUniversalPreset;
+- (NSDictionary *)createiPodPreset;
+- (NSDictionary *)createiPhoneiPodtouchPreset;
- (NSDictionary *)createiPadPreset;
-- (NSDictionary *)createAppleTV2Preset;
- (NSDictionary *)createAppleTVPreset;
+- (NSDictionary *)createAppleTV2Preset;
- (NSDictionary *)createAppleTV3Preset;
-- (NSDictionary *)createUniversalPreset;
-- (NSDictionary *)createiPhoneiPodtouchPreset;
-- (NSDictionary *)createiPodPreset;
-- (NSDictionary *)createNormalPreset;
-- (NSDictionary *)createHighProfilePreset;
- (NSDictionary *)createAndroidPreset;
- (NSDictionary *)createAndroidTabletPreset;
+/* Dictionaries for individual presets ("Regular" folder) */
+- (NSDictionary *)createNormalPreset;
+- (NSDictionary *)createHighProfilePreset;
+
@end