summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-08-04 16:46:17 +0000
committerritsuka <[email protected]>2014-08-04 16:46:17 +0000
commitdd3518f0e6ab8f3a12dbce90c35734c3227d5620 (patch)
treec9a0492adaedab2ccd980e051e5cb01b55093cdf /macosx/HBAudioController.h
parent2f27606181aebba7f8a17197a3b40a0a8d47d7ad (diff)
MacGui: simplified the way the audio tracks are stored in the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6267 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r--macosx/HBAudioController.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h
index 64928aba5..8655a0792 100644
--- a/macosx/HBAudioController.h
+++ b/macosx/HBAudioController.h
@@ -6,7 +6,6 @@
//
#import <Cocoa/Cocoa.h>
-#import "hb.h"
extern NSString *keyAudioTrackIndex;
extern NSString *keyAudioTrackName;
@@ -32,12 +31,12 @@ extern NSString *HBMixdownChangedNotification;
@property(nonatomic, readonly) HBAudioSettings *settings;
-- (void) enableUI: (BOOL) b;
+// Get the list of audio tracks
+@property (readonly, nonatomic, copy) NSArray *audioTracks;
-- (void)applySettingsFromPreset:(NSDictionary *)preset;
+- (void) enableUI: (BOOL) b;
-- (void) prepareAudioForQueueFileJob: (NSMutableDictionary *) aDict;
-- (void) prepareAudioForJobPreview: (hb_job_t *) aJob;
+- (void) applySettingsFromPreset:(NSDictionary *)preset;
- (void) addTracksFromQueue: (NSMutableDictionary *) aQueue;
- (BOOL) anyCodecMatches: (int) aCodecValue;