summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/invoker/audio/AudioToolbox.mm
blob: ef99063385ed446ca884bb4b951498e54af35c90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/**
 *  @file
 *  @author     2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
 *  @copyright  Simplified BSD
 *
 *  @cond
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the FreeBSD license as published by the FreeBSD
 *  project.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 *  You should have received a copy of the FreeBSD license along with this
 *  program. If not, see <http://www.opensource.org/licenses/bsd-license>.
 *  @endcond
 */

#include "AudioToolbox.h"
#include <glog/logging.h>

#import <Foundation/Foundation.h>
#import <Foundation/NSURL.h>

#ifdef __has_feature
# if __has_feature(objc_arc)
#   define(HAS_AUTORELEASE_POOL)
# endif
#endif

namespace uscxml {

AudioToolbox::AudioToolbox(const std::string filename) {
#if HAS_AUTORELEASE_POOL
  @autoreleasepool {
#else
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
#endif
		_afId = 0;
		NSString* filePath = [NSString stringWithCString:filename.c_str() encoding:NSASCIIStringEncoding];
		NSURL* afUrl = [NSURL fileURLWithPath:filePath];

		OSStatus result = noErr;
		
		result = ExtAudioFileOpenURL((CFURLRef)afUrl, &_afId);

		if (result != noErr) {
			LOG(WARNING) << "Cannot open audio file " << filename;
			return;
		}
		UInt32 thePropertySize = sizeof(_inputFormat);
		result = ExtAudioFileGetProperty(_afId, kExtAudioFileProperty_FileDataFormat, &thePropertySize, &_inputFormat);
		if (result != noErr) {
			LOG(WARNING) << "Cannot determine input format of " << filename;
			return;
		}

		// output format is input format
		memcpy(&_outputFormat, &_inputFormat, sizeof(_inputFormat));

		// except for things that make no sense for open al
		_outputFormat.mFormatID = kAudioFormatLinearPCM;
		_outputFormat.mFormatFlags = kAudioFormatFlagsNativeEndian | kAudioFormatFlagIsPacked | kAudioFormatFlagIsSignedInteger;

		ALenum bestFormat = formatToALEnum(_outputFormat);
		alEnumToFormat(_outputFormat, bestFormat);
		
		result = ExtAudioFileSetProperty(_afId, kExtAudioFileProperty_ClientDataFormat, sizeof(_outputFormat), &_outputFormat);

		if (result != noErr) {
			LOG(WARNING) << "Cannot set audio format file " << filename;
			return;
		}

#if HAS_AUTORELEASE_POOL
  }
#else
  [pool drain];
#endif
}

AudioToolbox::~AudioToolbox() {
  if (_afId)
		ExtAudioFileDispose(_afId); //close the file
}

void AudioToolbox::seek(unsigned int pos) {
	ExtAudioFileSeek(_afId, pos);
}

int AudioToolbox::read(char* buffer, unsigned int size) {
	UInt32 read = size / _outputFormat.mBytesPerFrame;
  OSStatus result = noErr;
	
	SInt64 theFileLengthInFrames = 0;
	UInt32 thePropertySize = sizeof(theFileLengthInFrames);
	result = ExtAudioFileGetProperty(_afId, kExtAudioFileProperty_FileLengthFrames, &thePropertySize, &theFileLengthInFrames);

	read = (theFileLengthInFrames < read ? theFileLengthInFrames : read);
	
	AudioBufferList dataBuffer;
	dataBuffer.mNumberBuffers = 1;
	dataBuffer.mBuffers[0].mDataByteSize = size;
	dataBuffer.mBuffers[0].mNumberChannels = _outputFormat.mChannelsPerFrame;
	dataBuffer.mBuffers[0].mData = buffer;

	result = ExtAudioFileRead(_afId, &read, &dataBuffer);
	if (result != noErr) {
		LOG(WARNING) << "Cannot read data";
		return 0;
	}

	return read * _outputFormat.mBytesPerFrame;
}

ALenum AudioToolbox::formatToALEnum(AudioStreamBasicDescription asbd) {
	if (asbd.mBitsPerChannel < 16) {
		if (asbd.mChannelsPerFrame == 1) {
			return AL_FORMAT_MONO8;
		} else {
			return AL_FORMAT_STEREO8;
		}
	} else {
		if (asbd.mChannelsPerFrame == 1) {
			return AL_FORMAT_MONO16;
		} else {
			return AL_FORMAT_STEREO16;
		}	
	}
}
	
bool AudioToolbox::alEnumToFormat(AudioStreamBasicDescription& asbd, ALenum format) {
	switch (format) {
		case AL_FORMAT_MONO8:
			asbd.mBitsPerChannel = 8;
			asbd.mBytesPerFrame = 1;
			asbd.mBytesPerPacket = 1;
			asbd.mChannelsPerFrame = 1;
			break;
		case AL_FORMAT_MONO16:
			asbd.mBitsPerChannel = 16;
			asbd.mBytesPerFrame = 2;
			asbd.mBytesPerPacket = 2;
			asbd.mChannelsPerFrame = 1;
			break;
		case AL_FORMAT_STEREO8:
			asbd.mBitsPerChannel = 8;
			asbd.mBytesPerFrame = 2;
			asbd.mBytesPerPacket = 2;
			asbd.mChannelsPerFrame = 2;
			break;
		case AL_FORMAT_STEREO16:
			asbd.mBitsPerChannel = 16;
			asbd.mBytesPerFrame = 4;
			asbd.mBytesPerPacket = 4;
			asbd.mChannelsPerFrame = 2;
			break;
		default:
			break;
	}
	return true;
}

void AudioToolbox::setOutFormat(const PCMFormat& format) {
	
	alEnumToFormat(_outputFormat, format.alFormat);
	_outputFormat.mSampleRate = format.sampleRate;

	OSStatus result = ExtAudioFileSetProperty(_afId, kExtAudioFileProperty_ClientDataFormat, sizeof(_outputFormat), &_outputFormat);
	if (result != noErr) {
		LOG(WARNING) << "Cannot set audio format";
		return;
	}

}

PCMFormat AudioToolbox::getInFormat() {
	PCMFormat format;
	format.sampleRate = _inputFormat.mSampleRate;
	format.alFormat = formatToALEnum(_inputFormat);
	return format;
}

}