diff options
Diffstat (limited to 'macosx/InstantHandBrake/Preset.h')
-rw-r--r-- | macosx/InstantHandBrake/Preset.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/macosx/InstantHandBrake/Preset.h b/macosx/InstantHandBrake/Preset.h index 3caa5015d..2d53f0ae4 100644 --- a/macosx/InstantHandBrake/Preset.h +++ b/macosx/InstantHandBrake/Preset.h @@ -4,7 +4,7 @@ // // Created by Damiano Galassi on 15/01/08. // This file is part of the HandBrake source code. -// Homepage: <http://handbrake.m0k.org/>. +// Homepage: <http://handbrake.fr/>. // It may be used under the terms of the GNU General Public License. // // @@ -12,11 +12,13 @@ #import <Cocoa/Cocoa.h> -@interface Preset : NSObject { +@interface Preset : NSObject <NSCoding> { + NSString *presetName; + int fMuxer; int fVideoCodec; int fVideoBitRate; - NSString * fVideoCodecOptions; + NSString *fVideoCodecOptions; int fAudioCodec; int fAudioBitRate; |