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