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