]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/mov.c
use new metadata API in mov demuxer
[frescor/ffmpeg.git] / libavformat / mov.c
1 /*
2  * MOV demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <limits.h>
23
24 //#define DEBUG
25
26 #include "libavutil/intreadwrite.h"
27 #include "libavutil/avstring.h"
28 #include "avformat.h"
29 #include "riff.h"
30 #include "isom.h"
31 #include "dv.h"
32 #include "libavcodec/mpeg4audio.h"
33 #include "libavcodec/mpegaudiodata.h"
34
35 #if CONFIG_ZLIB
36 #include <zlib.h>
37 #endif
38
39 /*
40  * First version by Francois Revol revol@free.fr
41  * Seek function by Gael Chardon gael.dev@4now.net
42  *
43  * Features and limitations:
44  * - reads most of the QT files I have (at least the structure),
45  *   Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html
46  * - the code is quite ugly... maybe I won't do it recursive next time :-)
47  *
48  * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/
49  * when coding this :) (it's a writer anyway)
50  *
51  * Reference documents:
52  * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt
53  * Apple:
54  *  http://developer.apple.com/documentation/QuickTime/QTFF/
55  *  http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf
56  * QuickTime is a trademark of Apple (AFAIK :))
57  */
58
59 #include "qtpalette.h"
60
61
62 #undef NDEBUG
63 #include <assert.h>
64
65 /* the QuickTime file format is quite convoluted...
66  * it has lots of index tables, each indexing something in another one...
67  * Here we just use what is needed to read the chunks
68  */
69
70 typedef struct {
71     int first;
72     int count;
73     int id;
74 } MOVStsc;
75
76 typedef struct {
77     uint32_t type;
78     char *path;
79 } MOVDref;
80
81 typedef struct {
82     uint32_t type;
83     int64_t offset;
84     int64_t size; /* total size (excluding the size and type fields) */
85 } MOVAtom;
86
87 struct MOVParseTableEntry;
88
89 typedef struct {
90     unsigned track_id;
91     uint64_t base_data_offset;
92     uint64_t moof_offset;
93     unsigned stsd_id;
94     unsigned duration;
95     unsigned size;
96     unsigned flags;
97 } MOVFragment;
98
99 typedef struct {
100     unsigned track_id;
101     unsigned stsd_id;
102     unsigned duration;
103     unsigned size;
104     unsigned flags;
105 } MOVTrackExt;
106
107 typedef struct MOVStreamContext {
108     ByteIOContext *pb;
109     int ffindex; /* the ffmpeg stream id */
110     int next_chunk;
111     unsigned int chunk_count;
112     int64_t *chunk_offsets;
113     unsigned int stts_count;
114     MOVStts *stts_data;
115     unsigned int ctts_count;
116     MOVStts *ctts_data;
117     unsigned int stsc_count;
118     MOVStsc *stsc_data;
119     int ctts_index;
120     int ctts_sample;
121     unsigned int sample_size;
122     unsigned int sample_count;
123     int *sample_sizes;
124     unsigned int keyframe_count;
125     int *keyframes;
126     int time_scale;
127     int time_rate;
128     int time_offset; ///< time offset of the first edit list entry
129     int current_sample;
130     unsigned int bytes_per_frame;
131     unsigned int samples_per_frame;
132     int dv_audio_container;
133     int pseudo_stream_id; ///< -1 means demux all ids
134     int16_t audio_cid; ///< stsd audio compression id
135     unsigned drefs_count;
136     MOVDref *drefs;
137     int dref_id;
138     int wrong_dts; ///< dts are wrong due to negative ctts
139     int width;  ///< tkhd width
140     int height; ///< tkhd height
141 } MOVStreamContext;
142
143 typedef struct MOVContext {
144     AVFormatContext *fc;
145     int time_scale;
146     int64_t duration; /* duration of the longest track */
147     int found_moov; /* when both 'moov' and 'mdat' sections has been found */
148     int found_mdat; /* we suppose we have enough data to read the file */
149     AVPaletteControl palette_control;
150     DVDemuxContext *dv_demux;
151     AVFormatContext *dv_fctx;
152     int isom; /* 1 if file is ISO Media (mp4/3gp) */
153     MOVFragment fragment; ///< current fragment in moof atom
154     MOVTrackExt *trex_data;
155     unsigned trex_count;
156     int itunes_metadata; ///< metadata are itunes style
157 } MOVContext;
158
159
160 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */
161
162 /* those functions parse an atom */
163 /* return code:
164   0: continue to parse next atom
165  <0: error occurred, exit
166 */
167 /* links atom IDs to parse functions */
168 typedef struct MOVParseTableEntry {
169     uint32_t type;
170     int (*parse)(MOVContext *ctx, ByteIOContext *pb, MOVAtom atom);
171 } MOVParseTableEntry;
172
173 static const MOVParseTableEntry mov_default_parse_table[];
174
175 static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
176 {
177     int64_t total_size = 0;
178     MOVAtom a;
179     int i;
180     int err = 0;
181
182     a.offset = atom.offset;
183
184     if (atom.size < 0)
185         atom.size = INT64_MAX;
186     while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) {
187         a.size = atom.size;
188         a.type=0;
189         if(atom.size >= 8) {
190             a.size = get_be32(pb);
191             a.type = get_le32(pb);
192         }
193         total_size += 8;
194         a.offset += 8;
195         dprintf(c->fc, "type: %08x  %.4s  sz: %"PRIx64"  %"PRIx64"   %"PRIx64"\n",
196                 a.type, (char*)&a.type, a.size, atom.size, total_size);
197         if (a.size == 1) { /* 64 bit extended size */
198             a.size = get_be64(pb) - 8;
199             a.offset += 8;
200             total_size += 8;
201         }
202         if (a.size == 0) {
203             a.size = atom.size - total_size;
204             if (a.size <= 8)
205                 break;
206         }
207         a.size -= 8;
208         if(a.size < 0)
209             break;
210         a.size = FFMIN(a.size, atom.size - total_size);
211
212         for (i = 0; mov_default_parse_table[i].type != 0
213              && mov_default_parse_table[i].type != a.type; i++)
214             /* empty */;
215
216         if (mov_default_parse_table[i].type == 0) { /* skip leaf atoms data */
217             url_fskip(pb, a.size);
218         } else {
219             int64_t start_pos = url_ftell(pb);
220             int64_t left;
221             err = mov_default_parse_table[i].parse(c, pb, a);
222             if (url_is_streamed(pb) && c->found_moov && c->found_mdat)
223                 break;
224             left = a.size - url_ftell(pb) + start_pos;
225             if (left > 0) /* skip garbage at atom end */
226                 url_fskip(pb, left);
227         }
228
229         a.offset += a.size;
230         total_size += a.size;
231     }
232
233     if (!err && total_size < atom.size && atom.size < 0x7ffff)
234         url_fskip(pb, atom.size - total_size);
235
236     return err;
237 }
238
239 static int mov_read_dref(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
240 {
241     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
242     MOVStreamContext *sc = st->priv_data;
243     int entries, i, j;
244
245     get_be32(pb); // version + flags
246     entries = get_be32(pb);
247     if (entries >= UINT_MAX / sizeof(*sc->drefs))
248         return -1;
249     sc->drefs_count = entries;
250     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
251
252     for (i = 0; i < sc->drefs_count; i++) {
253         MOVDref *dref = &sc->drefs[i];
254         uint32_t size = get_be32(pb);
255         int64_t next = url_ftell(pb) + size - 4;
256
257         dref->type = get_le32(pb);
258         get_be32(pb); // version + flags
259         dprintf(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
260
261         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
262             /* macintosh alias record */
263             uint16_t volume_len, len;
264             char volume[28];
265             int16_t type;
266
267             url_fskip(pb, 10);
268
269             volume_len = get_byte(pb);
270             volume_len = FFMIN(volume_len, 27);
271             get_buffer(pb, volume, 27);
272             volume[volume_len] = 0;
273             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", volume, volume_len);
274
275             url_fskip(pb, 112);
276
277             for (type = 0; type != -1 && url_ftell(pb) < next; ) {
278                 type = get_be16(pb);
279                 len = get_be16(pb);
280                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
281                 if (len&1)
282                     len += 1;
283                 if (type == 2) { // absolute path
284                     av_free(dref->path);
285                     dref->path = av_mallocz(len+1);
286                     if (!dref->path)
287                         return AVERROR(ENOMEM);
288                     get_buffer(pb, dref->path, len);
289                     if (len > volume_len && !strncmp(dref->path, volume, volume_len)) {
290                         len -= volume_len;
291                         memmove(dref->path, dref->path+volume_len, len);
292                         dref->path[len] = 0;
293                     }
294                     for (j = 0; j < len; j++)
295                         if (dref->path[j] == ':')
296                             dref->path[j] = '/';
297                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
298                 } else
299                     url_fskip(pb, len);
300             }
301         }
302         url_fseek(pb, next, SEEK_SET);
303     }
304     return 0;
305 }
306
307 static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
308 {
309     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
310     uint32_t type;
311     uint32_t ctype;
312
313     get_byte(pb); /* version */
314     get_be24(pb); /* flags */
315
316     /* component type */
317     ctype = get_le32(pb);
318     type = get_le32(pb); /* component subtype */
319
320     dprintf(c->fc, "ctype= %c%c%c%c (0x%08x)\n", *((char *)&ctype), ((char *)&ctype)[1],
321             ((char *)&ctype)[2], ((char *)&ctype)[3], (int) ctype);
322     dprintf(c->fc, "stype= %c%c%c%c\n",
323             *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]);
324     if(!ctype)
325         c->isom = 1;
326     if     (type == MKTAG('v','i','d','e'))
327         st->codec->codec_type = CODEC_TYPE_VIDEO;
328     else if(type == MKTAG('s','o','u','n'))
329         st->codec->codec_type = CODEC_TYPE_AUDIO;
330     else if(type == MKTAG('m','1','a',' '))
331         st->codec->codec_id = CODEC_ID_MP2;
332     else if(type == MKTAG('s','u','b','p')) {
333         st->codec->codec_type = CODEC_TYPE_SUBTITLE;
334     }
335     get_be32(pb); /* component  manufacture */
336     get_be32(pb); /* component flags */
337     get_be32(pb); /* component flags mask */
338
339     if(atom.size <= 24)
340         return 0; /* nothing left to read */
341
342     url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset));
343     return 0;
344 }
345
346 static int mp4_read_descr_len(ByteIOContext *pb)
347 {
348     int len = 0;
349     int count = 4;
350     while (count--) {
351         int c = get_byte(pb);
352         len = (len << 7) | (c & 0x7f);
353         if (!(c & 0x80))
354             break;
355     }
356     return len;
357 }
358
359 static int mp4_read_descr(MOVContext *c, ByteIOContext *pb, int *tag)
360 {
361     int len;
362     *tag = get_byte(pb);
363     len = mp4_read_descr_len(pb);
364     dprintf(c->fc, "MPEG4 description: tag=0x%02x len=%d\n", *tag, len);
365     return len;
366 }
367
368 #define MP4ESDescrTag                   0x03
369 #define MP4DecConfigDescrTag            0x04
370 #define MP4DecSpecificDescrTag          0x05
371
372 static const AVCodecTag mp4_audio_types[] = {
373     { CODEC_ID_MP3ON4, 29 }, /* old mp3on4 draft */
374     { CODEC_ID_MP3ON4, 32 }, /* layer 1 */
375     { CODEC_ID_MP3ON4, 33 }, /* layer 2 */
376     { CODEC_ID_MP3ON4, 34 }, /* layer 3 */
377     { CODEC_ID_NONE,    0 },
378 };
379
380 static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
381 {
382     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
383     int tag, len;
384
385     get_be32(pb); /* version + flags */
386     len = mp4_read_descr(c, pb, &tag);
387     if (tag == MP4ESDescrTag) {
388         get_be16(pb); /* ID */
389         get_byte(pb); /* priority */
390     } else
391         get_be16(pb); /* ID */
392
393     len = mp4_read_descr(c, pb, &tag);
394     if (tag == MP4DecConfigDescrTag) {
395         int object_type_id = get_byte(pb);
396         get_byte(pb); /* stream type */
397         get_be24(pb); /* buffer size db */
398         get_be32(pb); /* max bitrate */
399         get_be32(pb); /* avg bitrate */
400
401         st->codec->codec_id= codec_get_id(ff_mp4_obj_type, object_type_id);
402         dprintf(c->fc, "esds object type id %d\n", object_type_id);
403         len = mp4_read_descr(c, pb, &tag);
404         if (tag == MP4DecSpecificDescrTag) {
405             dprintf(c->fc, "Specific MPEG4 header len=%d\n", len);
406             if((uint64_t)len > (1<<30))
407                 return -1;
408             st->codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
409             if (!st->codec->extradata)
410                 return AVERROR(ENOMEM);
411             get_buffer(pb, st->codec->extradata, len);
412             st->codec->extradata_size = len;
413             if (st->codec->codec_id == CODEC_ID_AAC) {
414                 MPEG4AudioConfig cfg;
415                 ff_mpeg4audio_get_config(&cfg, st->codec->extradata,
416                                          st->codec->extradata_size);
417                 if (cfg.chan_config > 7)
418                     return -1;
419                 st->codec->channels = ff_mpeg4audio_channels[cfg.chan_config];
420                 if (cfg.object_type == 29 && cfg.sampling_index < 3) // old mp3on4
421                     st->codec->sample_rate = ff_mpa_freq_tab[cfg.sampling_index];
422                 else
423                     st->codec->sample_rate = cfg.sample_rate; // ext sample rate ?
424                 dprintf(c->fc, "mp4a config channels %d obj %d ext obj %d "
425                         "sample rate %d ext sample rate %d\n", st->codec->channels,
426                         cfg.object_type, cfg.ext_object_type,
427                         cfg.sample_rate, cfg.ext_sample_rate);
428                 if (!(st->codec->codec_id = codec_get_id(mp4_audio_types,
429                                                          cfg.object_type)))
430                     st->codec->codec_id = CODEC_ID_AAC;
431             }
432         }
433     }
434     return 0;
435 }
436
437 static int mov_read_pasp(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
438 {
439     const int num = get_be32(pb);
440     const int den = get_be32(pb);
441     AVStream * const st = c->fc->streams[c->fc->nb_streams-1];
442     if (den != 0) {
443         if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
444             (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num))
445             av_log(c->fc, AV_LOG_WARNING,
446                    "sample aspect ratio already set to %d:%d, overriding by 'pasp' atom\n",
447                    st->sample_aspect_ratio.num, st->sample_aspect_ratio.den);
448         st->sample_aspect_ratio.num = num;
449         st->sample_aspect_ratio.den = den;
450     }
451     return 0;
452 }
453
454 /* this atom contains actual media data */
455 static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
456 {
457     if(atom.size == 0) /* wrong one (MP4) */
458         return 0;
459     c->found_mdat=1;
460     return 0; /* now go for moov */
461 }
462
463 static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
464 {
465     uint32_t type = get_le32(pb);
466
467     if (type != MKTAG('q','t',' ',' '))
468         c->isom = 1;
469     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
470     get_be32(pb); /* minor version */
471     url_fskip(pb, atom.size - 8);
472     return 0;
473 }
474
475 /* this atom should contain all header atoms */
476 static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
477 {
478     if (mov_read_default(c, pb, atom) < 0)
479         return -1;
480     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
481     /* so we don't parse the whole file if over a network */
482     c->found_moov=1;
483     return 0; /* now go for mdat */
484 }
485
486 static int mov_read_moof(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
487 {
488     c->fragment.moof_offset = url_ftell(pb) - 8;
489     dprintf(c->fc, "moof offset %llx\n", c->fragment.moof_offset);
490     return mov_read_default(c, pb, atom);
491 }
492
493 static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
494 {
495     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
496     MOVStreamContext *sc = st->priv_data;
497     int version = get_byte(pb);
498     char language[4] = {0};
499     unsigned lang;
500
501     if (version > 1)
502         return -1; /* unsupported */
503
504     get_be24(pb); /* flags */
505     if (version == 1) {
506         get_be64(pb);
507         get_be64(pb);
508     } else {
509         get_be32(pb); /* creation time */
510         get_be32(pb); /* modification time */
511     }
512
513     sc->time_scale = get_be32(pb);
514     st->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */
515
516     lang = get_be16(pb); /* language */
517     if (ff_mov_lang_to_iso639(lang, language))
518         av_metadata_set(&st->metadata, "language", language);
519     get_be16(pb); /* quality */
520
521     return 0;
522 }
523
524 static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
525 {
526     int version = get_byte(pb); /* version */
527     get_be24(pb); /* flags */
528
529     if (version == 1) {
530         get_be64(pb);
531         get_be64(pb);
532     } else {
533         get_be32(pb); /* creation time */
534         get_be32(pb); /* modification time */
535     }
536     c->time_scale = get_be32(pb); /* time scale */
537
538     dprintf(c->fc, "time scale = %i\n", c->time_scale);
539
540     c->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */
541     get_be32(pb); /* preferred scale */
542
543     get_be16(pb); /* preferred volume */
544
545     url_fskip(pb, 10); /* reserved */
546
547     url_fskip(pb, 36); /* display matrix */
548
549     get_be32(pb); /* preview time */
550     get_be32(pb); /* preview duration */
551     get_be32(pb); /* poster time */
552     get_be32(pb); /* selection time */
553     get_be32(pb); /* selection duration */
554     get_be32(pb); /* current time */
555     get_be32(pb); /* next track ID */
556
557     return 0;
558 }
559
560 static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
561 {
562     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
563
564     if((uint64_t)atom.size > (1<<30))
565         return -1;
566
567     // currently SVQ3 decoder expect full STSD header - so let's fake it
568     // this should be fixed and just SMI header should be passed
569     av_free(st->codec->extradata);
570     st->codec->extradata = av_mallocz(atom.size + 0x5a + FF_INPUT_BUFFER_PADDING_SIZE);
571     if (!st->codec->extradata)
572         return AVERROR(ENOMEM);
573     st->codec->extradata_size = 0x5a + atom.size;
574     memcpy(st->codec->extradata, "SVQ3", 4); // fake
575     get_buffer(pb, st->codec->extradata + 0x5a, atom.size);
576     dprintf(c->fc, "Reading SMI %"PRId64"  %s\n", atom.size, st->codec->extradata + 0x5a);
577     return 0;
578 }
579
580 static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
581 {
582     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
583     int little_endian = get_be16(pb);
584
585     dprintf(c->fc, "enda %d\n", little_endian);
586     if (little_endian == 1) {
587         switch (st->codec->codec_id) {
588         case CODEC_ID_PCM_S24BE:
589             st->codec->codec_id = CODEC_ID_PCM_S24LE;
590             break;
591         case CODEC_ID_PCM_S32BE:
592             st->codec->codec_id = CODEC_ID_PCM_S32LE;
593             break;
594         case CODEC_ID_PCM_F32BE:
595             st->codec->codec_id = CODEC_ID_PCM_F32LE;
596             break;
597         case CODEC_ID_PCM_F64BE:
598             st->codec->codec_id = CODEC_ID_PCM_F64LE;
599             break;
600         default:
601             break;
602         }
603     }
604     return 0;
605 }
606
607 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
608 static int mov_read_extradata(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
609 {
610     AVStream *st;
611     uint64_t size;
612     uint8_t *buf;
613
614     if (c->fc->nb_streams < 1) // will happen with jp2 files
615         return 0;
616     st= c->fc->streams[c->fc->nb_streams-1];
617     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
618     if(size > INT_MAX || (uint64_t)atom.size > INT_MAX)
619         return -1;
620     buf= av_realloc(st->codec->extradata, size);
621     if(!buf)
622         return -1;
623     st->codec->extradata= buf;
624     buf+= st->codec->extradata_size;
625     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
626     AV_WB32(       buf    , atom.size + 8);
627     AV_WL32(       buf + 4, atom.type);
628     get_buffer(pb, buf + 8, atom.size);
629     return 0;
630 }
631
632 static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
633 {
634     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
635
636     if((uint64_t)atom.size > (1<<30))
637         return -1;
638
639     if (st->codec->codec_id == CODEC_ID_QDM2) {
640         // pass all frma atom to codec, needed at least for QDM2
641         av_free(st->codec->extradata);
642         st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
643         if (!st->codec->extradata)
644             return AVERROR(ENOMEM);
645         st->codec->extradata_size = atom.size;
646         get_buffer(pb, st->codec->extradata, atom.size);
647     } else if (atom.size > 8) { /* to read frma, esds atoms */
648         if (mov_read_default(c, pb, atom) < 0)
649             return -1;
650     } else
651         url_fskip(pb, atom.size);
652     return 0;
653 }
654
655 /**
656  * This function reads atom content and puts data in extradata without tag
657  * nor size unlike mov_read_extradata.
658  */
659 static int mov_read_glbl(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
660 {
661     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
662
663     if((uint64_t)atom.size > (1<<30))
664         return -1;
665
666     av_free(st->codec->extradata);
667     st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
668     if (!st->codec->extradata)
669         return AVERROR(ENOMEM);
670     st->codec->extradata_size = atom.size;
671     get_buffer(pb, st->codec->extradata, atom.size);
672     return 0;
673 }
674
675 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
676 {
677     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
678     MOVStreamContext *sc = st->priv_data;
679     unsigned int i, entries;
680
681     get_byte(pb); /* version */
682     get_be24(pb); /* flags */
683
684     entries = get_be32(pb);
685
686     if(entries >= UINT_MAX/sizeof(int64_t))
687         return -1;
688
689     sc->chunk_count = entries;
690     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
691     if (!sc->chunk_offsets)
692         return -1;
693     if      (atom.type == MKTAG('s','t','c','o'))
694         for(i=0; i<entries; i++)
695             sc->chunk_offsets[i] = get_be32(pb);
696     else if (atom.type == MKTAG('c','o','6','4'))
697         for(i=0; i<entries; i++)
698             sc->chunk_offsets[i] = get_be64(pb);
699     else
700         return -1;
701
702     return 0;
703 }
704
705 /**
706  * Compute codec id for 'lpcm' tag.
707  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
708  */
709 static enum CodecID mov_get_lpcm_codec_id(int bps, int flags)
710 {
711     if (flags & 1) { // floating point
712         if (flags & 2) { // big endian
713             if      (bps == 32) return CODEC_ID_PCM_F32BE;
714             else if (bps == 64) return CODEC_ID_PCM_F64BE;
715         } else {
716             if      (bps == 32) return CODEC_ID_PCM_F32LE;
717             else if (bps == 64) return CODEC_ID_PCM_F64LE;
718         }
719     } else {
720         if (flags & 2) {
721             if      (bps == 8)
722                 // signed integer
723                 if (flags & 4)  return CODEC_ID_PCM_S8;
724                 else            return CODEC_ID_PCM_U8;
725             else if (bps == 16) return CODEC_ID_PCM_S16BE;
726             else if (bps == 24) return CODEC_ID_PCM_S24BE;
727             else if (bps == 32) return CODEC_ID_PCM_S32BE;
728         } else {
729             if      (bps == 8)
730                 if (flags & 4)  return CODEC_ID_PCM_S8;
731                 else            return CODEC_ID_PCM_U8;
732             else if (bps == 16) return CODEC_ID_PCM_S16LE;
733             else if (bps == 24) return CODEC_ID_PCM_S24LE;
734             else if (bps == 32) return CODEC_ID_PCM_S32LE;
735         }
736     }
737     return CODEC_ID_NONE;
738 }
739
740 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
741 {
742     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
743     MOVStreamContext *sc = st->priv_data;
744     int j, entries, pseudo_stream_id;
745
746     get_byte(pb); /* version */
747     get_be24(pb); /* flags */
748
749     entries = get_be32(pb);
750
751     for(pseudo_stream_id=0; pseudo_stream_id<entries; pseudo_stream_id++) {
752         //Parsing Sample description table
753         enum CodecID id;
754         int dref_id;
755         MOVAtom a = { 0, 0, 0 };
756         int64_t start_pos = url_ftell(pb);
757         int size = get_be32(pb); /* size */
758         uint32_t format = get_le32(pb); /* data format */
759
760         get_be32(pb); /* reserved */
761         get_be16(pb); /* reserved */
762         dref_id = get_be16(pb);
763
764         if (st->codec->codec_tag &&
765             st->codec->codec_tag != format &&
766             (c->fc->video_codec_id ? codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id
767                                    : st->codec->codec_tag != MKTAG('j','p','e','g'))
768            ){
769             /* Multiple fourcc, we skip JPEG. This is not correct, we should
770              * export it as a separate AVStream but this needs a few changes
771              * in the MOV demuxer, patch welcome. */
772             av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
773             url_fskip(pb, size - (url_ftell(pb) - start_pos));
774             continue;
775         }
776         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
777         sc->dref_id= dref_id;
778
779         st->codec->codec_tag = format;
780         id = codec_get_id(codec_movaudio_tags, format);
781         if (id<=0 && (format&0xFFFF) == 'm'+('s'<<8))
782             id = codec_get_id(codec_wav_tags, bswap_32(format)&0xFFFF);
783
784         if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) {
785             st->codec->codec_type = CODEC_TYPE_AUDIO;
786         } else if (st->codec->codec_type != CODEC_TYPE_AUDIO && /* do not overwrite codec type */
787                    format && format != MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */
788             id = codec_get_id(codec_movvideo_tags, format);
789             if (id <= 0)
790                 id = codec_get_id(codec_bmp_tags, format);
791             if (id > 0)
792                 st->codec->codec_type = CODEC_TYPE_VIDEO;
793             else if(st->codec->codec_type == CODEC_TYPE_DATA){
794                 id = codec_get_id(ff_codec_movsubtitle_tags, format);
795                 if(id > 0)
796                     st->codec->codec_type = CODEC_TYPE_SUBTITLE;
797             }
798         }
799
800         dprintf(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size,
801                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
802                 (format >> 24) & 0xff, st->codec->codec_type);
803
804         if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
805             uint8_t codec_name[32];
806             unsigned int color_depth;
807             int color_greyscale;
808
809             st->codec->codec_id = id;
810             get_be16(pb); /* version */
811             get_be16(pb); /* revision level */
812             get_be32(pb); /* vendor */
813             get_be32(pb); /* temporal quality */
814             get_be32(pb); /* spatial quality */
815
816             st->codec->width = get_be16(pb); /* width */
817             st->codec->height = get_be16(pb); /* height */
818
819             get_be32(pb); /* horiz resolution */
820             get_be32(pb); /* vert resolution */
821             get_be32(pb); /* data size, always 0 */
822             get_be16(pb); /* frames per samples */
823
824             get_buffer(pb, codec_name, 32); /* codec name, pascal string */
825             if (codec_name[0] <= 31) {
826                 memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]);
827                 st->codec->codec_name[codec_name[0]] = 0;
828             }
829
830             st->codec->bits_per_coded_sample = get_be16(pb); /* depth */
831             st->codec->color_table_id = get_be16(pb); /* colortable id */
832             dprintf(c->fc, "depth %d, ctab id %d\n",
833                    st->codec->bits_per_coded_sample, st->codec->color_table_id);
834             /* figure out the palette situation */
835             color_depth = st->codec->bits_per_coded_sample & 0x1F;
836             color_greyscale = st->codec->bits_per_coded_sample & 0x20;
837
838             /* if the depth is 2, 4, or 8 bpp, file is palettized */
839             if ((color_depth == 2) || (color_depth == 4) ||
840                 (color_depth == 8)) {
841                 /* for palette traversal */
842                 unsigned int color_start, color_count, color_end;
843                 unsigned char r, g, b;
844
845                 if (color_greyscale) {
846                     int color_index, color_dec;
847                     /* compute the greyscale palette */
848                     st->codec->bits_per_coded_sample = color_depth;
849                     color_count = 1 << color_depth;
850                     color_index = 255;
851                     color_dec = 256 / (color_count - 1);
852                     for (j = 0; j < color_count; j++) {
853                         r = g = b = color_index;
854                         c->palette_control.palette[j] =
855                             (r << 16) | (g << 8) | (b);
856                         color_index -= color_dec;
857                         if (color_index < 0)
858                             color_index = 0;
859                     }
860                 } else if (st->codec->color_table_id) {
861                     const uint8_t *color_table;
862                     /* if flag bit 3 is set, use the default palette */
863                     color_count = 1 << color_depth;
864                     if (color_depth == 2)
865                         color_table = ff_qt_default_palette_4;
866                     else if (color_depth == 4)
867                         color_table = ff_qt_default_palette_16;
868                     else
869                         color_table = ff_qt_default_palette_256;
870
871                     for (j = 0; j < color_count; j++) {
872                         r = color_table[j * 4 + 0];
873                         g = color_table[j * 4 + 1];
874                         b = color_table[j * 4 + 2];
875                         c->palette_control.palette[j] =
876                             (r << 16) | (g << 8) | (b);
877                     }
878                 } else {
879                     /* load the palette from the file */
880                     color_start = get_be32(pb);
881                     color_count = get_be16(pb);
882                     color_end = get_be16(pb);
883                     if ((color_start <= 255) &&
884                         (color_end <= 255)) {
885                         for (j = color_start; j <= color_end; j++) {
886                             /* each R, G, or B component is 16 bits;
887                              * only use the top 8 bits; skip alpha bytes
888                              * up front */
889                             get_byte(pb);
890                             get_byte(pb);
891                             r = get_byte(pb);
892                             get_byte(pb);
893                             g = get_byte(pb);
894                             get_byte(pb);
895                             b = get_byte(pb);
896                             get_byte(pb);
897                             c->palette_control.palette[j] =
898                                 (r << 16) | (g << 8) | (b);
899                         }
900                     }
901                 }
902                 st->codec->palctrl = &c->palette_control;
903                 st->codec->palctrl->palette_changed = 1;
904             } else
905                 st->codec->palctrl = NULL;
906         } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
907             int bits_per_sample, flags;
908             uint16_t version = get_be16(pb);
909
910             st->codec->codec_id = id;
911             get_be16(pb); /* revision level */
912             get_be32(pb); /* vendor */
913
914             st->codec->channels = get_be16(pb);             /* channel count */
915             dprintf(c->fc, "audio channels %d\n", st->codec->channels);
916             st->codec->bits_per_coded_sample = get_be16(pb);      /* sample size */
917
918             sc->audio_cid = get_be16(pb);
919             get_be16(pb); /* packet size = 0 */
920
921             st->codec->sample_rate = ((get_be32(pb) >> 16));
922
923             //Read QT version 1 fields. In version 0 these do not exist.
924             dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom);
925             if(!c->isom) {
926                 if(version==1) {
927                     sc->samples_per_frame = get_be32(pb);
928                     get_be32(pb); /* bytes per packet */
929                     sc->bytes_per_frame = get_be32(pb);
930                     get_be32(pb); /* bytes per sample */
931                 } else if(version==2) {
932                     get_be32(pb); /* sizeof struct only */
933                     st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */
934                     st->codec->channels = get_be32(pb);
935                     get_be32(pb); /* always 0x7F000000 */
936                     st->codec->bits_per_coded_sample = get_be32(pb); /* bits per channel if sound is uncompressed */
937                     flags = get_be32(pb); /* lcpm format specific flag */
938                     sc->bytes_per_frame = get_be32(pb); /* bytes per audio packet if constant */
939                     sc->samples_per_frame = get_be32(pb); /* lpcm frames per audio packet if constant */
940                     if (format == MKTAG('l','p','c','m'))
941                         st->codec->codec_id = mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags);
942                 }
943             }
944
945             switch (st->codec->codec_id) {
946             case CODEC_ID_PCM_S8:
947             case CODEC_ID_PCM_U8:
948                 if (st->codec->bits_per_coded_sample == 16)
949                     st->codec->codec_id = CODEC_ID_PCM_S16BE;
950                 break;
951             case CODEC_ID_PCM_S16LE:
952             case CODEC_ID_PCM_S16BE:
953                 if (st->codec->bits_per_coded_sample == 8)
954                     st->codec->codec_id = CODEC_ID_PCM_S8;
955                 else if (st->codec->bits_per_coded_sample == 24)
956                     st->codec->codec_id =
957                         st->codec->codec_id == CODEC_ID_PCM_S16BE ?
958                         CODEC_ID_PCM_S24BE : CODEC_ID_PCM_S24LE;
959                 break;
960             /* set values for old format before stsd version 1 appeared */
961             case CODEC_ID_MACE3:
962                 sc->samples_per_frame = 6;
963                 sc->bytes_per_frame = 2*st->codec->channels;
964                 break;
965             case CODEC_ID_MACE6:
966                 sc->samples_per_frame = 6;
967                 sc->bytes_per_frame = 1*st->codec->channels;
968                 break;
969             case CODEC_ID_ADPCM_IMA_QT:
970                 sc->samples_per_frame = 64;
971                 sc->bytes_per_frame = 34*st->codec->channels;
972                 break;
973             case CODEC_ID_GSM:
974                 sc->samples_per_frame = 160;
975                 sc->bytes_per_frame = 33;
976                 break;
977             default:
978                 break;
979             }
980
981             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
982             if (bits_per_sample) {
983                 st->codec->bits_per_coded_sample = bits_per_sample;
984                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
985             }
986         } else if(st->codec->codec_type==CODEC_TYPE_SUBTITLE){
987             // ttxt stsd contains display flags, justification, background
988             // color, fonts, and default styles, so fake an atom to read it
989             MOVAtom fake_atom = { .size = size - (url_ftell(pb) - start_pos) };
990             mov_read_glbl(c, pb, fake_atom);
991             st->codec->codec_id= id;
992             st->codec->width = sc->width;
993             st->codec->height = sc->height;
994         } else {
995             /* other codec type, just skip (rtp, mp4s, tmcd ...) */
996             url_fskip(pb, size - (url_ftell(pb) - start_pos));
997         }
998         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
999         a.size = size - (url_ftell(pb) - start_pos);
1000         if (a.size > 8) {
1001             if (mov_read_default(c, pb, a) < 0)
1002                 return -1;
1003         } else if (a.size > 0)
1004             url_fskip(pb, a.size);
1005     }
1006
1007     if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
1008         st->codec->sample_rate= sc->time_scale;
1009
1010     /* special codec parameters handling */
1011     switch (st->codec->codec_id) {
1012 #if CONFIG_DV_DEMUXER
1013     case CODEC_ID_DVAUDIO:
1014         c->dv_fctx = avformat_alloc_context();
1015         c->dv_demux = dv_init_demux(c->dv_fctx);
1016         if (!c->dv_demux) {
1017             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1018             return -1;
1019         }
1020         sc->dv_audio_container = 1;
1021         st->codec->codec_id = CODEC_ID_PCM_S16LE;
1022         break;
1023 #endif
1024     /* no ifdef since parameters are always those */
1025     case CODEC_ID_QCELP:
1026         st->codec->frame_size= 160;
1027         st->codec->channels= 1; /* really needed */
1028         break;
1029     case CODEC_ID_AMR_NB:
1030     case CODEC_ID_AMR_WB:
1031         st->codec->frame_size= sc->samples_per_frame;
1032         st->codec->channels= 1; /* really needed */
1033         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1034         if (st->codec->codec_id == CODEC_ID_AMR_NB)
1035             st->codec->sample_rate = 8000;
1036         else if (st->codec->codec_id == CODEC_ID_AMR_WB)
1037             st->codec->sample_rate = 16000;
1038         break;
1039     case CODEC_ID_MP2:
1040     case CODEC_ID_MP3:
1041         st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
1042         st->need_parsing = AVSTREAM_PARSE_FULL;
1043         break;
1044     case CODEC_ID_GSM:
1045     case CODEC_ID_ADPCM_MS:
1046     case CODEC_ID_ADPCM_IMA_WAV:
1047         st->codec->block_align = sc->bytes_per_frame;
1048         break;
1049     case CODEC_ID_ALAC:
1050         if (st->codec->extradata_size == 36) {
1051             st->codec->frame_size = AV_RB32(st->codec->extradata+12);
1052             st->codec->channels   = AV_RB8 (st->codec->extradata+21);
1053         }
1054         break;
1055     default:
1056         break;
1057     }
1058
1059     return 0;
1060 }
1061
1062 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1063 {
1064     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1065     MOVStreamContext *sc = st->priv_data;
1066     unsigned int i, entries;
1067
1068     get_byte(pb); /* version */
1069     get_be24(pb); /* flags */
1070
1071     entries = get_be32(pb);
1072
1073     if(entries >= UINT_MAX / sizeof(*sc->stsc_data))
1074         return -1;
1075
1076     dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1077
1078     sc->stsc_count = entries;
1079     sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data));
1080     if (!sc->stsc_data)
1081         return -1;
1082     for(i=0; i<entries; i++) {
1083         sc->stsc_data[i].first = get_be32(pb);
1084         sc->stsc_data[i].count = get_be32(pb);
1085         sc->stsc_data[i].id = get_be32(pb);
1086     }
1087     return 0;
1088 }
1089
1090 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1091 {
1092     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1093     MOVStreamContext *sc = st->priv_data;
1094     unsigned int i, entries;
1095
1096     get_byte(pb); /* version */
1097     get_be24(pb); /* flags */
1098
1099     entries = get_be32(pb);
1100
1101     if(entries >= UINT_MAX / sizeof(int))
1102         return -1;
1103
1104     sc->keyframe_count = entries;
1105
1106     dprintf(c->fc, "keyframe_count = %d\n", sc->keyframe_count);
1107
1108     sc->keyframes = av_malloc(entries * sizeof(int));
1109     if (!sc->keyframes)
1110         return -1;
1111     for(i=0; i<entries; i++) {
1112         sc->keyframes[i] = get_be32(pb);
1113         //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1114     }
1115     return 0;
1116 }
1117
1118 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1119 {
1120     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1121     MOVStreamContext *sc = st->priv_data;
1122     unsigned int i, entries, sample_size;
1123
1124     get_byte(pb); /* version */
1125     get_be24(pb); /* flags */
1126
1127     sample_size = get_be32(pb);
1128     if (!sc->sample_size) /* do not overwrite value computed in stsd */
1129         sc->sample_size = sample_size;
1130     entries = get_be32(pb);
1131     if(entries >= UINT_MAX / sizeof(int))
1132         return -1;
1133
1134     sc->sample_count = entries;
1135     if (sample_size)
1136         return 0;
1137
1138     dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, sc->sample_count);
1139
1140     sc->sample_sizes = av_malloc(entries * sizeof(int));
1141     if (!sc->sample_sizes)
1142         return -1;
1143     for(i=0; i<entries; i++)
1144         sc->sample_sizes[i] = get_be32(pb);
1145     return 0;
1146 }
1147
1148 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1149 {
1150     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1151     MOVStreamContext *sc = st->priv_data;
1152     unsigned int i, entries;
1153     int64_t duration=0;
1154     int64_t total_sample_count=0;
1155
1156     get_byte(pb); /* version */
1157     get_be24(pb); /* flags */
1158     entries = get_be32(pb);
1159     if(entries >= UINT_MAX / sizeof(*sc->stts_data))
1160         return -1;
1161
1162     sc->stts_count = entries;
1163     sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
1164     if (!sc->stts_data)
1165         return -1;
1166     dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
1167
1168     for(i=0; i<entries; i++) {
1169         int sample_duration;
1170         int sample_count;
1171
1172         sample_count=get_be32(pb);
1173         sample_duration = get_be32(pb);
1174         sc->stts_data[i].count= sample_count;
1175         sc->stts_data[i].duration= sample_duration;
1176
1177         sc->time_rate= av_gcd(sc->time_rate, sample_duration);
1178
1179         dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
1180
1181         duration+=(int64_t)sample_duration*sample_count;
1182         total_sample_count+=sample_count;
1183     }
1184
1185     st->nb_frames= total_sample_count;
1186     if(duration)
1187         st->duration= duration;
1188     return 0;
1189 }
1190
1191 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1192 {
1193     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1194     MOVStreamContext *sc = st->priv_data;
1195     unsigned int i, entries;
1196
1197     get_byte(pb); /* version */
1198     get_be24(pb); /* flags */
1199     entries = get_be32(pb);
1200     if(entries >= UINT_MAX / sizeof(*sc->ctts_data))
1201         return -1;
1202
1203     sc->ctts_count = entries;
1204     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
1205     if (!sc->ctts_data)
1206         return -1;
1207     dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1208
1209     for(i=0; i<entries; i++) {
1210         int count    =get_be32(pb);
1211         int duration =get_be32(pb);
1212
1213         if (duration < 0) {
1214             sc->wrong_dts = 1;
1215             st->codec->has_b_frames = 1;
1216         }
1217         sc->ctts_data[i].count   = count;
1218         sc->ctts_data[i].duration= duration;
1219
1220         sc->time_rate= av_gcd(sc->time_rate, FFABS(duration));
1221     }
1222     return 0;
1223 }
1224
1225 static void mov_build_index(MOVContext *mov, AVStream *st)
1226 {
1227     MOVStreamContext *sc = st->priv_data;
1228     int64_t current_offset;
1229     int64_t current_dts = 0;
1230     unsigned int stts_index = 0;
1231     unsigned int stsc_index = 0;
1232     unsigned int stss_index = 0;
1233     unsigned int i, j;
1234
1235     /* adjust first dts according to edit list */
1236     if (sc->time_offset) {
1237         assert(sc->time_offset % sc->time_rate == 0);
1238         current_dts = - (sc->time_offset / sc->time_rate);
1239     }
1240
1241     /* only use old uncompressed audio chunk demuxing when stts specifies it */
1242     if (!(st->codec->codec_type == CODEC_TYPE_AUDIO &&
1243           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
1244         unsigned int current_sample = 0;
1245         unsigned int stts_sample = 0;
1246         unsigned int keyframe, sample_size;
1247         unsigned int distance = 0;
1248         int key_off = sc->keyframes && sc->keyframes[0] == 1;
1249
1250         st->nb_frames = sc->sample_count;
1251         for (i = 0; i < sc->chunk_count; i++) {
1252             current_offset = sc->chunk_offsets[i];
1253             if (stsc_index + 1 < sc->stsc_count &&
1254                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1255                 stsc_index++;
1256             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
1257                 if (current_sample >= sc->sample_count) {
1258                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1259                     goto out;
1260                 }
1261                 keyframe = !sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index];
1262                 if (keyframe) {
1263                     distance = 0;
1264                     if (stss_index + 1 < sc->keyframe_count)
1265                         stss_index++;
1266                 }
1267                 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample];
1268                 if(sc->pseudo_stream_id == -1 ||
1269                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
1270                     av_add_index_entry(st, current_offset, current_dts, sample_size, distance,
1271                                     keyframe ? AVINDEX_KEYFRAME : 0);
1272                     dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1273                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
1274                             current_offset, current_dts, sample_size, distance, keyframe);
1275                 }
1276                 current_offset += sample_size;
1277                 assert(sc->stts_data[stts_index].duration % sc->time_rate == 0);
1278                 current_dts += sc->stts_data[stts_index].duration / sc->time_rate;
1279                 distance++;
1280                 stts_sample++;
1281                 current_sample++;
1282                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1283                     stts_sample = 0;
1284                     stts_index++;
1285                 }
1286             }
1287         }
1288     } else { /* read whole chunk */
1289         unsigned int chunk_samples, chunk_size, chunk_duration;
1290         unsigned int frames = 1;
1291         for (i = 0; i < sc->chunk_count; i++) {
1292             current_offset = sc->chunk_offsets[i];
1293             if (stsc_index + 1 < sc->stsc_count &&
1294                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1295                 stsc_index++;
1296             chunk_samples = sc->stsc_data[stsc_index].count;
1297             /* get chunk size, beware of alaw/ulaw/mace */
1298             if (sc->samples_per_frame > 0 &&
1299                 (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0)) {
1300                 if (sc->samples_per_frame < 160)
1301                     chunk_size = chunk_samples * sc->bytes_per_frame / sc->samples_per_frame;
1302                 else {
1303                     chunk_size = sc->bytes_per_frame;
1304                     frames = chunk_samples / sc->samples_per_frame;
1305                     chunk_samples = sc->samples_per_frame;
1306                 }
1307             } else
1308                 chunk_size = chunk_samples * sc->sample_size;
1309             for (j = 0; j < frames; j++) {
1310                 av_add_index_entry(st, current_offset, current_dts, chunk_size, 0, AVINDEX_KEYFRAME);
1311                 /* get chunk duration */
1312                 chunk_duration = 0;
1313                 while (chunk_samples > 0) {
1314                     if (chunk_samples < sc->stts_data[stts_index].count) {
1315                         chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1316                         sc->stts_data[stts_index].count -= chunk_samples;
1317                         break;
1318                     } else {
1319                         chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1320                         chunk_samples -= sc->stts_data[stts_index].count;
1321                         if (stts_index + 1 < sc->stts_count)
1322                             stts_index++;
1323                     }
1324                 }
1325                 current_offset += sc->bytes_per_frame;
1326                 dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
1327                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
1328                         chunk_size, chunk_duration);
1329                 assert(chunk_duration % sc->time_rate == 0);
1330                 current_dts += chunk_duration / sc->time_rate;
1331             }
1332         }
1333     }
1334  out:
1335     /* adjust sample count to avindex entries */
1336     sc->sample_count = st->nb_index_entries;
1337 }
1338
1339 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1340 {
1341     AVStream *st;
1342     MOVStreamContext *sc;
1343     int ret;
1344
1345     st = av_new_stream(c->fc, c->fc->nb_streams);
1346     if (!st) return AVERROR(ENOMEM);
1347     sc = av_mallocz(sizeof(MOVStreamContext));
1348     if (!sc) return AVERROR(ENOMEM);
1349
1350     st->priv_data = sc;
1351     st->codec->codec_type = CODEC_TYPE_DATA;
1352     sc->ffindex = st->index;
1353
1354     if ((ret = mov_read_default(c, pb, atom)) < 0)
1355         return ret;
1356
1357     /* sanity checks */
1358     if(sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
1359                            (!sc->sample_size && !sc->sample_count))){
1360         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
1361                st->index);
1362         sc->sample_count = 0; //ignore track
1363         return 0;
1364     }
1365     if(!sc->time_rate)
1366         sc->time_rate=1;
1367     if(!sc->time_scale)
1368         sc->time_scale= c->time_scale;
1369     av_set_pts_info(st, 64, sc->time_rate, sc->time_scale);
1370
1371     if (st->codec->codec_type == CODEC_TYPE_AUDIO &&
1372         !st->codec->frame_size && sc->stts_count == 1) {
1373         st->codec->frame_size = av_rescale(sc->stts_data[0].duration,
1374                                            st->codec->sample_rate, sc->time_scale);
1375         dprintf(c->fc, "frame size %d\n", st->codec->frame_size);
1376     }
1377
1378     if(st->duration != AV_NOPTS_VALUE){
1379         assert(st->duration % sc->time_rate == 0);
1380         st->duration /= sc->time_rate;
1381     }
1382
1383     mov_build_index(c, st);
1384
1385     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
1386         if (url_fopen(&sc->pb, sc->drefs[sc->dref_id-1].path, URL_RDONLY) < 0)
1387             av_log(c->fc, AV_LOG_ERROR, "stream %d, error opening file %s: %s\n",
1388                    st->index, sc->drefs[sc->dref_id-1].path, strerror(errno));
1389     } else
1390         sc->pb = c->fc->pb;
1391
1392     switch (st->codec->codec_id) {
1393 #if CONFIG_H261_DECODER
1394     case CODEC_ID_H261:
1395 #endif
1396 #if CONFIG_H263_DECODER
1397     case CODEC_ID_H263:
1398 #endif
1399 #if CONFIG_MPEG4_DECODER
1400     case CODEC_ID_MPEG4:
1401 #endif
1402         st->codec->width= 0; /* let decoder init width/height */
1403         st->codec->height= 0;
1404         break;
1405     }
1406
1407     /* Do not need those anymore. */
1408     av_freep(&sc->chunk_offsets);
1409     av_freep(&sc->stsc_data);
1410     av_freep(&sc->sample_sizes);
1411     av_freep(&sc->keyframes);
1412     av_freep(&sc->stts_data);
1413
1414     return 0;
1415 }
1416
1417 static int mov_read_ilst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1418 {
1419     int ret;
1420     c->itunes_metadata = 1;
1421     ret = mov_read_default(c, pb, atom);
1422     c->itunes_metadata = 0;
1423     return ret;
1424 }
1425
1426 static int mov_read_meta(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1427 {
1428     url_fskip(pb, 4); // version + flags
1429     atom.size -= 4;
1430     return mov_read_default(c, pb, atom);
1431 }
1432
1433 static int mov_read_trkn(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1434 {
1435     get_be32(pb); // type
1436     get_be32(pb); // unknown
1437     c->fc->track = get_be32(pb);
1438     dprintf(c->fc, "%.4s %d\n", (char*)&atom.type, c->fc->track);
1439     return 0;
1440 }
1441
1442 static int mov_read_udta_string(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1443 {
1444     char str[1024], key2[16], language[4] = {0};
1445     const char *key = NULL;
1446     uint16_t str_size;
1447
1448     if (c->itunes_metadata) {
1449         int data_size = get_be32(pb);
1450         int tag = get_le32(pb);
1451         if (tag == MKTAG('d','a','t','a')) {
1452             get_be32(pb); // type
1453             get_be32(pb); // unknown
1454             str_size = data_size - 16;
1455             atom.size -= 16;
1456         } else return 0;
1457     } else {
1458         str_size = get_be16(pb); // string length
1459         ff_mov_lang_to_iso639(get_be16(pb), language);
1460         atom.size -= 4;
1461     }
1462     switch (atom.type) {
1463     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
1464     case MKTAG(0xa9,'A','R','T'):
1465     case MKTAG(0xa9,'w','r','t'): key = "author";    break;
1466     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
1467     case MKTAG(0xa9,'c','m','t'):
1468     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
1469     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
1470     }
1471     if (!key)
1472         return 0;
1473     if (atom.size < 0)
1474         return -1;
1475
1476     str_size = FFMIN3(sizeof(str)-1, str_size, atom.size);
1477     get_buffer(pb, str, str_size);
1478     str[str_size] = 0;
1479     av_metadata_set(&c->fc->metadata, key, str);
1480     if (*language && strcmp(language, "und")) {
1481         snprintf(key2, sizeof(key2), "%s-%s", key, language);
1482         av_metadata_set(&c->fc->metadata, key2, str);
1483     }
1484     dprintf(c->fc, "%.4s %s %d %lld\n", (char*)&atom.type, str, str_size, atom.size);
1485     return 0;
1486 }
1487
1488 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1489 {
1490     int i;
1491     int width;
1492     int height;
1493     int64_t disp_transform[2];
1494     int display_matrix[3][2];
1495     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1496     MOVStreamContext *sc = st->priv_data;
1497     int version = get_byte(pb);
1498
1499     get_be24(pb); /* flags */
1500     /*
1501     MOV_TRACK_ENABLED 0x0001
1502     MOV_TRACK_IN_MOVIE 0x0002
1503     MOV_TRACK_IN_PREVIEW 0x0004
1504     MOV_TRACK_IN_POSTER 0x0008
1505     */
1506
1507     if (version == 1) {
1508         get_be64(pb);
1509         get_be64(pb);
1510     } else {
1511         get_be32(pb); /* creation time */
1512         get_be32(pb); /* modification time */
1513     }
1514     st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
1515     get_be32(pb); /* reserved */
1516
1517     /* highlevel (considering edits) duration in movie timebase */
1518     (version == 1) ? get_be64(pb) : get_be32(pb);
1519     get_be32(pb); /* reserved */
1520     get_be32(pb); /* reserved */
1521
1522     get_be16(pb); /* layer */
1523     get_be16(pb); /* alternate group */
1524     get_be16(pb); /* volume */
1525     get_be16(pb); /* reserved */
1526
1527     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
1528     // they're kept in fixed point format through all calculations
1529     // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
1530     for (i = 0; i < 3; i++) {
1531         display_matrix[i][0] = get_be32(pb);   // 16.16 fixed point
1532         display_matrix[i][1] = get_be32(pb);   // 16.16 fixed point
1533         get_be32(pb);           // 2.30 fixed point (not used)
1534     }
1535
1536     width = get_be32(pb);       // 16.16 fixed point track width
1537     height = get_be32(pb);      // 16.16 fixed point track height
1538     sc->width = width >> 16;
1539     sc->height = height >> 16;
1540
1541     //transform the display width/height according to the matrix
1542     // skip this if the display matrix is the default identity matrix
1543     // to keep the same scale, use [width height 1<<16]
1544     if (width && height &&
1545         (display_matrix[0][0] != 65536 || display_matrix[0][1]           ||
1546         display_matrix[1][0]           || display_matrix[1][1] != 65536  ||
1547         display_matrix[2][0]           || display_matrix[2][1])) {
1548         for (i = 0; i < 2; i++)
1549             disp_transform[i] =
1550                 (int64_t)  width  * display_matrix[0][i] +
1551                 (int64_t)  height * display_matrix[1][i] +
1552                 ((int64_t) display_matrix[2][i] << 16);
1553
1554         //sample aspect ratio is new width/height divided by old width/height
1555         st->sample_aspect_ratio = av_d2q(
1556             ((double) disp_transform[0] * height) /
1557             ((double) disp_transform[1] * width), INT_MAX);
1558     }
1559     return 0;
1560 }
1561
1562 static int mov_read_tfhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1563 {
1564     MOVFragment *frag = &c->fragment;
1565     MOVTrackExt *trex = NULL;
1566     int flags, track_id, i;
1567
1568     get_byte(pb); /* version */
1569     flags = get_be24(pb);
1570
1571     track_id = get_be32(pb);
1572     if (!track_id || track_id > c->fc->nb_streams)
1573         return -1;
1574     frag->track_id = track_id;
1575     for (i = 0; i < c->trex_count; i++)
1576         if (c->trex_data[i].track_id == frag->track_id) {
1577             trex = &c->trex_data[i];
1578             break;
1579         }
1580     if (!trex) {
1581         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
1582         return -1;
1583     }
1584
1585     if (flags & 0x01) frag->base_data_offset = get_be64(pb);
1586     else              frag->base_data_offset = frag->moof_offset;
1587     if (flags & 0x02) frag->stsd_id          = get_be32(pb);
1588     else              frag->stsd_id          = trex->stsd_id;
1589
1590     frag->duration = flags & 0x08 ? get_be32(pb) : trex->duration;
1591     frag->size     = flags & 0x10 ? get_be32(pb) : trex->size;
1592     frag->flags    = flags & 0x20 ? get_be32(pb) : trex->flags;
1593     dprintf(c->fc, "frag flags 0x%x\n", frag->flags);
1594     return 0;
1595 }
1596
1597 static int mov_read_trex(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1598 {
1599     MOVTrackExt *trex;
1600
1601     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
1602         return -1;
1603     c->trex_data = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data));
1604     if (!c->trex_data)
1605         return AVERROR(ENOMEM);
1606     trex = &c->trex_data[c->trex_count++];
1607     get_byte(pb); /* version */
1608     get_be24(pb); /* flags */
1609     trex->track_id = get_be32(pb);
1610     trex->stsd_id  = get_be32(pb);
1611     trex->duration = get_be32(pb);
1612     trex->size     = get_be32(pb);
1613     trex->flags    = get_be32(pb);
1614     return 0;
1615 }
1616
1617 static int mov_read_trun(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1618 {
1619     MOVFragment *frag = &c->fragment;
1620     AVStream *st;
1621     MOVStreamContext *sc;
1622     uint64_t offset;
1623     int64_t dts;
1624     int data_offset = 0;
1625     unsigned entries, first_sample_flags = frag->flags;
1626     int flags, distance, i;
1627
1628     if (!frag->track_id || frag->track_id > c->fc->nb_streams)
1629         return -1;
1630     st = c->fc->streams[frag->track_id-1];
1631     sc = st->priv_data;
1632     if (sc->pseudo_stream_id+1 != frag->stsd_id)
1633         return 0;
1634     get_byte(pb); /* version */
1635     flags = get_be24(pb);
1636     entries = get_be32(pb);
1637     dprintf(c->fc, "flags 0x%x entries %d\n", flags, entries);
1638     if (flags & 0x001) data_offset        = get_be32(pb);
1639     if (flags & 0x004) first_sample_flags = get_be32(pb);
1640     if (flags & 0x800) {
1641         if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
1642             return -1;
1643         sc->ctts_data = av_realloc(sc->ctts_data,
1644                                    (entries+sc->ctts_count)*sizeof(*sc->ctts_data));
1645         if (!sc->ctts_data)
1646             return AVERROR(ENOMEM);
1647     }
1648     dts = st->duration;
1649     offset = frag->base_data_offset + data_offset;
1650     distance = 0;
1651     dprintf(c->fc, "first sample flags 0x%x\n", first_sample_flags);
1652     for (i = 0; i < entries; i++) {
1653         unsigned sample_size = frag->size;
1654         int sample_flags = i ? frag->flags : first_sample_flags;
1655         unsigned sample_duration = frag->duration;
1656         int keyframe;
1657
1658         if (flags & 0x100) sample_duration = get_be32(pb);
1659         if (flags & 0x200) sample_size     = get_be32(pb);
1660         if (flags & 0x400) sample_flags    = get_be32(pb);
1661         if (flags & 0x800) {
1662             sc->ctts_data[sc->ctts_count].count = 1;
1663             sc->ctts_data[sc->ctts_count].duration = get_be32(pb);
1664             sc->ctts_count++;
1665         }
1666         if ((keyframe = st->codec->codec_type == CODEC_TYPE_AUDIO ||
1667              (flags & 0x004 && !i && !sample_flags) || sample_flags & 0x2000000))
1668             distance = 0;
1669         av_add_index_entry(st, offset, dts, sample_size, distance,
1670                            keyframe ? AVINDEX_KEYFRAME : 0);
1671         dprintf(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1672                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
1673                 offset, dts, sample_size, distance, keyframe);
1674         distance++;
1675         assert(sample_duration % sc->time_rate == 0);
1676         dts += sample_duration / sc->time_rate;
1677         offset += sample_size;
1678     }
1679     frag->moof_offset = offset;
1680     sc->sample_count = st->nb_index_entries;
1681     st->duration = dts;
1682     return 0;
1683 }
1684
1685 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
1686 /* like the files created with Adobe Premiere 5.0, for samples see */
1687 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
1688 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1689 {
1690     int err;
1691
1692     if (atom.size < 8)
1693         return 0; /* continue */
1694     if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
1695         url_fskip(pb, atom.size - 4);
1696         return 0;
1697     }
1698     atom.type = get_le32(pb);
1699     atom.offset += 8;
1700     atom.size -= 8;
1701     if (atom.type != MKTAG('m','d','a','t')) {
1702         url_fskip(pb, atom.size);
1703         return 0;
1704     }
1705     err = mov_read_mdat(c, pb, atom);
1706     return err;
1707 }
1708
1709 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1710 {
1711 #if CONFIG_ZLIB
1712     ByteIOContext ctx;
1713     uint8_t *cmov_data;
1714     uint8_t *moov_data; /* uncompressed data */
1715     long cmov_len, moov_len;
1716     int ret = -1;
1717
1718     get_be32(pb); /* dcom atom */
1719     if (get_le32(pb) != MKTAG('d','c','o','m'))
1720         return -1;
1721     if (get_le32(pb) != MKTAG('z','l','i','b')) {
1722         av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !");
1723         return -1;
1724     }
1725     get_be32(pb); /* cmvd atom */
1726     if (get_le32(pb) != MKTAG('c','m','v','d'))
1727         return -1;
1728     moov_len = get_be32(pb); /* uncompressed size */
1729     cmov_len = atom.size - 6 * 4;
1730
1731     cmov_data = av_malloc(cmov_len);
1732     if (!cmov_data)
1733         return -1;
1734     moov_data = av_malloc(moov_len);
1735     if (!moov_data) {
1736         av_free(cmov_data);
1737         return -1;
1738     }
1739     get_buffer(pb, cmov_data, cmov_len);
1740     if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
1741         goto free_and_return;
1742     if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
1743         goto free_and_return;
1744     atom.type = MKTAG('m','o','o','v');
1745     atom.offset = 0;
1746     atom.size = moov_len;
1747 #ifdef DEBUG
1748 //    { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
1749 #endif
1750     ret = mov_read_default(c, &ctx, atom);
1751 free_and_return:
1752     av_free(moov_data);
1753     av_free(cmov_data);
1754     return ret;
1755 #else
1756     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
1757     return -1;
1758 #endif
1759 }
1760
1761 /* edit list atom */
1762 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1763 {
1764     MOVStreamContext *sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
1765     int i, edit_count;
1766
1767     get_byte(pb); /* version */
1768     get_be24(pb); /* flags */
1769     edit_count = get_be32(pb); /* entries */
1770
1771     for(i=0; i<edit_count; i++){
1772         int time;
1773         get_be32(pb); /* Track duration */
1774         time = get_be32(pb); /* Media time */
1775         get_be32(pb); /* Media rate */
1776         if (i == 0 && time != -1) {
1777             sc->time_offset = time;
1778             sc->time_rate = av_gcd(sc->time_rate, time);
1779         }
1780     }
1781
1782     if(edit_count > 1)
1783         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
1784                "a/v desync might occur, patch welcome\n");
1785
1786     dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
1787     return 0;
1788 }
1789
1790 static const MOVParseTableEntry mov_default_parse_table[] = {
1791 { MKTAG('a','v','s','s'), mov_read_extradata },
1792 { MKTAG('c','o','6','4'), mov_read_stco },
1793 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
1794 { MKTAG('d','i','n','f'), mov_read_default },
1795 { MKTAG('d','r','e','f'), mov_read_dref },
1796 { MKTAG('e','d','t','s'), mov_read_default },
1797 { MKTAG('e','l','s','t'), mov_read_elst },
1798 { MKTAG('e','n','d','a'), mov_read_enda },
1799 { MKTAG('f','i','e','l'), mov_read_extradata },
1800 { MKTAG('f','t','y','p'), mov_read_ftyp },
1801 { MKTAG('g','l','b','l'), mov_read_glbl },
1802 { MKTAG('h','d','l','r'), mov_read_hdlr },
1803 { MKTAG('i','l','s','t'), mov_read_ilst },
1804 { MKTAG('j','p','2','h'), mov_read_extradata },
1805 { MKTAG('m','d','a','t'), mov_read_mdat },
1806 { MKTAG('m','d','h','d'), mov_read_mdhd },
1807 { MKTAG('m','d','i','a'), mov_read_default },
1808 { MKTAG('m','e','t','a'), mov_read_meta },
1809 { MKTAG('m','i','n','f'), mov_read_default },
1810 { MKTAG('m','o','o','f'), mov_read_moof },
1811 { MKTAG('m','o','o','v'), mov_read_moov },
1812 { MKTAG('m','v','e','x'), mov_read_default },
1813 { MKTAG('m','v','h','d'), mov_read_mvhd },
1814 { MKTAG('S','M','I',' '), mov_read_smi }, /* Sorenson extension ??? */
1815 { MKTAG('a','l','a','c'), mov_read_extradata }, /* alac specific atom */
1816 { MKTAG('a','v','c','C'), mov_read_glbl },
1817 { MKTAG('p','a','s','p'), mov_read_pasp },
1818 { MKTAG('s','t','b','l'), mov_read_default },
1819 { MKTAG('s','t','c','o'), mov_read_stco },
1820 { MKTAG('s','t','s','c'), mov_read_stsc },
1821 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
1822 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
1823 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
1824 { MKTAG('s','t','t','s'), mov_read_stts },
1825 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
1826 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
1827 { MKTAG('t','r','a','k'), mov_read_trak },
1828 { MKTAG('t','r','a','f'), mov_read_default },
1829 { MKTAG('t','r','e','x'), mov_read_trex },
1830 { MKTAG('t','r','k','n'), mov_read_trkn },
1831 { MKTAG('t','r','u','n'), mov_read_trun },
1832 { MKTAG('u','d','t','a'), mov_read_default },
1833 { MKTAG('w','a','v','e'), mov_read_wave },
1834 { MKTAG('e','s','d','s'), mov_read_esds },
1835 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
1836 { MKTAG('c','m','o','v'), mov_read_cmov },
1837 { MKTAG(0xa9,'n','a','m'), mov_read_udta_string },
1838 { MKTAG(0xa9,'w','r','t'), mov_read_udta_string },
1839 { MKTAG(0xa9,'c','p','y'), mov_read_udta_string },
1840 { MKTAG(0xa9,'i','n','f'), mov_read_udta_string },
1841 { MKTAG(0xa9,'i','n','f'), mov_read_udta_string },
1842 { MKTAG(0xa9,'A','R','T'), mov_read_udta_string },
1843 { MKTAG(0xa9,'a','l','b'), mov_read_udta_string },
1844 { MKTAG(0xa9,'c','m','t'), mov_read_udta_string },
1845 { 0, NULL }
1846 };
1847
1848 static int mov_probe(AVProbeData *p)
1849 {
1850     unsigned int offset;
1851     uint32_t tag;
1852     int score = 0;
1853
1854     /* check file header */
1855     offset = 0;
1856     for(;;) {
1857         /* ignore invalid offset */
1858         if ((offset + 8) > (unsigned int)p->buf_size)
1859             return score;
1860         tag = AV_RL32(p->buf + offset + 4);
1861         switch(tag) {
1862         /* check for obvious tags */
1863         case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
1864         case MKTAG('m','o','o','v'):
1865         case MKTAG('m','d','a','t'):
1866         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
1867         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
1868         case MKTAG('f','t','y','p'):
1869             return AVPROBE_SCORE_MAX;
1870         /* those are more common words, so rate then a bit less */
1871         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
1872         case MKTAG('w','i','d','e'):
1873         case MKTAG('f','r','e','e'):
1874         case MKTAG('j','u','n','k'):
1875         case MKTAG('p','i','c','t'):
1876             return AVPROBE_SCORE_MAX - 5;
1877         case MKTAG(0x82,0x82,0x7f,0x7d):
1878         case MKTAG('s','k','i','p'):
1879         case MKTAG('u','u','i','d'):
1880         case MKTAG('p','r','f','l'):
1881             offset = AV_RB32(p->buf+offset) + offset;
1882             /* if we only find those cause probedata is too small at least rate them */
1883             score = AVPROBE_SCORE_MAX - 50;
1884             break;
1885         default:
1886             /* unrecognized tag */
1887             return score;
1888         }
1889     }
1890     return score;
1891 }
1892
1893 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
1894 {
1895     MOVContext *mov = s->priv_data;
1896     ByteIOContext *pb = s->pb;
1897     int err;
1898     MOVAtom atom = { 0, 0, 0 };
1899
1900     mov->fc = s;
1901     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
1902     if(!url_is_streamed(pb))
1903         atom.size = url_fsize(pb);
1904     else
1905         atom.size = INT64_MAX;
1906
1907     /* check MOV header */
1908     if ((err = mov_read_default(mov, pb, atom)) < 0) {
1909         av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
1910         return err;
1911     }
1912     if (!mov->found_moov) {
1913         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
1914         return -1;
1915     }
1916     dprintf(mov->fc, "on_parse_exit_offset=%lld\n", url_ftell(pb));
1917
1918     return 0;
1919 }
1920
1921 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
1922 {
1923     MOVContext *mov = s->priv_data;
1924     MOVStreamContext *sc = 0;
1925     AVIndexEntry *sample = 0;
1926     int64_t best_dts = INT64_MAX;
1927     int i;
1928  retry:
1929     for (i = 0; i < s->nb_streams; i++) {
1930         AVStream *st = s->streams[i];
1931         MOVStreamContext *msc = st->priv_data;
1932         if (st->discard != AVDISCARD_ALL && msc->pb && msc->current_sample < msc->sample_count) {
1933             AVIndexEntry *current_sample = &st->index_entries[msc->current_sample];
1934             int64_t dts = av_rescale(current_sample->timestamp * (int64_t)msc->time_rate,
1935                                      AV_TIME_BASE, msc->time_scale);
1936             dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
1937             if (!sample || (url_is_streamed(s->pb) && current_sample->pos < sample->pos) ||
1938                 (!url_is_streamed(s->pb) &&
1939                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
1940                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
1941                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
1942                 sample = current_sample;
1943                 best_dts = dts;
1944                 sc = msc;
1945             }
1946         }
1947     }
1948     if (!sample) {
1949         mov->found_mdat = 0;
1950         if (!url_is_streamed(s->pb) ||
1951             mov_read_default(mov, s->pb, (MOVAtom){ 0, 0, INT64_MAX }) < 0 ||
1952             url_feof(s->pb))
1953             return -1;
1954         dprintf(s, "read fragments, offset 0x%llx\n", url_ftell(s->pb));
1955         goto retry;
1956     }
1957     /* must be done just before reading, to avoid infinite loop on sample */
1958     sc->current_sample++;
1959     if (url_fseek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
1960         av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
1961                sc->ffindex, sample->pos);
1962         return -1;
1963     }
1964     av_get_packet(sc->pb, pkt, sample->size);
1965 #if CONFIG_DV_DEMUXER
1966     if (mov->dv_demux && sc->dv_audio_container) {
1967         dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
1968         av_free(pkt->data);
1969         pkt->size = 0;
1970         if (dv_get_packet(mov->dv_demux, pkt) < 0)
1971             return -1;
1972     }
1973 #endif
1974     pkt->stream_index = sc->ffindex;
1975     pkt->dts = sample->timestamp;
1976     if (sc->ctts_data) {
1977         assert(sc->ctts_data[sc->ctts_index].duration % sc->time_rate == 0);
1978         pkt->pts = pkt->dts + sc->ctts_data[sc->ctts_index].duration / sc->time_rate;
1979         /* update ctts context */
1980         sc->ctts_sample++;
1981         if (sc->ctts_index < sc->ctts_count &&
1982             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
1983             sc->ctts_index++;
1984             sc->ctts_sample = 0;
1985         }
1986         if (sc->wrong_dts)
1987             pkt->dts = AV_NOPTS_VALUE;
1988     } else {
1989         AVStream *st = s->streams[sc->ffindex];
1990         int64_t next_dts = (sc->current_sample < sc->sample_count) ?
1991             st->index_entries[sc->current_sample].timestamp : st->duration;
1992         pkt->duration = next_dts - pkt->dts;
1993         pkt->pts = pkt->dts;
1994     }
1995     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0;
1996     pkt->pos = sample->pos;
1997     dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
1998             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
1999     return 0;
2000 }
2001
2002 static int mov_seek_stream(AVStream *st, int64_t timestamp, int flags)
2003 {
2004     MOVStreamContext *sc = st->priv_data;
2005     int sample, time_sample;
2006     int i;
2007
2008     sample = av_index_search_timestamp(st, timestamp, flags);
2009     dprintf(st->codec, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
2010     if (sample < 0) /* not sure what to do */
2011         return -1;
2012     sc->current_sample = sample;
2013     dprintf(st->codec, "stream %d, found sample %d\n", st->index, sc->current_sample);
2014     /* adjust ctts index */
2015     if (sc->ctts_data) {
2016         time_sample = 0;
2017         for (i = 0; i < sc->ctts_count; i++) {
2018             int next = time_sample + sc->ctts_data[i].count;
2019             if (next > sc->current_sample) {
2020                 sc->ctts_index = i;
2021                 sc->ctts_sample = sc->current_sample - time_sample;
2022                 break;
2023             }
2024             time_sample = next;
2025         }
2026     }
2027     return sample;
2028 }
2029
2030 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
2031 {
2032     AVStream *st;
2033     int64_t seek_timestamp, timestamp;
2034     int sample;
2035     int i;
2036
2037     if (stream_index >= s->nb_streams)
2038         return -1;
2039     if (sample_time < 0)
2040         sample_time = 0;
2041
2042     st = s->streams[stream_index];
2043     sample = mov_seek_stream(st, sample_time, flags);
2044     if (sample < 0)
2045         return -1;
2046
2047     /* adjust seek timestamp to found sample timestamp */
2048     seek_timestamp = st->index_entries[sample].timestamp;
2049
2050     for (i = 0; i < s->nb_streams; i++) {
2051         st = s->streams[i];
2052         if (stream_index == i || st->discard == AVDISCARD_ALL)
2053             continue;
2054
2055         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
2056         mov_seek_stream(st, timestamp, flags);
2057     }
2058     return 0;
2059 }
2060
2061 static int mov_read_close(AVFormatContext *s)
2062 {
2063     int i, j;
2064     MOVContext *mov = s->priv_data;
2065     for(i=0; i<s->nb_streams; i++) {
2066         MOVStreamContext *sc = s->streams[i]->priv_data;
2067         av_freep(&sc->ctts_data);
2068         for (j=0; j<sc->drefs_count; j++)
2069             av_freep(&sc->drefs[j].path);
2070         av_freep(&sc->drefs);
2071         if (sc->pb && sc->pb != s->pb)
2072             url_fclose(sc->pb);
2073     }
2074     if(mov->dv_demux){
2075         for(i=0; i<mov->dv_fctx->nb_streams; i++){
2076             av_freep(&mov->dv_fctx->streams[i]->codec);
2077             av_freep(&mov->dv_fctx->streams[i]);
2078         }
2079         av_freep(&mov->dv_fctx);
2080         av_freep(&mov->dv_demux);
2081     }
2082     av_freep(&mov->trex_data);
2083     return 0;
2084 }
2085
2086 AVInputFormat mov_demuxer = {
2087     "mov,mp4,m4a,3gp,3g2,mj2",
2088     NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),
2089     sizeof(MOVContext),
2090     mov_probe,
2091     mov_read_header,
2092     mov_read_packet,
2093     mov_read_close,
2094     mov_read_seek,
2095 };