diff options
author | Damiano Galassi <[email protected]> | 2016-10-29 13:24:01 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-10-29 14:08:19 +0200 |
commit | 185a922d275ef95db2fa73ee31e07bcafbdecaae (patch) | |
tree | 8ae73547d8acaf987091d5ab29bf3a3db279bf4a /macosx/HBVideo.h | |
parent | 2e48a329ffa5123439cf82b5163176713eb64432 (diff) |
MacGui: use hb_preset_job_init instead of custom logic for audio, subtitles and picture job settings.
Diffstat (limited to 'macosx/HBVideo.h')
-rw-r--r-- | macosx/HBVideo.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/HBVideo.h b/macosx/HBVideo.h index a8ceef808..50678ec41 100644 --- a/macosx/HBVideo.h +++ b/macosx/HBVideo.h @@ -26,10 +26,12 @@ extern NSString * const HBVideoChangedNotification; /** * HBVideo */ -@interface HBVideo : NSObject <NSSecureCoding, NSCopying, HBPresetCoding> +@interface HBVideo : NSObject <NSSecureCoding, NSCopying> - (instancetype)initWithJob:(HBJob *)job; +@property (nonatomic, readwrite, weak) HBJob *job; + - (void)containerChanged; @property (nonatomic, readwrite) int encoder; @@ -58,7 +60,6 @@ extern NSString * const HBVideoChangedNotification; @property (nonatomic, readwrite) BOOL fastDecode; -@property (nonatomic, readwrite, weak) HBJob *job; @property (nonatomic, readonly) NSString *completeTune; @property (nonatomic, readwrite, weak, nullable) NSUndoManager *undo; |