This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
ff_MovieImport.c
562 lines (450 loc) · 16.7 KB
/
ff_MovieImport.c
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
/*****************************************************************************
*
* Avi Import Component QuickTime Component Interface
*
* Copyright(C) 2006 Christoph Naegeli <chn1@mac.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
****************************************************************************/
#include <libavformat/riff.h>
#include "ff_MovieImportVersion.h"
#include "ff_private.h"
#include "Codecprintf.h"
#include "SubImport.h"
#include "CommonUtils.h"
#include "FFmpegUtils.h"
/* This one is a little big in ffmpeg and private anyway */
#define PROBE_BUF_SIZE 64
#include <CoreServices/CoreServices.h>
#include <QuickTime/QuickTime.h>
#include <pthread.h>
#define MOVIEIMPORT_BASENAME() FFAvi_MovieImport
#define MOVIEIMPORT_GLOBALS() ff_global_ptr storage
#define CALLCOMPONENT_BASENAME() MOVIEIMPORT_BASENAME()
#define CALLCOMPONENT_GLOBALS() MOVIEIMPORT_GLOBALS()
#define COMPONENT_DISPATCH_FILE "ff_MovieImportDispatch.h"
#define COMPONENT_UPP_SELECT_ROOT() MovieImport
#include <CoreServices/Components.k.h>
#include <QuickTime/QuickTimeComponents.k.h>
#pragma GCC visibility push(default)
#include <QuickTime/ComponentDispatchHelper.c>
#pragma GCC visibility pop
#pragma mark -
/************************************
** Base Component Manager Routines **
*************************************/
ComponentResult FFAvi_MovieImportOpen(ff_global_ptr storage, ComponentInstance self)
{
ComponentResult result = noErr;
ComponentDescription descout;
GetComponentInfo((Component)self, &descout, 0, 0, 0);
storage = malloc(sizeof(ff_global_context));
if(!storage) goto bail;
memset(storage, 0, sizeof(ff_global_context));
storage->ci = self;
SetComponentInstanceStorage(storage->ci, (Handle)storage);
storage->componentType = descout.componentSubType;
storage->movieLoadState = kMovieLoadStateLoading;
bail:
return result;
} /* FFAvi_MovieImportOpen() */
ComponentResult FFAvi_MovieImportClose(ff_global_ptr storage, ComponentInstance self)
{
/* Free all global storage */
if(storage->imgHdl)
DisposeHandle((Handle)storage->imgHdl);
if(storage->sndHdl)
DisposeHandle((Handle)storage->sndHdl);
if(storage->stream_map)
av_free(storage->stream_map);
if(storage->format_context) {
if (storage->format_context->pb)
avio_close(storage->format_context->pb);
avformat_close_input(&storage->format_context);
}
int i;
for(i=0; i<16; i++)
{
if(storage->firstFrames[i].data != NULL)
av_free_packet(storage->firstFrames + i);
}
if(storage)
free(storage);
return noErr;
} /* FFAvi_MovieImportClose() */
ComponentResult FFAvi_MovieImportVersion(ff_global_ptr storage)
{
return kFFAviComponentVersion;
} /* FFAvi_MovieImportVersion() */
#pragma mark -
/********************************
** Configuration Stuff is here **
*********************************/
ComponentResult FFAvi_MovieImportGetMIMETypeList(ff_global_ptr storage, QTAtomContainer *mimeInfo)
{
ComponentResult err = noErr;
switch (storage->componentType) {
case 'VfW ':
case 'VFW ':
case 'AVI ':
err = GetComponentResource((Component)storage->ci, 'mime', kAVIthngResID, (Handle*)mimeInfo);
break;
case 'FLV ':
err = GetComponentResource((Component)storage->ci, 'mime', kFLVthngResID, (Handle*)mimeInfo);
break;
case 'TTA ':
err = GetComponentResource((Component)storage->ci, 'mime', kTTAthngResID, (Handle*)mimeInfo);
break;
case 'NUV ':
err = GetComponentResource((Component)storage->ci, 'mime', kNUVthngResID, (Handle*)mimeInfo);
break;
default:
err = GetComponentResource((Component)storage->ci, 'mime', kAVIthngResID, (Handle*)mimeInfo);
break;
}
return err;
} /* FFAvi_MovieImportGetMIMETypeList() */
ComponentResult FFAvi_MovieImportSetProgressProc(ff_global_ptr storage, MovieProgressUPP prog, long refcon)
{
storage->prog = prog;
storage->refcon = refcon;
if(!storage->prog)
storage->refcon = 0;
return noErr;
} /* FFAvi_MovieImportSetProgressProc() */
ComponentResult FFAvi_MovieImportSetSampleDescription(ff_global_ptr storage, SampleDescriptionHandle desc, OSType media)
{
ComponentResult result = noErr;
switch(media) {
case VideoMediaType:
if(storage->imgHdl) /* already one stored */
DisposeHandle((Handle)storage->imgHdl);
storage->imgHdl = (ImageDescriptionHandle)desc;
if(storage->imgHdl)
result = HandToHand((Handle*)&storage->imgHdl);
break;
case SoundMediaType:
if(storage->sndHdl)
DisposeHandle((Handle)storage->sndHdl);
storage->sndHdl = (SoundDescriptionHandle)desc;
if(storage->sndHdl)
result = HandToHand((Handle*)&storage->sndHdl);
break;
default:
break;
}
return result;
} /* FFAvi_MovieImportSetSampleDescription() */
ComponentResult FFAvi_MovieImportGetDestinationMediaType(ff_global_ptr storage, OSType *mediaType)
{
*mediaType = VideoMediaType;
return noErr;
} /* FFAvi_MovieImportGetDestinationMediaType() */
#pragma mark -
/****************************
** Import Stuff comes here **
*****************************/
ComponentResult FFAvi_MovieImportValidate(ff_global_ptr storage, const FSSpec *theFile, Handle theData, Boolean *valid)
{
ComponentResult result = noErr;
Handle dataRef = NULL;
OSType dataRefType;
*valid = FALSE;
result = QTNewDataReferenceFromFSSpec(theFile, 0, &dataRef, &dataRefType);
require_noerr(result,bail);
result = MovieImportValidateDataRef(storage->ci, dataRef, dataRefType, (UInt8*)valid);
bail:
if(dataRef)
DisposeHandle(dataRef);
return result;
} /* FFAvi_MovieImportValidate() */
// this function is a small avi parser to get the video track's fourcc as
// fast as possible, so we can decide whether we can handle the necessary
// image description extensions for the format in ValidateDataRef() quickly
OSType get_avi_strf_fourcc(AVIOContext *pb)
{
OSType tag, subtag;
unsigned int size;
if (avio_rb32(pb) != 'RIFF')
return 0;
// file size
avio_rl32(pb);
if (avio_rb32(pb) != 'AVI ')
return 0;
while (!pb->eof_reached) {
tag = avio_rb32(pb);
size = avio_rl32(pb);
if (tag == 'LIST') {
subtag = avio_rb32(pb);
// only lists we care about: hdrl & strl, so skip the rest
if (subtag != 'hdrl' && subtag != 'strl')
avio_skip(pb, size - 4 + (size & 1));
} else if (tag == 'strf') {
// 16-byte offset to the fourcc
avio_skip(pb, 16);
return avio_rb32(pb);
} else if (tag == 'strh'){
// 4-byte offset to the fourcc
OSType tag1 = avio_rb32(pb);
if(tag1 == 'iavs' || tag1 == 'ivas')
return avio_rb32(pb);
else
avio_skip(pb, size + (size & 1) - 4);
} else
avio_skip(pb, size + (size & 1));
}
return 0;
}
ComponentResult FFAvi_MovieImportValidateDataRef(ff_global_ptr storage, Handle dataRef, OSType dataRefType, UInt8 *valid)
{
ComponentResult result = noErr;
DataHandler dataHandler = NULL;
uint8_t buf[PROBE_BUF_SIZE + FF_INPUT_BUFFER_PADDING_SIZE] = {0};
AVProbeData pd;
AVIOContext *byteContext;
/* default */
*valid = 0;
/* Get a data handle and read a probe of data */
result = OpenADataHandler(dataRef, dataRefType, NULL, 0, NULL, kDataHCanRead, &dataHandler);
if(result || !dataHandler) goto bail;
pd.buf = buf;
pd.buf_size = PROBE_BUF_SIZE;
result = DataHScheduleData(dataHandler, (Ptr)pd.buf, 0, PROBE_BUF_SIZE, 0, NULL, NULL);
require_noerr(result,bail);
FFInitFFmpeg();
storage->format = av_probe_input_format(&pd, 1);
if(storage->format != NULL) {
*valid = 255; /* This means we can read the data */
/* we don't do MJPEG's Huffman tables right yet, and DV video seems to have
an aspect ratio coded in the bitstream that ffmpeg doesn't read, so let Apple's
AVI importer handle AVIs with these two video types */
if (IS_AVI(storage->componentType)) {
/* Prepare the iocontext structure */
result = url_open_dataref(&byteContext, dataRef, dataRefType, NULL, NULL, NULL);
require_noerr(result, bail);
OSType fourcc = get_avi_strf_fourcc(byteContext);
enum CodecID id = ff_codec_get_id(ff_codec_bmp_tags, BSWAP(fourcc));
if (id == CODEC_ID_MJPEG || id == CODEC_ID_DVVIDEO || id == CODEC_ID_RAWVIDEO || id == CODEC_ID_MSVIDEO1 || id == CODEC_ID_MSRLE)
*valid = 0;
avio_close(byteContext);
}
}
bail:
if(dataHandler)
CloseComponent(dataHandler);
return result;
} /* FFAvi_MovieImportValidateDataRef() */
ComponentResult FFAvi_MovieImportFile(ff_global_ptr storage, const FSSpec *theFile, Movie theMovie, Track targetTrack,
Track *usedTrack, TimeValue atTime, TimeValue *addedDuration, long inFlags, long *outFlags)
{
ComponentResult result;
Handle dataRef = NULL;
OSType dataRefType;
FSRef theFileFSRef;
*outFlags = 0;
result = QTNewDataReferenceFromFSSpec(theFile, 0, &dataRef, &dataRefType);
require_noerr(result,bail);
result = MovieImportDataRef(storage->ci, dataRef, dataRefType, theMovie, targetTrack, usedTrack, atTime, addedDuration,
inFlags, outFlags);
require_noerr(result, bail);
result = FSpMakeFSRef(theFile, &theFileFSRef);
require_noerr(result, bail);
bail:
if(dataRef)
DisposeHandle(dataRef);
return result;
} /* FFAvi_MovieImportFile() */
ComponentResult FFAvi_MovieImportDataRef(ff_global_ptr storage, Handle dataRef, OSType dataRefType, Movie theMovie, Track targetTrack,
Track *usedTrack, TimeValue atTime, TimeValue *addedDuration, long inFlags, long *outFlags)
{
ComponentResult result = noErr;
AVIOContext *byteContext;
AVFormatContext *ic = NULL;
OSType mediaType;
Media media;
int count, hadIndex, j;
/* make sure that in case of error, the flag movieImportResultComplete is not set */
*outFlags = 0;
/* probe the format first */
UInt8 valid = 0;
FFAvi_MovieImportValidateDataRef(storage, dataRef, dataRefType, &valid);
if(valid != 255)
goto bail;
/* Prepare the iocontext structure */
result = url_open_dataref(&byteContext, dataRef, dataRefType, &storage->dataHandler, &storage->dataHandlerSupportsWideOffsets, &storage->dataSize);
storage->isStreamed = dataRefType == URLDataHandlerSubType;
require_noerr(result, bail);
/* Open the Format Context */
ic = avformat_alloc_context();
ic->flags |= AVFMT_FLAG_CUSTOM_IO;
ic->pb = byteContext;
result = avformat_open_input(&ic, "", storage->format, NULL);
require_noerr(result,bail);
storage->format_context = ic;
ic = NULL;
int nb_streams = storage->format_context->nb_streams;
if (nb_streams >= 16)
goto bail;
// AVIs without an index currently add a few entries to the index so it can
// determine codec parameters. Check for index existence here before it
// reads any packets.
hadIndex = 1;
for (j = 0; j < nb_streams; j++) {
if (storage->format_context->streams[j]->nb_index_entries <= 1)
{
hadIndex = 0;
break;
}
}
/* Get the Stream Infos if not already read */
result = avformat_find_stream_info(storage->format_context, NULL);
// -1 means it couldn't understand at least one stream
// which might just mean we don't have its video decoder enabled
if(result < 0 && result != -1)
goto bail;
// we couldn't find any streams, bail with an error.
if(nb_streams == 0) {
result = -1; //is there a more appropriate error code?
goto bail;
}
//determine a header offset (needed by index-based import).
result = determine_header_offset(storage);
if(result < 0)
goto bail;
/* Initialize the Movie */
storage->movie = theMovie;
if(inFlags & movieImportMustUseTrack) {
storage->map_count = 1;
prepare_track(storage, targetTrack, dataRef, dataRefType);
} else {
storage->map_count = nb_streams;
result = prepare_movie(storage, theMovie, dataRef, dataRefType);
if (result != 0)
goto bail;
}
/* replace the SampleDescription if user called MovieImportSetSampleDescription() */
if(storage->imgHdl) {
for(j = 0; j < storage->map_count; j++) {
NCStream ncstream = storage->stream_map[j];
GetMediaHandlerDescription(ncstream.media, &mediaType, NULL, NULL);
if(mediaType == VideoMediaType && ncstream.sampleHdl) {
DisposeHandle((Handle)ncstream.sampleHdl);
ncstream.sampleHdl = (SampleDescriptionHandle)storage->imgHdl;
}
}
}
if(storage->sndHdl) {
for(j = 0; j < storage->map_count; j++) {
NCStream ncstream = storage->stream_map[j];
GetMediaHandlerDescription(ncstream.media, &mediaType, NULL, NULL);
if(mediaType == SoundMediaType && ncstream.sampleHdl) {
DisposeHandle((Handle)ncstream.sampleHdl);
ncstream.sampleHdl = (SampleDescriptionHandle)storage->sndHdl;
}
}
}
count = 0; media = NULL;
for(j = 0; j < storage->map_count; j++) {
media = storage->stream_map[j].media;
if(media)
count++;
}
if(count > 1)
*outFlags |= movieImportResultUsedMultipleTracks;
/* The usedTrack parameter. Count the number of Tracks and set usedTrack if we operated
* on a single track. Note that this requires the media to be set by track counting above */
if(usedTrack && count == 1 && media)
*usedTrack = GetMediaTrack(media);
*addedDuration = 0;
// Force libavformat to not parse apart frames. QT needs position/size info instead of importing from memory.
// This means we need decoder side support for anything that needs to be parsed.
for(j = 0; j < storage->map_count; j++) {
NCStream *ncstream = &storage->stream_map[j];
if (ncstream->str->need_parsing != AVSTREAM_PARSE_NONE) {
ncstream->str->need_parsing = AVSTREAM_PARSE_HEADERS;
}
}
//attempt to import using indexes.
result = import_using_index(storage, &hadIndex, addedDuration);
require_noerr(result, bail);
if(hadIndex) {
//file had an index and was imported; we are done.
*outFlags |= movieImportResultComplete;
} else if(inFlags & movieImportWithIdle) {
int64_t duration = storage->format_context->duration;
if(addedDuration && duration > 0) {
TimeScale movieTimeScale = GetMovieTimeScale(theMovie);
*addedDuration = (movieTimeScale * duration) / AV_TIME_BASE;
//create a placeholder track so that progress displays correctly.
create_placeholder_track(storage->movie, &storage->placeholderTrack, *addedDuration, dataRef, dataRefType);
//give the data handler a hint as to how fast we need the data.
//suggest a speed that's faster than the bare minimum.
//if there's an error, the data handler probably doesn't support
//this, so we can just ignore.
DataHPlaybackHints(storage->dataHandler, 0, 0, -1, (storage->dataSize * 1.15) / (duration / (double)AV_TIME_BASE));
}
//import with idle. Decode a little bit of data now.
import_with_idle(storage, inFlags, outFlags, 10, 300, true);
} else {
//QuickTime didn't request import with idle, so do it all now.
import_with_idle(storage, inFlags, outFlags, 0, 0, true);
}
LoadExternalSubtitlesFromFileDataRef(dataRef, dataRefType, theMovie);
bail:
if(result == noErr)
storage->movieLoadState = kMovieLoadStateLoaded;
else
storage->movieLoadState = kMovieLoadStateError;
if (result == -1)
result = invalidMovie; // a bit better error message
if (ic)
avformat_free_context(ic);
if (result != noErr) {
Codecprintf(NULL, "ImportDataRef err %ld\n", result);
}
return result;
} /* FFAvi_MovieImportDataRef */
ComponentResult FFAvi_MovieImportSetIdleManager(ff_global_ptr storage, IdleManager im) {
storage->idleManager = im;
return noErr;
}
ComponentResult FFAvi_MovieImportIdle(ff_global_ptr storage, long inFlags, long *outFlags) {
ComponentResult err = noErr;
TimeValue currentIdleTime = GetMovieTime(storage->movie, NULL);
TimeScale movieTimeScale = GetMovieTimeScale(storage->movie);
int addSamples = false;
storage->idlesSinceLastAdd++;
if ((currentIdleTime == storage->lastIdleTime && storage->idlesSinceLastAdd > 5) ||
storage->loadedTime < currentIdleTime + 5*movieTimeScale)
{
storage->idlesSinceLastAdd = 0;
addSamples = true;
}
err = import_with_idle(storage, inFlags | movieImportWithIdle, outFlags, 0, 1000, addSamples);
storage->lastIdleTime = currentIdleTime;
if (err != noErr) {
Codecprintf(NULL, "ImportIdle err %ld\n", err);
}
return err;
}
ComponentResult FFAvi_MovieImportGetLoadState(ff_global_ptr storage, long *importerLoadState) {
*importerLoadState = storage->movieLoadState;
return(noErr);
}
ComponentResult FFAvi_MovieImportGetMaxLoadedTime(ff_global_ptr storage, TimeValue *time) {
*time = storage->loadedTime;
return(noErr);
}