]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
Prefer cbp over cbp_table.
[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             get_be32(pb); /* horiz resolution */
929             get_be32(pb); /* vert resolution */
930             get_be32(pb); /* data size, always 0 */
931             get_be16(pb); /* frames per samples */
932
933             get_buffer(pb, codec_name, 32); /* codec name, pascal string */
934             if (codec_name[0] <= 31) {
935                 int i;
936                 int pos = 0;
937                 for (i = 0; i < codec_name[0] && pos < sizeof(st->codec->codec_name) - 3; i++) {
938                     uint8_t tmp;
939                     PUT_UTF8(codec_name[i+1], tmp, st->codec->codec_name[pos++] = tmp;)
940                 }
941                 st->codec->codec_name[pos] = 0;
942             }
943
944             st->codec->bits_per_coded_sample = get_be16(pb); /* depth */
945             st->codec->color_table_id = get_be16(pb); /* colortable id */
946             dprintf(c->fc, "depth %d, ctab id %d\n",
947                    st->codec->bits_per_coded_sample, st->codec->color_table_id);
948             /* figure out the palette situation */
949             color_depth = st->codec->bits_per_coded_sample & 0x1F;
950             color_greyscale = st->codec->bits_per_coded_sample & 0x20;
951
952             /* if the depth is 2, 4, or 8 bpp, file is palettized */
953             if ((color_depth == 2) || (color_depth == 4) ||
954                 (color_depth == 8)) {
955                 /* for palette traversal */
956                 unsigned int color_start, color_count, color_end;
957                 unsigned char r, g, b;
958
959                 st->codec->palctrl = av_malloc(sizeof(*st->codec->palctrl));
960                 if (color_greyscale) {
961                     int color_index, color_dec;
962                     /* compute the greyscale palette */
963                     st->codec->bits_per_coded_sample = color_depth;
964                     color_count = 1 << color_depth;
965                     color_index = 255;
966                     color_dec = 256 / (color_count - 1);
967                     for (j = 0; j < color_count; j++) {
968                         r = g = b = color_index;
969                         st->codec->palctrl->palette[j] =
970                             (r << 16) | (g << 8) | (b);
971                         color_index -= color_dec;
972                         if (color_index < 0)
973                             color_index = 0;
974                     }
975                 } else if (st->codec->color_table_id) {
976                     const uint8_t *color_table;
977                     /* if flag bit 3 is set, use the default palette */
978                     color_count = 1 << color_depth;
979                     if (color_depth == 2)
980                         color_table = ff_qt_default_palette_4;
981                     else if (color_depth == 4)
982                         color_table = ff_qt_default_palette_16;
983                     else
984                         color_table = ff_qt_default_palette_256;
985
986                     for (j = 0; j < color_count; j++) {
987                         r = color_table[j * 3 + 0];
988                         g = color_table[j * 3 + 1];
989                         b = color_table[j * 3 + 2];
990                         st->codec->palctrl->palette[j] =
991                             (r << 16) | (g << 8) | (b);
992                     }
993                 } else {
994                     /* load the palette from the file */
995                     color_start = get_be32(pb);
996                     color_count = get_be16(pb);
997                     color_end = get_be16(pb);
998                     if ((color_start <= 255) &&
999                         (color_end <= 255)) {
1000                         for (j = color_start; j <= color_end; j++) {
1001                             /* each R, G, or B component is 16 bits;
1002                              * only use the top 8 bits; skip alpha bytes
1003                              * up front */
1004                             get_byte(pb);
1005                             get_byte(pb);
1006                             r = get_byte(pb);
1007                             get_byte(pb);
1008                             g = get_byte(pb);
1009                             get_byte(pb);
1010                             b = get_byte(pb);
1011                             get_byte(pb);
1012                             st->codec->palctrl->palette[j] =
1013                                 (r << 16) | (g << 8) | (b);
1014                         }
1015                     }
1016                 }
1017                 st->codec->palctrl->palette_changed = 1;
1018             }
1019         } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
1020             int bits_per_sample, flags;
1021             uint16_t version = get_be16(pb);
1022
1023             st->codec->codec_id = id;
1024             get_be16(pb); /* revision level */
1025             get_be32(pb); /* vendor */
1026
1027             st->codec->channels = get_be16(pb);             /* channel count */
1028             dprintf(c->fc, "audio channels %d\n", st->codec->channels);
1029             st->codec->bits_per_coded_sample = get_be16(pb);      /* sample size */
1030
1031             sc->audio_cid = get_be16(pb);
1032             get_be16(pb); /* packet size = 0 */
1033
1034             st->codec->sample_rate = ((get_be32(pb) >> 16));
1035
1036             //Read QT version 1 fields. In version 0 these do not exist.
1037             dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom);
1038             if(!c->isom) {
1039                 if(version==1) {
1040                     sc->samples_per_frame = get_be32(pb);
1041                     get_be32(pb); /* bytes per packet */
1042                     sc->bytes_per_frame = get_be32(pb);
1043                     get_be32(pb); /* bytes per sample */
1044                 } else if(version==2) {
1045                     get_be32(pb); /* sizeof struct only */
1046                     st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */
1047                     st->codec->channels = get_be32(pb);
1048                     get_be32(pb); /* always 0x7F000000 */
1049                     st->codec->bits_per_coded_sample = get_be32(pb); /* bits per channel if sound is uncompressed */
1050                     flags = get_be32(pb); /* lpcm format specific flag */
1051                     sc->bytes_per_frame = get_be32(pb); /* bytes per audio packet if constant */
1052                     sc->samples_per_frame = get_be32(pb); /* lpcm frames per audio packet if constant */
1053                     if (format == MKTAG('l','p','c','m'))
1054                         st->codec->codec_id = ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags);
1055                 }
1056             }
1057
1058             switch (st->codec->codec_id) {
1059             case CODEC_ID_PCM_S8:
1060             case CODEC_ID_PCM_U8:
1061                 if (st->codec->bits_per_coded_sample == 16)
1062                     st->codec->codec_id = CODEC_ID_PCM_S16BE;
1063                 break;
1064             case CODEC_ID_PCM_S16LE:
1065             case CODEC_ID_PCM_S16BE:
1066                 if (st->codec->bits_per_coded_sample == 8)
1067                     st->codec->codec_id = CODEC_ID_PCM_S8;
1068                 else if (st->codec->bits_per_coded_sample == 24)
1069                     st->codec->codec_id =
1070                         st->codec->codec_id == CODEC_ID_PCM_S16BE ?
1071                         CODEC_ID_PCM_S24BE : CODEC_ID_PCM_S24LE;
1072                 break;
1073             /* set values for old format before stsd version 1 appeared */
1074             case CODEC_ID_MACE3:
1075                 sc->samples_per_frame = 6;
1076                 sc->bytes_per_frame = 2*st->codec->channels;
1077                 break;
1078             case CODEC_ID_MACE6:
1079                 sc->samples_per_frame = 6;
1080                 sc->bytes_per_frame = 1*st->codec->channels;
1081                 break;
1082             case CODEC_ID_ADPCM_IMA_QT:
1083                 sc->samples_per_frame = 64;
1084                 sc->bytes_per_frame = 34*st->codec->channels;
1085                 break;
1086             case CODEC_ID_GSM:
1087                 sc->samples_per_frame = 160;
1088                 sc->bytes_per_frame = 33;
1089                 break;
1090             default:
1091                 break;
1092             }
1093
1094             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1095             if (bits_per_sample) {
1096                 st->codec->bits_per_coded_sample = bits_per_sample;
1097                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1098             }
1099         } else if(st->codec->codec_type==CODEC_TYPE_SUBTITLE){
1100             // ttxt stsd contains display flags, justification, background
1101             // color, fonts, and default styles, so fake an atom to read it
1102             MOVAtom fake_atom = { .size = size - (url_ftell(pb) - start_pos) };
1103             if (format != AV_RL32("mp4s")) // mp4s contains a regular esds atom
1104                 mov_read_glbl(c, pb, fake_atom);
1105             st->codec->codec_id= id;
1106             st->codec->width = sc->width;
1107             st->codec->height = sc->height;
1108         } else {
1109             /* other codec type, just skip (rtp, mp4s, tmcd ...) */
1110             url_fskip(pb, size - (url_ftell(pb) - start_pos));
1111         }
1112         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
1113         a.size = size - (url_ftell(pb) - start_pos);
1114         if (a.size > 8) {
1115             if (mov_read_default(c, pb, a) < 0)
1116                 return -1;
1117         } else if (a.size > 0)
1118             url_fskip(pb, a.size);
1119     }
1120
1121     if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
1122         st->codec->sample_rate= sc->time_scale;
1123
1124     /* special codec parameters handling */
1125     switch (st->codec->codec_id) {
1126 #if CONFIG_DV_DEMUXER
1127     case CODEC_ID_DVAUDIO:
1128         c->dv_fctx = avformat_alloc_context();
1129         c->dv_demux = dv_init_demux(c->dv_fctx);
1130         if (!c->dv_demux) {
1131             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1132             return -1;
1133         }
1134         sc->dv_audio_container = 1;
1135         st->codec->codec_id = CODEC_ID_PCM_S16LE;
1136         break;
1137 #endif
1138     /* no ifdef since parameters are always those */
1139     case CODEC_ID_QCELP:
1140         // force sample rate for qcelp when not stored in mov
1141         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1142             st->codec->sample_rate = 8000;
1143         st->codec->frame_size= 160;
1144         st->codec->channels= 1; /* really needed */
1145         break;
1146     case CODEC_ID_AMR_NB:
1147     case CODEC_ID_AMR_WB:
1148         st->codec->frame_size= sc->samples_per_frame;
1149         st->codec->channels= 1; /* really needed */
1150         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1151         if (st->codec->codec_id == CODEC_ID_AMR_NB)
1152             st->codec->sample_rate = 8000;
1153         else if (st->codec->codec_id == CODEC_ID_AMR_WB)
1154             st->codec->sample_rate = 16000;
1155         break;
1156     case CODEC_ID_MP2:
1157     case CODEC_ID_MP3:
1158         st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
1159         st->need_parsing = AVSTREAM_PARSE_FULL;
1160         break;
1161     case CODEC_ID_GSM:
1162     case CODEC_ID_ADPCM_MS:
1163     case CODEC_ID_ADPCM_IMA_WAV:
1164         st->codec->block_align = sc->bytes_per_frame;
1165         break;
1166     case CODEC_ID_ALAC:
1167         if (st->codec->extradata_size == 36) {
1168             st->codec->frame_size = AV_RB32(st->codec->extradata+12);
1169             st->codec->channels   = AV_RB8 (st->codec->extradata+21);
1170         }
1171         break;
1172     default:
1173         break;
1174     }
1175
1176     return 0;
1177 }
1178
1179 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1180 {
1181     AVStream *st;
1182     MOVStreamContext *sc;
1183     unsigned int i, entries;
1184
1185     if (c->fc->nb_streams < 1)
1186         return 0;
1187     st = c->fc->streams[c->fc->nb_streams-1];
1188     sc = st->priv_data;
1189
1190     get_byte(pb); /* version */
1191     get_be24(pb); /* flags */
1192
1193     entries = get_be32(pb);
1194
1195     dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1196
1197     if(entries >= UINT_MAX / sizeof(*sc->stsc_data))
1198         return -1;
1199     sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data));
1200     if (!sc->stsc_data)
1201         return AVERROR(ENOMEM);
1202     sc->stsc_count = entries;
1203
1204     for(i=0; i<entries; i++) {
1205         sc->stsc_data[i].first = get_be32(pb);
1206         sc->stsc_data[i].count = get_be32(pb);
1207         sc->stsc_data[i].id = get_be32(pb);
1208     }
1209     return 0;
1210 }
1211
1212 static int mov_read_stps(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1213 {
1214     AVStream *st;
1215     MOVStreamContext *sc;
1216     unsigned i, entries;
1217
1218     if (c->fc->nb_streams < 1)
1219         return 0;
1220     st = c->fc->streams[c->fc->nb_streams-1];
1221     sc = st->priv_data;
1222
1223     get_be32(pb); // version + flags
1224
1225     entries = get_be32(pb);
1226     if (entries >= UINT_MAX / sizeof(*sc->stps_data))
1227         return -1;
1228     sc->stps_data = av_malloc(entries * sizeof(*sc->stps_data));
1229     if (!sc->stps_data)
1230         return AVERROR(ENOMEM);
1231     sc->stps_count = entries;
1232
1233     for (i = 0; i < entries; i++) {
1234         sc->stps_data[i] = get_be32(pb);
1235         //dprintf(c->fc, "stps %d\n", sc->stps_data[i]);
1236     }
1237
1238     return 0;
1239 }
1240
1241 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1242 {
1243     AVStream *st;
1244     MOVStreamContext *sc;
1245     unsigned int i, entries;
1246
1247     if (c->fc->nb_streams < 1)
1248         return 0;
1249     st = c->fc->streams[c->fc->nb_streams-1];
1250     sc = st->priv_data;
1251
1252     get_byte(pb); /* version */
1253     get_be24(pb); /* flags */
1254
1255     entries = get_be32(pb);
1256
1257     dprintf(c->fc, "keyframe_count = %d\n", entries);
1258
1259     if(entries >= UINT_MAX / sizeof(int))
1260         return -1;
1261     sc->keyframes = av_malloc(entries * sizeof(int));
1262     if (!sc->keyframes)
1263         return AVERROR(ENOMEM);
1264     sc->keyframe_count = entries;
1265
1266     for(i=0; i<entries; i++) {
1267         sc->keyframes[i] = get_be32(pb);
1268         //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1269     }
1270     return 0;
1271 }
1272
1273 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1274 {
1275     AVStream *st;
1276     MOVStreamContext *sc;
1277     unsigned int i, entries, sample_size, field_size, num_bytes;
1278     GetBitContext gb;
1279     unsigned char* buf;
1280
1281     if (c->fc->nb_streams < 1)
1282         return 0;
1283     st = c->fc->streams[c->fc->nb_streams-1];
1284     sc = st->priv_data;
1285
1286     get_byte(pb); /* version */
1287     get_be24(pb); /* flags */
1288
1289     if (atom.type == MKTAG('s','t','s','z')) {
1290         sample_size = get_be32(pb);
1291         if (!sc->sample_size) /* do not overwrite value computed in stsd */
1292             sc->sample_size = sample_size;
1293         field_size = 32;
1294     } else {
1295         sample_size = 0;
1296         get_be24(pb); /* reserved */
1297         field_size = get_byte(pb);
1298     }
1299     entries = get_be32(pb);
1300
1301     dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
1302
1303     sc->sample_count = entries;
1304     if (sample_size)
1305         return 0;
1306
1307     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
1308         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
1309         return -1;
1310     }
1311
1312     if (entries >= UINT_MAX / sizeof(int) || entries >= (UINT_MAX - 4) / field_size)
1313         return -1;
1314     sc->sample_sizes = av_malloc(entries * sizeof(int));
1315     if (!sc->sample_sizes)
1316         return AVERROR(ENOMEM);
1317
1318     num_bytes = (entries*field_size+4)>>3;
1319
1320     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
1321     if (!buf) {
1322         av_freep(&sc->sample_sizes);
1323         return AVERROR(ENOMEM);
1324     }
1325
1326     if (get_buffer(pb, buf, num_bytes) < num_bytes) {
1327         av_freep(&sc->sample_sizes);
1328         av_free(buf);
1329         return -1;
1330     }
1331
1332     init_get_bits(&gb, buf, 8*num_bytes);
1333
1334     for(i=0; i<entries; i++)
1335         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
1336
1337     av_free(buf);
1338     return 0;
1339 }
1340
1341 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1342 {
1343     AVStream *st;
1344     MOVStreamContext *sc;
1345     unsigned int i, entries;
1346     int64_t duration=0;
1347     int64_t total_sample_count=0;
1348
1349     if (c->fc->nb_streams < 1)
1350         return 0;
1351     st = c->fc->streams[c->fc->nb_streams-1];
1352     sc = st->priv_data;
1353
1354     get_byte(pb); /* version */
1355     get_be24(pb); /* flags */
1356     entries = get_be32(pb);
1357
1358     dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
1359
1360     if(entries >= UINT_MAX / sizeof(*sc->stts_data))
1361         return -1;
1362     sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
1363     if (!sc->stts_data)
1364         return AVERROR(ENOMEM);
1365     sc->stts_count = entries;
1366
1367     for(i=0; i<entries; i++) {
1368         int sample_duration;
1369         int sample_count;
1370
1371         sample_count=get_be32(pb);
1372         sample_duration = get_be32(pb);
1373         sc->stts_data[i].count= sample_count;
1374         sc->stts_data[i].duration= sample_duration;
1375
1376         dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
1377
1378         duration+=(int64_t)sample_duration*sample_count;
1379         total_sample_count+=sample_count;
1380     }
1381
1382     st->nb_frames= total_sample_count;
1383     if(duration)
1384         st->duration= duration;
1385     return 0;
1386 }
1387
1388 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1389 {
1390     AVStream *st;
1391     MOVStreamContext *sc;
1392     unsigned int i, entries;
1393
1394     if (c->fc->nb_streams < 1)
1395         return 0;
1396     st = c->fc->streams[c->fc->nb_streams-1];
1397     sc = st->priv_data;
1398
1399     get_byte(pb); /* version */
1400     get_be24(pb); /* flags */
1401     entries = get_be32(pb);
1402
1403     dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1404
1405     if(entries >= UINT_MAX / sizeof(*sc->ctts_data))
1406         return -1;
1407     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
1408     if (!sc->ctts_data)
1409         return AVERROR(ENOMEM);
1410     sc->ctts_count = entries;
1411
1412     for(i=0; i<entries; i++) {
1413         int count    =get_be32(pb);
1414         int duration =get_be32(pb);
1415
1416         sc->ctts_data[i].count   = count;
1417         sc->ctts_data[i].duration= duration;
1418         if (duration < 0)
1419             sc->dts_shift = FFMAX(sc->dts_shift, -duration);
1420     }
1421
1422     dprintf(c->fc, "dts shift %d\n", sc->dts_shift);
1423
1424     return 0;
1425 }
1426
1427 static void mov_build_index(MOVContext *mov, AVStream *st)
1428 {
1429     MOVStreamContext *sc = st->priv_data;
1430     int64_t current_offset;
1431     int64_t current_dts = 0;
1432     unsigned int stts_index = 0;
1433     unsigned int stsc_index = 0;
1434     unsigned int stss_index = 0;
1435     unsigned int stps_index = 0;
1436     unsigned int i, j;
1437     uint64_t stream_size = 0;
1438
1439     /* adjust first dts according to edit list */
1440     if (sc->time_offset) {
1441         int rescaled = sc->time_offset < 0 ? av_rescale(sc->time_offset, sc->time_scale, mov->time_scale) : sc->time_offset;
1442         current_dts = -rescaled;
1443         if (sc->ctts_data && sc->ctts_data[0].duration / sc->stts_data[0].duration > 16) {
1444             /* more than 16 frames delay, dts are likely wrong
1445                this happens with files created by iMovie */
1446             sc->wrong_dts = 1;
1447             st->codec->has_b_frames = 1;
1448         }
1449     }
1450
1451     /* only use old uncompressed audio chunk demuxing when stts specifies it */
1452     if (!(st->codec->codec_type == CODEC_TYPE_AUDIO &&
1453           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
1454         unsigned int current_sample = 0;
1455         unsigned int stts_sample = 0;
1456         unsigned int sample_size;
1457         unsigned int distance = 0;
1458         int key_off = sc->keyframes && sc->keyframes[0] == 1;
1459
1460         current_dts -= sc->dts_shift;
1461
1462         for (i = 0; i < sc->chunk_count; i++) {
1463             current_offset = sc->chunk_offsets[i];
1464             if (stsc_index + 1 < sc->stsc_count &&
1465                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1466                 stsc_index++;
1467             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
1468                 int keyframe = 0;
1469                 if (current_sample >= sc->sample_count) {
1470                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1471                     return;
1472                 }
1473
1474                 if (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index]) {
1475                     keyframe = 1;
1476                     if (stss_index + 1 < sc->keyframe_count)
1477                         stss_index++;
1478                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
1479                     keyframe = 1;
1480                     if (stps_index + 1 < sc->stps_count)
1481                         stps_index++;
1482                 }
1483                 if (keyframe)
1484                     distance = 0;
1485                 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample];
1486                 if(sc->pseudo_stream_id == -1 ||
1487                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
1488                     av_add_index_entry(st, current_offset, current_dts, sample_size, distance,
1489                                     keyframe ? AVINDEX_KEYFRAME : 0);
1490                     dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1491                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
1492                             current_offset, current_dts, sample_size, distance, keyframe);
1493                 }
1494
1495                 current_offset += sample_size;
1496                 stream_size += sample_size;
1497                 current_dts += sc->stts_data[stts_index].duration;
1498                 distance++;
1499                 stts_sample++;
1500                 current_sample++;
1501                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1502                     stts_sample = 0;
1503                     stts_index++;
1504                 }
1505             }
1506         }
1507         if (st->duration > 0)
1508             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
1509     } else {
1510         for (i = 0; i < sc->chunk_count; i++) {
1511             unsigned chunk_samples;
1512
1513             current_offset = sc->chunk_offsets[i];
1514             if (stsc_index + 1 < sc->stsc_count &&
1515                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1516                 stsc_index++;
1517             chunk_samples = sc->stsc_data[stsc_index].count;
1518
1519             if (sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
1520                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
1521                 return;
1522             }
1523
1524             while (chunk_samples > 0) {
1525                 unsigned size, samples;
1526
1527                 if (sc->samples_per_frame >= 160) { // gsm
1528                     samples = sc->samples_per_frame;
1529                     size = sc->bytes_per_frame;
1530                 } else {
1531                     if (sc->samples_per_frame > 1) {
1532                         samples = FFMIN((1024 / sc->samples_per_frame)*
1533                                         sc->samples_per_frame, chunk_samples);
1534                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
1535                     } else {
1536                         samples = FFMIN(1024, chunk_samples);
1537                         size = samples * sc->sample_size;
1538                     }
1539                 }
1540
1541                 av_add_index_entry(st, current_offset, current_dts, size, 0, AVINDEX_KEYFRAME);
1542                 dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
1543                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
1544                         size, samples);
1545
1546                 current_offset += size;
1547                 current_dts += samples;
1548                 chunk_samples -= samples;
1549             }
1550         }
1551     }
1552 }
1553
1554 static int mov_open_dref(ByteIOContext **pb, char *src, MOVDref *ref)
1555 {
1556     /* try absolute path */
1557     if (!url_fopen(pb, ref->path, URL_RDONLY))
1558         return 0;
1559
1560     /* try relative path */
1561     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
1562         char filename[1024];
1563         char *src_path;
1564         int i, l;
1565
1566         /* find a source dir */
1567         src_path = strrchr(src, '/');
1568         if (src_path)
1569             src_path++;
1570         else
1571             src_path = src;
1572
1573         /* find a next level down to target */
1574         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
1575             if (ref->path[l] == '/') {
1576                 if (i == ref->nlvl_to - 1)
1577                     break;
1578                 else
1579                     i++;
1580             }
1581
1582         /* compose filename if next level down to target was found */
1583         if (i == ref->nlvl_to - 1) {
1584             memcpy(filename, src, src_path - src);
1585             filename[src_path - src] = 0;
1586
1587             for (i = 1; i < ref->nlvl_from; i++)
1588                 av_strlcat(filename, "../", 1024);
1589
1590             av_strlcat(filename, ref->path + l + 1, 1024);
1591
1592             if (!url_fopen(pb, filename, URL_RDONLY))
1593                 return 0;
1594         }
1595     }
1596
1597     return AVERROR(ENOENT);
1598 };
1599
1600 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1601 {
1602     AVStream *st;
1603     MOVStreamContext *sc;
1604     int ret;
1605
1606     st = av_new_stream(c->fc, c->fc->nb_streams);
1607     if (!st) return AVERROR(ENOMEM);
1608     sc = av_mallocz(sizeof(MOVStreamContext));
1609     if (!sc) return AVERROR(ENOMEM);
1610
1611     st->priv_data = sc;
1612     st->codec->codec_type = CODEC_TYPE_DATA;
1613     sc->ffindex = st->index;
1614
1615     if ((ret = mov_read_default(c, pb, atom)) < 0)
1616         return ret;
1617
1618     /* sanity checks */
1619     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
1620                             (!sc->sample_size && !sc->sample_count))) {
1621         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
1622                st->index);
1623         return 0;
1624     }
1625
1626     if (!sc->time_scale) {
1627         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", st->index);
1628         sc->time_scale = c->time_scale;
1629         if (!sc->time_scale)
1630             sc->time_scale = 1;
1631     }
1632
1633     av_set_pts_info(st, 64, 1, sc->time_scale);
1634
1635     if (st->codec->codec_type == CODEC_TYPE_AUDIO &&
1636         !st->codec->frame_size && sc->stts_count == 1) {
1637         st->codec->frame_size = av_rescale(sc->stts_data[0].duration,
1638                                            st->codec->sample_rate, sc->time_scale);
1639         dprintf(c->fc, "frame size %d\n", st->codec->frame_size);
1640     }
1641
1642     mov_build_index(c, st);
1643
1644     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
1645         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
1646         if (mov_open_dref(&sc->pb, c->fc->filename, dref) < 0)
1647             av_log(c->fc, AV_LOG_ERROR,
1648                    "stream %d, error opening alias: path='%s', dir='%s', "
1649                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
1650                    st->index, dref->path, dref->dir, dref->filename,
1651                    dref->volume, dref->nlvl_from, dref->nlvl_to);
1652     } else
1653         sc->pb = c->fc->pb;
1654
1655     if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
1656         if (st->codec->width != sc->width || st->codec->height != sc->height) {
1657             AVRational r = av_d2q(((double)st->codec->height * sc->width) /
1658                                   ((double)st->codec->width * sc->height), INT_MAX);
1659             if (st->sample_aspect_ratio.num)
1660                 st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r);
1661             else
1662                 st->sample_aspect_ratio = r;
1663         }
1664
1665         av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
1666                   sc->time_scale*st->nb_frames, st->duration, INT_MAX);
1667     }
1668
1669     switch (st->codec->codec_id) {
1670 #if CONFIG_H261_DECODER
1671     case CODEC_ID_H261:
1672 #endif
1673 #if CONFIG_H263_DECODER
1674     case CODEC_ID_H263:
1675 #endif
1676 #if CONFIG_H264_DECODER
1677     case CODEC_ID_H264:
1678 #endif
1679 #if CONFIG_MPEG4_DECODER
1680     case CODEC_ID_MPEG4:
1681 #endif
1682         st->codec->width = 0; /* let decoder init width/height */
1683         st->codec->height= 0;
1684         break;
1685     }
1686
1687     /* Do not need those anymore. */
1688     av_freep(&sc->chunk_offsets);
1689     av_freep(&sc->stsc_data);
1690     av_freep(&sc->sample_sizes);
1691     av_freep(&sc->keyframes);
1692     av_freep(&sc->stts_data);
1693     av_freep(&sc->stps_data);
1694
1695     return 0;
1696 }
1697
1698 static int mov_read_ilst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1699 {
1700     int ret;
1701     c->itunes_metadata = 1;
1702     ret = mov_read_default(c, pb, atom);
1703     c->itunes_metadata = 0;
1704     return ret;
1705 }
1706
1707 static int mov_read_meta(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1708 {
1709     while (atom.size > 8) {
1710         uint32_t tag = get_le32(pb);
1711         atom.size -= 4;
1712         if (tag == MKTAG('h','d','l','r')) {
1713             url_fseek(pb, -8, SEEK_CUR);
1714             atom.size += 8;
1715             return mov_read_default(c, pb, atom);
1716         }
1717     }
1718     return 0;
1719 }
1720
1721 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1722 {
1723     int i;
1724     int width;
1725     int height;
1726     int64_t disp_transform[2];
1727     int display_matrix[3][2];
1728     AVStream *st;
1729     MOVStreamContext *sc;
1730     int version;
1731
1732     if (c->fc->nb_streams < 1)
1733         return 0;
1734     st = c->fc->streams[c->fc->nb_streams-1];
1735     sc = st->priv_data;
1736
1737     version = get_byte(pb);
1738     get_be24(pb); /* flags */
1739     /*
1740     MOV_TRACK_ENABLED 0x0001
1741     MOV_TRACK_IN_MOVIE 0x0002
1742     MOV_TRACK_IN_PREVIEW 0x0004
1743     MOV_TRACK_IN_POSTER 0x0008
1744     */
1745
1746     if (version == 1) {
1747         get_be64(pb);
1748         get_be64(pb);
1749     } else {
1750         get_be32(pb); /* creation time */
1751         get_be32(pb); /* modification time */
1752     }
1753     st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
1754     get_be32(pb); /* reserved */
1755
1756     /* highlevel (considering edits) duration in movie timebase */
1757     (version == 1) ? get_be64(pb) : get_be32(pb);
1758     get_be32(pb); /* reserved */
1759     get_be32(pb); /* reserved */
1760
1761     get_be16(pb); /* layer */
1762     get_be16(pb); /* alternate group */
1763     get_be16(pb); /* volume */
1764     get_be16(pb); /* reserved */
1765
1766     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
1767     // they're kept in fixed point format through all calculations
1768     // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
1769     for (i = 0; i < 3; i++) {
1770         display_matrix[i][0] = get_be32(pb);   // 16.16 fixed point
1771         display_matrix[i][1] = get_be32(pb);   // 16.16 fixed point
1772         get_be32(pb);           // 2.30 fixed point (not used)
1773     }
1774
1775     width = get_be32(pb);       // 16.16 fixed point track width
1776     height = get_be32(pb);      // 16.16 fixed point track height
1777     sc->width = width >> 16;
1778     sc->height = height >> 16;
1779
1780     // transform the display width/height according to the matrix
1781     // skip this if the display matrix is the default identity matrix
1782     // or if it is rotating the picture, ex iPhone 3GS
1783     // to keep the same scale, use [width height 1<<16]
1784     if (width && height &&
1785         ((display_matrix[0][0] != 65536  ||
1786           display_matrix[1][1] != 65536) &&
1787          !display_matrix[0][1] &&
1788          !display_matrix[1][0] &&
1789          !display_matrix[2][0] && !display_matrix[2][1])) {
1790         for (i = 0; i < 2; i++)
1791             disp_transform[i] =
1792                 (int64_t)  width  * display_matrix[0][i] +
1793                 (int64_t)  height * display_matrix[1][i] +
1794                 ((int64_t) display_matrix[2][i] << 16);
1795
1796         //sample aspect ratio is new width/height divided by old width/height
1797         st->sample_aspect_ratio = av_d2q(
1798             ((double) disp_transform[0] * height) /
1799             ((double) disp_transform[1] * width), INT_MAX);
1800     }
1801     return 0;
1802 }
1803
1804 static int mov_read_tfhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1805 {
1806     MOVFragment *frag = &c->fragment;
1807     MOVTrackExt *trex = NULL;
1808     int flags, track_id, i;
1809
1810     get_byte(pb); /* version */
1811     flags = get_be24(pb);
1812
1813     track_id = get_be32(pb);
1814     if (!track_id)
1815         return -1;
1816     frag->track_id = track_id;
1817     for (i = 0; i < c->trex_count; i++)
1818         if (c->trex_data[i].track_id == frag->track_id) {
1819             trex = &c->trex_data[i];
1820             break;
1821         }
1822     if (!trex) {
1823         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
1824         return -1;
1825     }
1826
1827     if (flags & 0x01) frag->base_data_offset = get_be64(pb);
1828     else              frag->base_data_offset = frag->moof_offset;
1829     if (flags & 0x02) frag->stsd_id          = get_be32(pb);
1830     else              frag->stsd_id          = trex->stsd_id;
1831
1832     frag->duration = flags & 0x08 ? get_be32(pb) : trex->duration;
1833     frag->size     = flags & 0x10 ? get_be32(pb) : trex->size;
1834     frag->flags    = flags & 0x20 ? get_be32(pb) : trex->flags;
1835     dprintf(c->fc, "frag flags 0x%x\n", frag->flags);
1836     return 0;
1837 }
1838
1839 static int mov_read_trex(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1840 {
1841     MOVTrackExt *trex;
1842
1843     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
1844         return -1;
1845     trex = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data));
1846     if (!trex)
1847         return AVERROR(ENOMEM);
1848     c->trex_data = trex;
1849     trex = &c->trex_data[c->trex_count++];
1850     get_byte(pb); /* version */
1851     get_be24(pb); /* flags */
1852     trex->track_id = get_be32(pb);
1853     trex->stsd_id  = get_be32(pb);
1854     trex->duration = get_be32(pb);
1855     trex->size     = get_be32(pb);
1856     trex->flags    = get_be32(pb);
1857     return 0;
1858 }
1859
1860 static int mov_read_trun(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1861 {
1862     MOVFragment *frag = &c->fragment;
1863     AVStream *st = NULL;
1864     MOVStreamContext *sc;
1865     uint64_t offset;
1866     int64_t dts;
1867     int data_offset = 0;
1868     unsigned entries, first_sample_flags = frag->flags;
1869     int flags, distance, i;
1870
1871     for (i = 0; i < c->fc->nb_streams; i++) {
1872         if (c->fc->streams[i]->id == frag->track_id) {
1873             st = c->fc->streams[i];
1874             break;
1875         }
1876     }
1877     if (!st) {
1878         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
1879         return -1;
1880     }
1881     sc = st->priv_data;
1882     if (sc->pseudo_stream_id+1 != frag->stsd_id)
1883         return 0;
1884     get_byte(pb); /* version */
1885     flags = get_be24(pb);
1886     entries = get_be32(pb);
1887     dprintf(c->fc, "flags 0x%x entries %d\n", flags, entries);
1888     if (flags & 0x001) data_offset        = get_be32(pb);
1889     if (flags & 0x004) first_sample_flags = get_be32(pb);
1890     if (flags & 0x800) {
1891         MOVStts *ctts_data;
1892         if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
1893             return -1;
1894         ctts_data = av_realloc(sc->ctts_data,
1895                                (entries+sc->ctts_count)*sizeof(*sc->ctts_data));
1896         if (!ctts_data)
1897             return AVERROR(ENOMEM);
1898         sc->ctts_data = ctts_data;
1899     }
1900     dts = st->duration;
1901     offset = frag->base_data_offset + data_offset;
1902     distance = 0;
1903     dprintf(c->fc, "first sample flags 0x%x\n", first_sample_flags);
1904     for (i = 0; i < entries; i++) {
1905         unsigned sample_size = frag->size;
1906         int sample_flags = i ? frag->flags : first_sample_flags;
1907         unsigned sample_duration = frag->duration;
1908         int keyframe;
1909
1910         if (flags & 0x100) sample_duration = get_be32(pb);
1911         if (flags & 0x200) sample_size     = get_be32(pb);
1912         if (flags & 0x400) sample_flags    = get_be32(pb);
1913         if (flags & 0x800) {
1914             sc->ctts_data[sc->ctts_count].count = 1;
1915             sc->ctts_data[sc->ctts_count].duration = get_be32(pb);
1916             sc->ctts_count++;
1917         }
1918         if ((keyframe = st->codec->codec_type == CODEC_TYPE_AUDIO ||
1919              (flags & 0x004 && !i && !sample_flags) || sample_flags & 0x2000000))
1920             distance = 0;
1921         av_add_index_entry(st, offset, dts, sample_size, distance,
1922                            keyframe ? AVINDEX_KEYFRAME : 0);
1923         dprintf(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1924                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
1925                 offset, dts, sample_size, distance, keyframe);
1926         distance++;
1927         dts += sample_duration;
1928         offset += sample_size;
1929     }
1930     frag->moof_offset = offset;
1931     st->duration = dts;
1932     return 0;
1933 }
1934
1935 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
1936 /* like the files created with Adobe Premiere 5.0, for samples see */
1937 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
1938 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1939 {
1940     int err;
1941
1942     if (atom.size < 8)
1943         return 0; /* continue */
1944     if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
1945         url_fskip(pb, atom.size - 4);
1946         return 0;
1947     }
1948     atom.type = get_le32(pb);
1949     atom.size -= 8;
1950     if (atom.type != MKTAG('m','d','a','t')) {
1951         url_fskip(pb, atom.size);
1952         return 0;
1953     }
1954     err = mov_read_mdat(c, pb, atom);
1955     return err;
1956 }
1957
1958 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
1959 {
1960 #if CONFIG_ZLIB
1961     ByteIOContext ctx;
1962     uint8_t *cmov_data;
1963     uint8_t *moov_data; /* uncompressed data */
1964     long cmov_len, moov_len;
1965     int ret = -1;
1966
1967     get_be32(pb); /* dcom atom */
1968     if (get_le32(pb) != MKTAG('d','c','o','m'))
1969         return -1;
1970     if (get_le32(pb) != MKTAG('z','l','i','b')) {
1971         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !");
1972         return -1;
1973     }
1974     get_be32(pb); /* cmvd atom */
1975     if (get_le32(pb) != MKTAG('c','m','v','d'))
1976         return -1;
1977     moov_len = get_be32(pb); /* uncompressed size */
1978     cmov_len = atom.size - 6 * 4;
1979
1980     cmov_data = av_malloc(cmov_len);
1981     if (!cmov_data)
1982         return AVERROR(ENOMEM);
1983     moov_data = av_malloc(moov_len);
1984     if (!moov_data) {
1985         av_free(cmov_data);
1986         return AVERROR(ENOMEM);
1987     }
1988     get_buffer(pb, cmov_data, cmov_len);
1989     if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
1990         goto free_and_return;
1991     if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
1992         goto free_and_return;
1993     atom.type = MKTAG('m','o','o','v');
1994     atom.size = moov_len;
1995 #ifdef DEBUG
1996 //    { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
1997 #endif
1998     ret = mov_read_default(c, &ctx, atom);
1999 free_and_return:
2000     av_free(moov_data);
2001     av_free(cmov_data);
2002     return ret;
2003 #else
2004     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
2005     return -1;
2006 #endif
2007 }
2008
2009 /* edit list atom */
2010 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
2011 {
2012     MOVStreamContext *sc;
2013     int i, edit_count;
2014
2015     if (c->fc->nb_streams < 1)
2016         return 0;
2017     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
2018
2019     get_byte(pb); /* version */
2020     get_be24(pb); /* flags */
2021     edit_count = get_be32(pb); /* entries */
2022
2023     if((uint64_t)edit_count*12+8 > atom.size)
2024         return -1;
2025
2026     for(i=0; i<edit_count; i++){
2027         int time;
2028         int duration = get_be32(pb); /* Track duration */
2029         time = get_be32(pb); /* Media time */
2030         get_be32(pb); /* Media rate */
2031         if (i == 0 && time >= -1) {
2032             sc->time_offset = time != -1 ? time : -duration;
2033         }
2034     }
2035
2036     if(edit_count > 1)
2037         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
2038                "a/v desync might occur, patch welcome\n");
2039
2040     dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
2041     return 0;
2042 }
2043
2044 static const MOVParseTableEntry mov_default_parse_table[] = {
2045 { MKTAG('a','v','s','s'), mov_read_extradata },
2046 { MKTAG('c','o','6','4'), mov_read_stco },
2047 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
2048 { MKTAG('d','i','n','f'), mov_read_default },
2049 { MKTAG('d','r','e','f'), mov_read_dref },
2050 { MKTAG('e','d','t','s'), mov_read_default },
2051 { MKTAG('e','l','s','t'), mov_read_elst },
2052 { MKTAG('e','n','d','a'), mov_read_enda },
2053 { MKTAG('f','i','e','l'), mov_read_extradata },
2054 { MKTAG('f','t','y','p'), mov_read_ftyp },
2055 { MKTAG('g','l','b','l'), mov_read_glbl },
2056 { MKTAG('h','d','l','r'), mov_read_hdlr },
2057 { MKTAG('i','l','s','t'), mov_read_ilst },
2058 { MKTAG('j','p','2','h'), mov_read_extradata },
2059 { MKTAG('m','d','a','t'), mov_read_mdat },
2060 { MKTAG('m','d','h','d'), mov_read_mdhd },
2061 { MKTAG('m','d','i','a'), mov_read_default },
2062 { MKTAG('m','e','t','a'), mov_read_meta },
2063 { MKTAG('m','i','n','f'), mov_read_default },
2064 { MKTAG('m','o','o','f'), mov_read_moof },
2065 { MKTAG('m','o','o','v'), mov_read_moov },
2066 { MKTAG('m','v','e','x'), mov_read_default },
2067 { MKTAG('m','v','h','d'), mov_read_mvhd },
2068 { MKTAG('S','M','I',' '), mov_read_smi }, /* Sorenson extension ??? */
2069 { MKTAG('a','l','a','c'), mov_read_extradata }, /* alac specific atom */
2070 { MKTAG('a','v','c','C'), mov_read_glbl },
2071 { MKTAG('p','a','s','p'), mov_read_pasp },
2072 { MKTAG('s','t','b','l'), mov_read_default },
2073 { MKTAG('s','t','c','o'), mov_read_stco },
2074 { MKTAG('s','t','p','s'), mov_read_stps },
2075 { MKTAG('s','t','s','c'), mov_read_stsc },
2076 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
2077 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
2078 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
2079 { MKTAG('s','t','t','s'), mov_read_stts },
2080 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
2081 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
2082 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
2083 { MKTAG('t','r','a','k'), mov_read_trak },
2084 { MKTAG('t','r','a','f'), mov_read_default },
2085 { MKTAG('t','r','e','x'), mov_read_trex },
2086 { MKTAG('t','r','u','n'), mov_read_trun },
2087 { MKTAG('u','d','t','a'), mov_read_default },
2088 { MKTAG('w','a','v','e'), mov_read_wave },
2089 { MKTAG('e','s','d','s'), mov_read_esds },
2090 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
2091 { MKTAG('c','m','o','v'), mov_read_cmov },
2092 { 0, NULL }
2093 };
2094
2095 static int mov_probe(AVProbeData *p)
2096 {
2097     unsigned int offset;
2098     uint32_t tag;
2099     int score = 0;
2100
2101     /* check file header */
2102     offset = 0;
2103     for(;;) {
2104         /* ignore invalid offset */
2105         if ((offset + 8) > (unsigned int)p->buf_size)
2106             return score;
2107         tag = AV_RL32(p->buf + offset + 4);
2108         switch(tag) {
2109         /* check for obvious tags */
2110         case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
2111         case MKTAG('m','o','o','v'):
2112         case MKTAG('m','d','a','t'):
2113         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
2114         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
2115         case MKTAG('f','t','y','p'):
2116             return AVPROBE_SCORE_MAX;
2117         /* those are more common words, so rate then a bit less */
2118         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
2119         case MKTAG('w','i','d','e'):
2120         case MKTAG('f','r','e','e'):
2121         case MKTAG('j','u','n','k'):
2122         case MKTAG('p','i','c','t'):
2123             return AVPROBE_SCORE_MAX - 5;
2124         case MKTAG(0x82,0x82,0x7f,0x7d):
2125         case MKTAG('s','k','i','p'):
2126         case MKTAG('u','u','i','d'):
2127         case MKTAG('p','r','f','l'):
2128             offset = AV_RB32(p->buf+offset) + offset;
2129             /* if we only find those cause probedata is too small at least rate them */
2130             score = AVPROBE_SCORE_MAX - 50;
2131             break;
2132         default:
2133             /* unrecognized tag */
2134             return score;
2135         }
2136     }
2137     return score;
2138 }
2139
2140 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
2141 {
2142     MOVContext *mov = s->priv_data;
2143     ByteIOContext *pb = s->pb;
2144     int err;
2145     MOVAtom atom = { 0 };
2146
2147     mov->fc = s;
2148     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
2149     if(!url_is_streamed(pb))
2150         atom.size = url_fsize(pb);
2151     else
2152         atom.size = INT64_MAX;
2153
2154     /* check MOV header */
2155     if ((err = mov_read_default(mov, pb, atom)) < 0) {
2156         av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
2157         return err;
2158     }
2159     if (!mov->found_moov) {
2160         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
2161         return -1;
2162     }
2163     dprintf(mov->fc, "on_parse_exit_offset=%lld\n", url_ftell(pb));
2164
2165     return 0;
2166 }
2167
2168 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
2169 {
2170     AVIndexEntry *sample = NULL;
2171     int64_t best_dts = INT64_MAX;
2172     int i;
2173     for (i = 0; i < s->nb_streams; i++) {
2174         AVStream *avst = s->streams[i];
2175         MOVStreamContext *msc = avst->priv_data;
2176         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
2177             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
2178             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
2179             dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
2180             if (!sample || (url_is_streamed(s->pb) && current_sample->pos < sample->pos) ||
2181                 (!url_is_streamed(s->pb) &&
2182                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
2183                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
2184                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
2185                 sample = current_sample;
2186                 best_dts = dts;
2187                 *st = avst;
2188             }
2189         }
2190     }
2191     return sample;
2192 }
2193
2194 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
2195 {
2196     MOVContext *mov = s->priv_data;
2197     MOVStreamContext *sc;
2198     AVIndexEntry *sample;
2199     AVStream *st = NULL;
2200     int ret;
2201  retry:
2202     sample = mov_find_next_sample(s, &st);
2203     if (!sample) {
2204         mov->found_mdat = 0;
2205         if (!url_is_streamed(s->pb) ||
2206             mov_read_default(mov, s->pb, (MOVAtom){ 0, INT64_MAX }) < 0 ||
2207             url_feof(s->pb))
2208             return AVERROR_EOF;
2209         dprintf(s, "read fragments, offset 0x%llx\n", url_ftell(s->pb));
2210         goto retry;
2211     }
2212     sc = st->priv_data;
2213     /* must be done just before reading, to avoid infinite loop on sample */
2214     sc->current_sample++;
2215
2216     if (st->discard != AVDISCARD_ALL) {
2217         if (url_fseek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
2218             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
2219                    sc->ffindex, sample->pos);
2220             return -1;
2221         }
2222         ret = av_get_packet(sc->pb, pkt, sample->size);
2223         if (ret < 0)
2224             return ret;
2225 #if CONFIG_DV_DEMUXER
2226         if (mov->dv_demux && sc->dv_audio_container) {
2227             dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
2228             av_free(pkt->data);
2229             pkt->size = 0;
2230             ret = dv_get_packet(mov->dv_demux, pkt);
2231             if (ret < 0)
2232                 return ret;
2233         }
2234 #endif
2235     }
2236
2237     pkt->stream_index = sc->ffindex;
2238     pkt->dts = sample->timestamp;
2239     if (sc->ctts_data) {
2240         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
2241         /* update ctts context */
2242         sc->ctts_sample++;
2243         if (sc->ctts_index < sc->ctts_count &&
2244             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
2245             sc->ctts_index++;
2246             sc->ctts_sample = 0;
2247         }
2248         if (sc->wrong_dts)
2249             pkt->dts = AV_NOPTS_VALUE;
2250     } else {
2251         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
2252             st->index_entries[sc->current_sample].timestamp : st->duration;
2253         pkt->duration = next_dts - pkt->dts;
2254         pkt->pts = pkt->dts;
2255     }
2256     if (st->discard == AVDISCARD_ALL)
2257         goto retry;
2258     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0;
2259     pkt->pos = sample->pos;
2260     dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
2261             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
2262     return 0;
2263 }
2264
2265 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
2266 {
2267     MOVStreamContext *sc = st->priv_data;
2268     int sample, time_sample;
2269     int i;
2270
2271     sample = av_index_search_timestamp(st, timestamp, flags);
2272     dprintf(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
2273     if (sample < 0) /* not sure what to do */
2274         return -1;
2275     sc->current_sample = sample;
2276     dprintf(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
2277     /* adjust ctts index */
2278     if (sc->ctts_data) {
2279         time_sample = 0;
2280         for (i = 0; i < sc->ctts_count; i++) {
2281             int next = time_sample + sc->ctts_data[i].count;
2282             if (next > sc->current_sample) {
2283                 sc->ctts_index = i;
2284                 sc->ctts_sample = sc->current_sample - time_sample;
2285                 break;
2286             }
2287             time_sample = next;
2288         }
2289     }
2290     return sample;
2291 }
2292
2293 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
2294 {
2295     AVStream *st;
2296     int64_t seek_timestamp, timestamp;
2297     int sample;
2298     int i;
2299
2300     if (stream_index >= s->nb_streams)
2301         return -1;
2302     if (sample_time < 0)
2303         sample_time = 0;
2304
2305     st = s->streams[stream_index];
2306     sample = mov_seek_stream(s, st, sample_time, flags);
2307     if (sample < 0)
2308         return -1;
2309
2310     /* adjust seek timestamp to found sample timestamp */
2311     seek_timestamp = st->index_entries[sample].timestamp;
2312
2313     for (i = 0; i < s->nb_streams; i++) {
2314         st = s->streams[i];
2315         if (stream_index == i)
2316             continue;
2317
2318         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
2319         mov_seek_stream(s, st, timestamp, flags);
2320     }
2321     return 0;
2322 }
2323
2324 static int mov_read_close(AVFormatContext *s)
2325 {
2326     MOVContext *mov = s->priv_data;
2327     int i, j;
2328
2329     for (i = 0; i < s->nb_streams; i++) {
2330         AVStream *st = s->streams[i];
2331         MOVStreamContext *sc = st->priv_data;
2332
2333         av_freep(&sc->ctts_data);
2334         for (j = 0; j < sc->drefs_count; j++) {
2335             av_freep(&sc->drefs[j].path);
2336             av_freep(&sc->drefs[j].dir);
2337         }
2338         av_freep(&sc->drefs);
2339         if (sc->pb && sc->pb != s->pb)
2340             url_fclose(sc->pb);
2341
2342         av_freep(&st->codec->palctrl);
2343     }
2344
2345     if (mov->dv_demux) {
2346         for(i = 0; i < mov->dv_fctx->nb_streams; i++) {
2347             av_freep(&mov->dv_fctx->streams[i]->codec);
2348             av_freep(&mov->dv_fctx->streams[i]);
2349         }
2350         av_freep(&mov->dv_fctx);
2351         av_freep(&mov->dv_demux);
2352     }
2353
2354     av_freep(&mov->trex_data);
2355
2356     return 0;
2357 }
2358
2359 AVInputFormat mov_demuxer = {
2360     "mov,mp4,m4a,3gp,3g2,mj2",
2361     NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),
2362     sizeof(MOVContext),
2363     mov_probe,
2364     mov_read_header,
2365     mov_read_packet,
2366     mov_read_close,
2367     mov_read_seek,
2368 };