diff options
author | ritsuka <[email protected]> | 2008-01-26 19:19:04 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-01-26 19:19:04 +0000 |
commit | 4010478bebaa2a8a704fd2757bd67f39e8749421 (patch) | |
tree | 355b935fae06eaead64b8478faad80a632e078c9 /macosx/InstantHandBrake/DeviceController.m | |
parent | e761f434a16b64824a7f6355c79e05bb56f0a06e (diff) |
IHB: New experimental device based preset system. Still incomplete.
Added a script that automatically adds the svn revision number to Express.plist
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1236 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/InstantHandBrake/DeviceController.m')
-rw-r--r-- | macosx/InstantHandBrake/DeviceController.m | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/macosx/InstantHandBrake/DeviceController.m b/macosx/InstantHandBrake/DeviceController.m new file mode 100644 index 000000000..19a445b27 --- /dev/null +++ b/macosx/InstantHandBrake/DeviceController.m @@ -0,0 +1,71 @@ +// +// DeviceController.m +// InstantHandBrake +// +// Created by Damiano Galassi on 23/01/08. +// This file is part of the HandBrake source code. +// Homepage: <http://handbrake.m0k.org/>. +// It may be used under the terms of the GNU General Public License. +// +// + +#import "DeviceController.h" +#import "hb.h" + +@implementation DeviceController + +- (id)init +{ + if (self = [super init]) + { + deviceArray = [[NSMutableArray alloc] init]; + [self populateList]; + } + return self; +} + +- (id) populateList +{ + [deviceArray addObject:[[Device alloc] initWithDeviceName: @"iPod"]]; + [deviceArray addObject:[[Device alloc] initWithDeviceName: @"PSP"]]; + [deviceArray addObject:[[Device alloc] initWithDeviceName: @"Zune"]]; + [deviceArray addObject:[[Device alloc] initWithDeviceName: @"AppleTV"]]; + + Preset * newPreset = [[Preset alloc] initWithMuxer: HB_MUX_IPOD + videoCodec: HB_VCODEC_X264 + videoBitRate: 1500 + videoCodecOptions: @"bframes=0:cabac=0:ref=1:vbv-maxrate=1500:vbv-bufsize=2000:analyse=all:me=umh:subq=6:no-fast-pskip=1:level=30" + audioCodec: HB_ACODEC_FAAC + audioBitrate: 128 + audioSampleRate: 48000 + maxWidth: 640 + maxHeight: 480 + anamorphic: 0]; + + [[deviceArray objectAtIndex:0] addPreset:newPreset]; + + newPreset = [[Preset alloc] initWithMuxer: HB_MUX_MP4 + videoCodec: HB_VCODEC_X264 + videoBitRate: 600 + videoCodecOptions: @"" + audioCodec: HB_ACODEC_FAAC + audioBitrate: 128 + audioSampleRate: 48000 + maxWidth: 480 + maxHeight: 272 + anamorphic: 0]; + + [[deviceArray objectAtIndex:1] addPreset:newPreset]; + +} + +- (NSArray *) deviceList +{ + NSArray *deviceList = [deviceArray copy]; + + [deviceList autorelease]; + + return deviceList; +} + +@end |