OSDN Git Service

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