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