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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
|
/************************************************************************************
This source file is part of the Theora Video Playback Library
For latest info, see http://libtheoraplayer.googlecode.com
*************************************************************************************
Copyright (c) 2008-2014 Kresimir Spes (kspes@cateia.com)
This program is free software; you can redistribute it and/or modify it under
the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause
*************************************************************************************/
#ifdef __AVFOUNDATION
#define AVFOUNDATION_CLASSES_DEFINED
#import <AVFoundation/AVFoundation.h>
#include "TheoraAudioInterface.h"
#include "TheoraDataSource.h"
#include "TheoraException.h"
#include "TheoraTimer.h"
#include "TheoraUtil.h"
#include "TheoraFrameQueue.h"
#include "TheoraVideoFrame.h"
#include "TheoraVideoManager.h"
#include "TheoraVideoClip_AVFoundation.h"
#include "TheoraPixelTransform.h"
#ifdef _AVFOUNDATION_BGRX
// a fast function developed to use kernel byte swapping calls to optimize alpha decoding.
// In AVFoundation, BGRX mode conversion is prefered to YUV conversion because apple's YUV
// conversion on iOS seems to run faster than libtheoraplayer's implementation
// This may change in the future with more optimizations to libtheoraplayers's YUV conversion
// code, making this function obsolete.
static void bgrx2rgba(unsigned char* dest, int w, int h, struct TheoraPixelTransform* t)
{
unsigned register int a;
unsigned int *dst = (unsigned int*) dest, *dstEnd;
unsigned char* src = t->raw;
int y, x, ax;
for (y = 0; y < h; ++y, src += t->rawStride)
{
for (x = 0, ax = w * 4, dstEnd = dst + w; dst != dstEnd; x += 4, ax += 4, ++dst)
{
// use the full alpha range here because the Y channel has already been converted
// to RGB and that's in [0, 255] range.
a = src[ax];
*dst = (OSReadSwapInt32(src, x) >> 8) | (a << 24);
}
}
}
#endif
static CVPlanarPixelBufferInfo_YCbCrPlanar getYUVStruct(void* src)
{
CVPlanarPixelBufferInfo_YCbCrPlanar* bigEndianYuv = (CVPlanarPixelBufferInfo_YCbCrPlanar*) src;
CVPlanarPixelBufferInfo_YCbCrPlanar yuv;
yuv.componentInfoY.offset = OSSwapInt32(bigEndianYuv->componentInfoY.offset);
yuv.componentInfoY.rowBytes = OSSwapInt32(bigEndianYuv->componentInfoY.rowBytes);
yuv.componentInfoCb.offset = OSSwapInt32(bigEndianYuv->componentInfoCb.offset);
yuv.componentInfoCb.rowBytes = OSSwapInt32(bigEndianYuv->componentInfoCb.rowBytes);
yuv.componentInfoCr.offset = OSSwapInt32(bigEndianYuv->componentInfoCr.offset);
yuv.componentInfoCr.rowBytes = OSSwapInt32(bigEndianYuv->componentInfoCr.rowBytes);
return yuv;
}
TheoraVideoClip_AVFoundation::TheoraVideoClip_AVFoundation(TheoraDataSource* data_source,
TheoraOutputMode output_mode,
int nPrecachedFrames,
bool usePower2Stride):
TheoraVideoClip(data_source, output_mode, nPrecachedFrames, usePower2Stride),
TheoraAudioPacketQueue()
{
mLoaded = 0;
mReader = NULL;
mOutput = mAudioOutput = NULL;
mReadAudioSamples = mAudioFrequency = mNumAudioChannels = 0;
}
TheoraVideoClip_AVFoundation::~TheoraVideoClip_AVFoundation()
{
unload();
}
void TheoraVideoClip_AVFoundation::unload()
{
if (mOutput != NULL || mAudioOutput != NULL || mReader != NULL)
{
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
if (mOutput != NULL)
{
[mOutput release];
mOutput = NULL;
}
if (mAudioOutput)
{
[mAudioOutput release];
mAudioOutput = NULL;
}
if (mReader != NULL)
{
[mReader release];
mReader = NULL;
}
[pool release];
}
}
bool TheoraVideoClip_AVFoundation::_readData()
{
return 1;
}
bool TheoraVideoClip_AVFoundation::decodeNextFrame()
{
if (mReader == NULL || mEndOfFile) return 0;
AVAssetReaderStatus status = [mReader status];
if (status == AVAssetReaderStatusFailed)
{
// This can happen on iOS when you suspend the app... Only happens on the device, iOS simulator seems to work fine.
th_writelog("AVAssetReader reading failed, restarting...");
mSeekFrame = mTimer->getTime() * mFPS;
// just in case
if (mSeekFrame < 0) mSeekFrame = 0;
if (mSeekFrame > mDuration * mFPS - 1) mSeekFrame = mDuration * mFPS - 1;
_restart();
status = [mReader status];
if (status == AVAssetReaderStatusFailed)
{
th_writelog("AVAssetReader restart failed!");
return 0;
}
th_writelog("AVAssetReader restart succeeded!");
}
TheoraVideoFrame* frame = mFrameQueue->requestEmptyFrame();
if (!frame) return 0;
CMSampleBufferRef sampleBuffer = NULL;
NSAutoreleasePool* pool = NULL;
CMTime presentationTime;
if (mAudioInterface) decodeAudio();
if (status == AVAssetReaderStatusReading)
{
pool = [[NSAutoreleasePool alloc] init];
while ((sampleBuffer = [mOutput copyNextSampleBuffer]))
{
presentationTime = CMSampleBufferGetOutputPresentationTimeStamp(sampleBuffer);
frame->mTimeToDisplay = (float) CMTimeGetSeconds(presentationTime);
frame->mIteration = mIteration;
frame->_setFrameNumber(mFrameNumber);
++mFrameNumber;
if (frame->mTimeToDisplay < mTimer->getTime() && !mRestarted && mFrameNumber % 16 != 0)
{
// %16 operation is here to prevent a playback halt during video playback if the decoder can't keep up with demand.
#ifdef _DEBUG
th_writelog(mName + ": pre-dropped frame " + str(mFrameNumber - 1));
#endif
++mNumDisplayedFrames;
++mNumDroppedFrames;
CMSampleBufferInvalidate(sampleBuffer);
CFRelease(sampleBuffer);
sampleBuffer = NULL;
continue; // drop frame
}
CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
CVPixelBufferLockBaseAddress(imageBuffer, 0);
void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer);
mStride = CVPixelBufferGetBytesPerRow(imageBuffer);
size_t width = CVPixelBufferGetWidth(imageBuffer);
size_t height = CVPixelBufferGetHeight(imageBuffer);
TheoraPixelTransform t;
memset(&t, 0, sizeof(TheoraPixelTransform));
#ifdef _AVFOUNDATION_BGRX
if (mOutputMode == TH_BGRX || mOutputMode == TH_RGBA)
{
t.raw = (unsigned char*) baseAddress;
t.rawStride = mStride;
}
else
#endif
{
CVPlanarPixelBufferInfo_YCbCrPlanar yuv = getYUVStruct(baseAddress);
t.y = (unsigned char*) baseAddress + yuv.componentInfoY.offset; t.yStride = yuv.componentInfoY.rowBytes;
t.u = (unsigned char*) baseAddress + yuv.componentInfoCb.offset; t.uStride = yuv.componentInfoCb.rowBytes;
t.v = (unsigned char*) baseAddress + yuv.componentInfoCr.offset; t.vStride = yuv.componentInfoCr.rowBytes;
}
#ifdef _AVFOUNDATION_BGRX
if (mOutputMode == TH_RGBA)
{
for (int i = 0; i < 1000; ++i)
bgrx2rgba(frame->getBuffer(), mWidth / 2, mHeight, &t);
frame->mReady = true;
}
else
#endif
frame->decode(&t);
CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
CMSampleBufferInvalidate(sampleBuffer);
CFRelease(sampleBuffer);
break; // TODO - should this really be a while loop instead of an if block?
}
}
if (pool) [pool release];
if (!frame->mReady) // in case the frame wasn't used
{
frame->mInUse = 0;
}
if (sampleBuffer == NULL && mReader.status == AVAssetReaderStatusCompleted) // other cases could be app suspended
{
if (mAutoRestart)
{
++mIteration;
_restart();
}
else
{
unload();
mEndOfFile = true;
}
return 0;
}
return 1;
}
void TheoraVideoClip_AVFoundation::_restart()
{
mEndOfFile = false;
unload();
load(mStream);
mRestarted = true;
}
void TheoraVideoClip_AVFoundation::load(TheoraDataSource* source)
{
mStream = source;
mFrameNumber = 0;
mEndOfFile = false;
TheoraFileDataSource* fileDataSource = dynamic_cast<TheoraFileDataSource*>(source);
std::string filename;
if (fileDataSource != NULL) filename = fileDataSource->getFilename();
else
{
TheoraMemoryFileDataSource* memoryDataSource = dynamic_cast<TheoraMemoryFileDataSource*>(source);
if (memoryDataSource != NULL) filename = memoryDataSource->getFilename();
else throw TheoraGenericException("Unable to load MP4 file");
}
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
NSString* path = [NSString stringWithUTF8String:filename.c_str()];
NSError* err;
NSURL *url = [NSURL fileURLWithPath:path];
AVAsset* asset = [[AVURLAsset alloc] initWithURL:url options:nil];
mReader = [[AVAssetReader alloc] initWithAsset:asset error:&err];
NSArray* tracks = [asset tracksWithMediaType:AVMediaTypeVideo];
if ([tracks count] == 0)
throw TheoraGenericException("Unable to open video file: " + filename);
AVAssetTrack *videoTrack = [tracks objectAtIndex:0];
NSArray* audioTracks = [asset tracksWithMediaType:AVMediaTypeAudio];
if (audio_track >= audioTracks.count)
audio_track = 0;
AVAssetTrack *audioTrack = audioTracks.count > 0 ? [audioTracks objectAtIndex:audio_track] : NULL;
printf("*********** using audio track %i\n", audio_track);
#ifdef _AVFOUNDATION_BGRX
bool yuv_output = (mOutputMode != TH_BGRX && mOutputMode != TH_RGBA);
#else
bool yuv_output = true;
#endif
NSDictionary *videoOptions = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:(yuv_output) ? kCVPixelFormatType_420YpCbCr8Planar : kCVPixelFormatType_32BGRA], kCVPixelBufferPixelFormatTypeKey, nil];
mOutput = [[AVAssetReaderTrackOutput alloc] initWithTrack:videoTrack outputSettings:videoOptions];
[mReader addOutput:mOutput];
if ([mOutput respondsToSelector:@selector(setAlwaysCopiesSampleData:)]) // Not supported on iOS versions older than 5.0
mOutput.alwaysCopiesSampleData = NO;
mFPS = videoTrack.nominalFrameRate;
mWidth = mSubFrameWidth = mStride = videoTrack.naturalSize.width;
mHeight = mSubFrameHeight = videoTrack.naturalSize.height;
mFrameDuration = 1.0f / mFPS;
mDuration = (float) CMTimeGetSeconds(asset.duration);
if (mFrameQueue == NULL)
{
mFrameQueue = new TheoraFrameQueue(this);
mFrameQueue->setSize(mNumPrecachedFrames);
}
if (mSeekFrame != -1)
{
mFrameNumber = mSeekFrame;
[mReader setTimeRange: CMTimeRangeMake(CMTimeMakeWithSeconds(mSeekFrame / mFPS, 1), kCMTimePositiveInfinity)];
}
if (audioTrack)
{
TheoraAudioInterfaceFactory* audio_factory = TheoraVideoManager::getSingleton().getAudioInterfaceFactory();
if (audio_factory)
{
NSDictionary *audioOptions = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
[NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
[NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
[NSNumber numberWithBool:YES], AVLinearPCMIsFloatKey,
[NSNumber numberWithInt:32], AVLinearPCMBitDepthKey,
nil];
mAudioOutput = [[AVAssetReaderTrackOutput alloc] initWithTrack:audioTrack outputSettings:audioOptions];
[mReader addOutput:mAudioOutput];
if ([mAudioOutput respondsToSelector:@selector(setAlwaysCopiesSampleData:)]) // Not supported on iOS versions older than 5.0
mAudioOutput.alwaysCopiesSampleData = NO;
NSArray* desclst = audioTrack.formatDescriptions;
CMAudioFormatDescriptionRef desc = (CMAudioFormatDescriptionRef) [desclst objectAtIndex:0];
const AudioStreamBasicDescription* audioDesc = CMAudioFormatDescriptionGetStreamBasicDescription(desc);
mAudioFrequency = (unsigned int) audioDesc->mSampleRate;
mNumAudioChannels = audioDesc->mChannelsPerFrame;
if (mSeekFrame != -1)
{
mReadAudioSamples = mFrameNumber * (mAudioFrequency * mNumAudioChannels) / mFPS;
}
else mReadAudioSamples = 0;
if (mAudioInterface == NULL)
setAudioInterface(audio_factory->createInstance(this, mNumAudioChannels, mAudioFrequency));
}
}
#ifdef _DEBUG
else if (!mLoaded)
{
th_writelog("-----\nwidth: " + str(mWidth) + ", height: " + str(mHeight) + ", fps: " + str((int) getFPS()));
th_writelog("duration: " + strf(mDuration) + " seconds\n-----");
}
#endif
[mReader startReading];
[pool release];
mLoaded = true;
}
void TheoraVideoClip_AVFoundation::decodedAudioCheck()
{
if (!mAudioInterface || mTimer->isPaused()) return;
mAudioMutex->lock();
flushAudioPackets(mAudioInterface);
mAudioMutex->unlock();
}
float TheoraVideoClip_AVFoundation::decodeAudio()
{
if (mRestarted) return -1;
if (mReader == NULL || mEndOfFile) return 0;
AVAssetReaderStatus status = [mReader status];
if (mAudioOutput)
{
CMSampleBufferRef sampleBuffer = NULL;
NSAutoreleasePool* pool = NULL;
bool mutexLocked = 0;
float factor = 1.0f / (mAudioFrequency * mNumAudioChannels);
float videoTime = (float) mFrameNumber / mFPS;
float min = mFrameQueue->getSize() / mFPS + 1.0f;
if (status == AVAssetReaderStatusReading)
{
pool = [[NSAutoreleasePool alloc] init];
// always buffer up of audio ahead of the frames
while (mReadAudioSamples * factor - videoTime < min)
{
if ((sampleBuffer = [mAudioOutput copyNextSampleBuffer]))
{
AudioBufferList audioBufferList;
CMBlockBufferRef blockBuffer = NULL;
CMSampleBufferGetAudioBufferListWithRetainedBlockBuffer(sampleBuffer, NULL, &audioBufferList, sizeof(audioBufferList), NULL, NULL, 0, &blockBuffer);
for (int y = 0; y < audioBufferList.mNumberBuffers; ++y)
{
AudioBuffer audioBuffer = audioBufferList.mBuffers[y];
float *frame = (float*) audioBuffer.mData;
if (!mutexLocked)
{
mAudioMutex->lock();
mutexLocked = 1;
}
addAudioPacket(frame, audioBuffer.mDataByteSize / (mNumAudioChannels * sizeof(float)), mAudioGain);
mReadAudioSamples += audioBuffer.mDataByteSize / (sizeof(float));
}
CFRelease(blockBuffer);
CMSampleBufferInvalidate(sampleBuffer);
CFRelease(sampleBuffer);
}
else
{
[mAudioOutput release];
mAudioOutput = nil;
break;
}
}
[pool release];
}
if (mutexLocked) mAudioMutex->unlock();
}
return -1;
}
void TheoraVideoClip_AVFoundation::doSeek()
{
#if _DEBUG
th_writelog(mName + " [seek]: seeking to frame " + str(mSeekFrame));
#endif
int frame;
float time = mSeekFrame / getFPS();
mTimer->seek(time);
bool paused = mTimer->isPaused();
if (!paused) mTimer->pause(); // pause until seeking is done
mEndOfFile = false;
mRestarted = false;
resetFrameQueue();
unload();
load(mStream);
if (mAudioInterface)
{
mAudioMutex->lock();
destroyAllAudioPackets();
mAudioMutex->unlock();
}
if (!paused) mTimer->play();
mSeekFrame = -1;
}
#endif
|