diff options
author | Damiano Galassi <[email protected]> | 2019-08-13 10:27:05 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-08-13 10:27:05 +0200 |
commit | f2a619679551fd988c4e28bf68108f174d64fb3d (patch) | |
tree | 3b7b294d44d5afd20a864c2b9d2f3676f7a4749a /macosx/HBAudio.h | |
parent | 5b3c3c620855130c7bcd47685ad69a765e0cfd7b (diff) |
MacGui: convert the last usage of NSDictionary to a proper class, fix external subtitles tracks when sandboxed. Add initial support to the model to store the track title.
Diffstat (limited to 'macosx/HBAudio.h')
-rw-r--r-- | macosx/HBAudio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBAudio.h b/macosx/HBAudio.h index d2bee2dc2..2c643cda3 100644 --- a/macosx/HBAudio.h +++ b/macosx/HBAudio.h @@ -8,6 +8,7 @@ #import "HBPresetCoding.h" @class HBAudioTrack; +@class HBTitleAudioTrack; @class HBAudioDefaults; NS_ASSUME_NONNULL_BEGIN @@ -16,7 +17,7 @@ extern NSString *HBAudioEncoderChangedNotification; @interface HBAudio : NSObject <NSSecureCoding, NSCopying> -@property (nonatomic, readonly) NSArray<NSDictionary *> *sourceTracks; +@property (nonatomic, readonly) NSArray<HBTitleAudioTrack *> *sourceTracks; @property (nonatomic, readonly) NSMutableArray<HBAudioTrack *> *tracks; @property (nonatomic, readwrite) HBAudioDefaults *defaults; |