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