31 #import <Foundation/Foundation.h>
32 #import <AudioToolbox/AudioToolbox.h>
53 typedef NS_ENUM(NSInteger, AEAudioFileType) {
54 AEAudioFileTypeAIFFFloat32,
55 AEAudioFileTypeAIFFInt16,
56 AEAudioFileTypeWAVInt16,
77 static inline AEChannelSet AEChannelSetMake(
int firstChannel,
int lastChannel) {
87 static inline int AEChannelSetGetNumberOfChannels(
AEChannelSet set) {
88 return set.lastChannel -
set.firstChannel + 1;