-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAQHandler.m
304 lines (253 loc) · 7.69 KB
/
AQHandler.m
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
//
// AQHandler.m
// FFmpegPlayTest
//
// Created by Jack on 11/2/12.
// Copyright (c) 2012 Jack. All rights reserved.
//
#import "AQHandler.h"
#define kBufferDuration 0.5f
/**
Audio Queue Service Playback callback function
*/
static int buffCount = 0;
static void HandleOutputBuffer (void *data,
AudioQueueRef inAQ,
AudioQueueBufferRef inBuffer)
{
AQHandler* aqHandler = (AQHandler*) data;
if (!aqHandler) {
return;
}
id<AudioQueueSource> aqSource = [aqHandler source];
AudioTimeStamp bufferStartTime;
AudioQueueGetCurrentTime(inAQ, NULL, &bufferStartTime, NULL);
NSLog(@"Current pts: %f", bufferStartTime.mSampleTime/48000);
// ???: Should change the method signature
[aqSource renderAudioBuffer:inBuffer
forPts:[aqHandler currentTimeSinceStart]];
//usleep(2000000);
AudioQueueEnqueueBuffer(inAQ, inBuffer, 0, 0);
return;
};
//--------------------------------------------------------------------
void DeriveBufferSize (
AudioStreamBasicDescription ASBDesc,
UInt32 maxPacketSize,
Float64 seconds,
UInt32 *outBufferSize,
UInt32 *outNumPacketsToRead)
{
/* An upper bound for the audio queue buffer size, in bytes. In this example,
the upper bound is set to 320 KB. This corresponds to approximately five
seconds of stereo, 24 bit audio at a sample rate of 96 kHz. */
static const int maxBufferSize = 0x50000;
/* A lower bound for the audio queue buffer size, in bytes. In this example,
the lower bound is set to 16 KB. */
static const int minBufferSize = 0x4000;
if (ASBDesc.mBytesPerPacket != 0) // LPCM
{
Float64 numPacketsForTime = ASBDesc.mSampleRate / ASBDesc.mFramesPerPacket * seconds;
*outBufferSize = numPacketsForTime * maxPacketSize;
}
else // AAC or MP3
{
*outBufferSize = maxBufferSize > maxPacketSize ? maxBufferSize : maxPacketSize;
}
if (*outBufferSize > maxBufferSize && *outBufferSize > maxPacketSize )
*outBufferSize = maxBufferSize;
else if (*outBufferSize < minBufferSize)
*outBufferSize = minBufferSize;
*outNumPacketsToRead = *outBufferSize / maxPacketSize;
};
//--------------------------------------------------------------------
@interface AQHandler ()
{
AQPlayerState aqData;
}
@end
//--------------------------------------------------------------------
#pragma mark
@implementation AQHandler
@synthesize source=_source;
//--------------------------------------------------------------------
- (id) initWithSource: (id<AudioQueueSource>) source
{
self = [super init];
if (self) {
aqData.mStatus = kAQStateUnknown;
_source = source;
if (![self initAudioQueue]) {
NSLog(@"Failed to init AudioQueue Service");
self = nil;
return self;
};
// TODO: Check return, and handle error
[self initSynchronizer];
aqData.mStatus = kAQStateStopped;
NSLog(@"Finished initialize Audio Queue");
}
return self;
}
//--------------------------------------------------------------------
#pragma mark Utilities
- (AQPlayerState*) audioQueueData
{
return &aqData;
}
//--------------------------------------------------------------------
/**
Init parameter used for synchronization
*/
- (void) initSynchronizer
{
// TODO: need implementation
}
//--------------------------------------------------------------------
- (BOOL) initAudioQueue
{
NSLog(@"Initializing Audio Queue");
BOOL ret = TRUE;
OSStatus osStatus = 0;
buffCount = 0;
// Ask source to fil information about data format
if ([_source respondsToSelector:@selector(fillAudioStreamDescription:)]) {
if (![_source fillAudioStreamDescription:&aqData.mDataFormat]) {
return FALSE;
}
}else{
return FALSE;
}
UInt32 maxPktSize;
if ([_source respondsToSelector:@selector(maxAudioPacketSize)]) {
maxPktSize = [_source maxAudioPacketSize];
}else{
return FALSE;
}
// Calculate buffer size
DeriveBufferSize(aqData.mDataFormat,
maxPktSize,
kBufferDuration,
&aqData.bufferByteSize,
&aqData.mNumPacketsToRead);
osStatus = AudioQueueNewOutput(&aqData.mDataFormat,
HandleOutputBuffer,
(void *)(self),
NULL,
NULL,
0,
&aqData.mQueue);
if (osStatus != 0) {
return FALSE;
}
for (int i = 0; i < kNumberBuffers; i++) {
// Fixed size packet, no packet description need
if (aqData.mDataFormat.mBytesPerPacket)
{
osStatus = AudioQueueAllocateBuffer(aqData.mQueue,
aqData.bufferByteSize,
&aqData.mBuffers[i]);
}
else
{
osStatus = AudioQueueAllocateBufferWithPacketDescriptions(aqData.mQueue,
//aqData.bufferByteSize,
aqData.mDataFormat.mSampleRate * kBufferDuration / 8,
aqData.mDataFormat.mSampleRate * kBufferDuration / maxPktSize + 1,
//aqData.mNumPacketsToRead,
&aqData.mBuffers[i]);
// // We will supply the packet description when enqueuing the
// // the data, so we dont need to use above function
// osStatus = AudioQueueAllocateBuffer(aqData.mQueue,
// aqData.bufferByteSize,
// &aqData.mBuffers[i]);
}
// If there is error, dispose queue and
if (osStatus != 0) {
ret = FALSE;
AudioQueueDispose(aqData.mQueue, YES);
break;
}
}
return ret;
}
#pragma mark Controlable Protocol
//------------------------------------------------------------------
- (BOOL) isReady
{
return (aqData.mStatus != kAQStateUnknown) != 0;
}
//------------------------------------------------------------------
- (void) start
{
/**
TODO: Check if it source is up and runnig
IF source is not runing
THEN return
ELSE Go on
*/
if ((aqData.mStatus != kAQStatePaused) && (aqData.mStatus != kAQStateRunning)) {
for (int i = 0; i < kNumberBuffers; i++) {
// TODO: Figure out what wrong when we fill three buffer before stat queue
// Need to fill buffer first time, and enqueue buffer
// HandleOutputBuffer ((void *)(self),
// aqData.mQueue,
// aqData.mBuffers[i]);
memset(aqData.mBuffers[i]->mAudioData, 1, aqData.mBuffers[i]->mAudioDataBytesCapacity);
aqData.mBuffers[i]->mAudioDataByteSize = aqData.mBuffers[i]->mAudioDataBytesCapacity;
AudioQueueEnqueueBuffer(aqData.mQueue, aqData.mBuffers[i], 0, 0);
}
Float32 gain = 1.0;
AudioQueueSetParameter (aqData.mQueue,kAudioQueueParam_Volume,gain);
OSStatus err = AudioQueueStart(aqData.mQueue, NULL);
if (err) {
NSLog(@"Could not start audio queue");
aqData.mStatus = kAQStateStopped;
return;
}
aqData.mStatus = kAQStateRunning;
NSLog(@"AQHandler started");
}
}
//------------------------------------------------------------------
- (void) pause
{
AudioQueuePause(aqData.mQueue);
aqData.mStatus = kAQStatePaused;
NSLog(@"AQHandler Paused");
}
//------------------------------------------------------------------
- (void) resume
{
AudioQueueStart(aqData.mQueue, NULL);
aqData.mStatus = kAQStateRunning;
NSLog(@"AQHandler Paused");
}
//------------------------------------------------------------------
- (void) stop
{
//TEST
AudioQueueStop(aqData.mQueue, YES);
aqData.mStatus = kAQStateStopped;
NSLog(@"AQHandler Stopped");
}
//------------------------------------------------------------------
- (BOOL) isRuning
{
return NO;
}
#pragma mark - Clock Protocol
- (NSTimeInterval) startTime
{
return 0;
}
- (NSTimeInterval) currentTimeSinceStart
{
if (aqData.mQueue) {
AudioTimeStamp bufferStartTime;
AudioQueueGetCurrentTime(aqData.mQueue, NULL, &bufferStartTime, NULL);
return bufferStartTime.mSampleTime / [_source sampleRate];
}
return 0;
}
@end