]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
Merge commit '117d8c6d1f1c187ffc6098d9618457e00534e013'
[ffmpeg] / libavformat / mov.c
1 /*
2  * MOV demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include <limits.h>
24
25 //#define DEBUG
26 //#define MOV_EXPORT_ALL_METADATA
27
28 #include "libavutil/attributes.h"
29 #include "libavutil/audioconvert.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/intfloat.h"
32 #include "libavutil/mathematics.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/dict.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/timecode.h"
37 #include "libavcodec/ac3tab.h"
38 #include "avformat.h"
39 #include "internal.h"
40 #include "avio_internal.h"
41 #include "riff.h"
42 #include "isom.h"
43 #include "libavcodec/get_bits.h"
44 #include "id3v1.h"
45 #include "mov_chan.h"
46
47 #if CONFIG_ZLIB
48 #include <zlib.h>
49 #endif
50
51 /*
52  * First version by Francois Revol revol@free.fr
53  * Seek function by Gael Chardon gael.dev@4now.net
54  */
55
56 #include "qtpalette.h"
57
58
59 #undef NDEBUG
60 #include <assert.h>
61
62 /* those functions parse an atom */
63 /* links atom IDs to parse functions */
64 typedef struct MOVParseTableEntry {
65     uint32_t type;
66     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
67 } MOVParseTableEntry;
68
69 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
70
71 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
72                                              unsigned len, const char *key)
73 {
74     char buf[16];
75
76     short current, total = 0;
77     avio_rb16(pb); // unknown
78     current = avio_rb16(pb);
79     if (len >= 6)
80         total = avio_rb16(pb);
81     if (!total)
82         snprintf(buf, sizeof(buf), "%d", current);
83     else
84         snprintf(buf, sizeof(buf), "%d/%d", current, total);
85     av_dict_set(&c->fc->metadata, key, buf, 0);
86
87     return 0;
88 }
89
90 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
91                                             unsigned len, const char *key)
92 {
93     char buf[16];
94
95     /* bypass padding bytes */
96     avio_r8(pb);
97     avio_r8(pb);
98     avio_r8(pb);
99
100     snprintf(buf, sizeof(buf), "%d", avio_r8(pb));
101     av_dict_set(&c->fc->metadata, key, buf, 0);
102
103     return 0;
104 }
105
106 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
107                                         unsigned len, const char *key)
108 {
109     char buf[16];
110
111     snprintf(buf, sizeof(buf), "%d", avio_r8(pb));
112     av_dict_set(&c->fc->metadata, key, buf, 0);
113
114     return 0;
115 }
116
117 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
118                              unsigned len, const char *key)
119 {
120     short genre;
121     char buf[20];
122
123     avio_r8(pb); // unknown
124
125     genre = avio_r8(pb);
126     if (genre < 1 || genre > ID3v1_GENRE_MAX)
127         return 0;
128     snprintf(buf, sizeof(buf), "%s", ff_id3v1_genre_str[genre-1]);
129     av_dict_set(&c->fc->metadata, key, buf, 0);
130
131     return 0;
132 }
133
134 static int mov_read_custom_metadata(MOVContext *c, AVIOContext *pb, MOVAtom atom)
135 {
136     char key[1024]={0}, data[1024]={0};
137     int i;
138     AVStream *st;
139     MOVStreamContext *sc;
140
141     if (c->fc->nb_streams < 1)
142         return 0;
143     st = c->fc->streams[c->fc->nb_streams-1];
144     sc = st->priv_data;
145
146     if (atom.size <= 8) return 0;
147
148     for (i = 0; i < 3; i++) { // Parse up to three sub-atoms looking for name and data.
149         int data_size = avio_rb32(pb);
150         int tag = avio_rl32(pb);
151         int str_size = 0, skip_size = 0;
152         char *target = NULL;
153
154         switch (tag) {
155         case MKTAG('n','a','m','e'):
156             avio_rb32(pb); // version/flags
157             str_size = skip_size = data_size - 12;
158             atom.size -= 12;
159             target = key;
160             break;
161         case MKTAG('d','a','t','a'):
162             avio_rb32(pb); // version/flags
163             avio_rb32(pb); // reserved (zero)
164             str_size = skip_size = data_size - 16;
165             atom.size -= 16;
166             target = data;
167             break;
168         default:
169             skip_size = data_size - 8;
170             str_size = 0;
171             break;
172         }
173
174         if (target) {
175             str_size = FFMIN3(sizeof(data)-1, str_size, atom.size);
176             avio_read(pb, target, str_size);
177             target[str_size] = 0;
178         }
179         atom.size -= skip_size;
180
181         // If we didn't read the full data chunk for the sub-atom, skip to the end of it.
182         if (skip_size > str_size) avio_skip(pb, skip_size - str_size);
183     }
184
185     if (*key && *data) {
186         if (strcmp(key, "iTunSMPB") == 0) {
187             int priming, remainder, samples;
188             if(sscanf(data, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
189                 if(priming>0 && priming<16384)
190                     sc->start_pad = priming;
191                 return 1;
192             }
193         }
194         if (strcmp(key, "cdec") == 0) {
195 //             av_dict_set(&st->metadata, key, data, 0);
196             return 1;
197         }
198     }
199     return 0;
200 }
201
202 static const uint32_t mac_to_unicode[128] = {
203     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
204     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
205     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
206     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
207     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
208     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
209     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
210     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
211     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
212     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
213     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
214     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
215     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
216     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
217     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
218     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
219 };
220
221 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
222                                char *dst, int dstlen)
223 {
224     char *p = dst;
225     char *end = dst+dstlen-1;
226     int i;
227
228     for (i = 0; i < len; i++) {
229         uint8_t t, c = avio_r8(pb);
230         if (c < 0x80 && p < end)
231             *p++ = c;
232         else if (p < end)
233             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
234     }
235     *p = 0;
236     return p - dst;
237 }
238
239 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
240 {
241     AVPacket pkt;
242     AVStream *st;
243     MOVStreamContext *sc;
244     enum AVCodecID id;
245     int ret;
246
247     switch (type) {
248     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
249     case 0xe:  id = AV_CODEC_ID_PNG;   break;
250     case 0x1b: id = AV_CODEC_ID_BMP;   break;
251     default:
252         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
253         avio_skip(pb, len);
254         return 0;
255     }
256
257     st = avformat_new_stream(c->fc, NULL);
258     if (!st)
259         return AVERROR(ENOMEM);
260     sc = av_mallocz(sizeof(*sc));
261     if (!sc)
262         return AVERROR(ENOMEM);
263     st->priv_data = sc;
264
265     ret = av_get_packet(pb, &pkt, len);
266     if (ret < 0)
267         return ret;
268
269     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
270
271     st->attached_pic              = pkt;
272     st->attached_pic.stream_index = st->index;
273     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
274
275     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
276     st->codec->codec_id   = id;
277
278     return 0;
279 }
280
281 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
282 {
283 #ifdef MOV_EXPORT_ALL_METADATA
284     char tmp_key[5];
285 #endif
286     char str[1024], key2[16], language[4] = {0};
287     const char *key = NULL;
288     uint16_t langcode = 0;
289     uint32_t data_type = 0, str_size;
290     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
291
292     if (c->itunes_metadata && atom.type == MKTAG('-','-','-','-'))
293         return mov_read_custom_metadata(c, pb, atom);
294
295     switch (atom.type) {
296     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
297     case MKTAG(0xa9,'a','u','t'):
298     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
299     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
300     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
301     case MKTAG( 'c','p','r','t'):
302     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
303     case MKTAG(0xa9,'g','r','p'): key = "grouping"; break;
304     case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break;
305     case MKTAG(0xa9,'c','m','t'):
306     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
307     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
308     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
309     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
310     case MKTAG( 'g','n','r','e'): key = "genre";
311         parse = mov_metadata_gnre; break;
312     case MKTAG(0xa9,'t','o','o'):
313     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
314     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
315     case MKTAG( 'd','e','s','c'): key = "description";break;
316     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
317     case MKTAG( 't','v','s','h'): key = "show";      break;
318     case MKTAG( 't','v','e','n'): key = "episode_id";break;
319     case MKTAG( 't','v','n','n'): key = "network";   break;
320     case MKTAG( 't','r','k','n'): key = "track";
321         parse = mov_metadata_track_or_disc_number; break;
322     case MKTAG( 'd','i','s','k'): key = "disc";
323         parse = mov_metadata_track_or_disc_number; break;
324     case MKTAG( 't','v','e','s'): key = "episode_sort";
325         parse = mov_metadata_int8_bypass_padding; break;
326     case MKTAG( 't','v','s','n'): key = "season_number";
327         parse = mov_metadata_int8_bypass_padding; break;
328     case MKTAG( 's','t','i','k'): key = "media_type";
329         parse = mov_metadata_int8_no_padding; break;
330     case MKTAG( 'h','d','v','d'): key = "hd_video";
331         parse = mov_metadata_int8_no_padding; break;
332     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
333         parse = mov_metadata_int8_no_padding; break;
334     }
335
336     if (c->itunes_metadata && atom.size > 8) {
337         int data_size = avio_rb32(pb);
338         int tag = avio_rl32(pb);
339         if (tag == MKTAG('d','a','t','a')) {
340             data_type = avio_rb32(pb); // type
341             avio_rb32(pb); // unknown
342             str_size = data_size - 16;
343             atom.size -= 16;
344
345             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
346                 int ret = mov_read_covr(c, pb, data_type, str_size);
347                 if (ret < 0) {
348                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
349                     return ret;
350                 }
351             }
352         } else return 0;
353     } else if (atom.size > 4 && key && !c->itunes_metadata) {
354         str_size = avio_rb16(pb); // string length
355         langcode = avio_rb16(pb);
356         ff_mov_lang_to_iso639(langcode, language);
357         atom.size -= 4;
358     } else
359         str_size = atom.size;
360
361 #ifdef MOV_EXPORT_ALL_METADATA
362     if (!key) {
363         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
364         key = tmp_key;
365     }
366 #endif
367
368     if (!key)
369         return 0;
370     if (atom.size < 0)
371         return AVERROR_INVALIDDATA;
372
373     str_size = FFMIN3(sizeof(str)-1, str_size, atom.size);
374
375     if (parse)
376         parse(c, pb, str_size, key);
377     else {
378         if (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff))) { // MAC Encoded
379             mov_read_mac_string(c, pb, str_size, str, sizeof(str));
380         } else {
381             avio_read(pb, str, str_size);
382             str[str_size] = 0;
383         }
384         av_dict_set(&c->fc->metadata, key, str, 0);
385         if (*language && strcmp(language, "und")) {
386             snprintf(key2, sizeof(key2), "%s-%s", key, language);
387             av_dict_set(&c->fc->metadata, key2, str, 0);
388         }
389     }
390     av_dlog(c->fc, "lang \"%3s\" ", language);
391     av_dlog(c->fc, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
392             key, str, (char*)&atom.type, str_size, atom.size);
393
394     return 0;
395 }
396
397 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
398 {
399     int64_t start;
400     int i, nb_chapters, str_len, version;
401     char str[256+1];
402
403     if ((atom.size -= 5) < 0)
404         return 0;
405
406     version = avio_r8(pb);
407     avio_rb24(pb);
408     if (version)
409         avio_rb32(pb); // ???
410     nb_chapters = avio_r8(pb);
411
412     for (i = 0; i < nb_chapters; i++) {
413         if (atom.size < 9)
414             return 0;
415
416         start = avio_rb64(pb);
417         str_len = avio_r8(pb);
418
419         if ((atom.size -= 9+str_len) < 0)
420             return 0;
421
422         avio_read(pb, str, str_len);
423         str[str_len] = 0;
424         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
425     }
426     return 0;
427 }
428
429 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
430 {
431     AVStream *st;
432     MOVStreamContext *sc;
433     int entries, i, j;
434
435     if (c->fc->nb_streams < 1)
436         return 0;
437     st = c->fc->streams[c->fc->nb_streams-1];
438     sc = st->priv_data;
439
440     avio_rb32(pb); // version + flags
441     entries = avio_rb32(pb);
442     if (entries >= UINT_MAX / sizeof(*sc->drefs))
443         return AVERROR_INVALIDDATA;
444     av_free(sc->drefs);
445     sc->drefs_count = 0;
446     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
447     if (!sc->drefs)
448         return AVERROR(ENOMEM);
449     sc->drefs_count = entries;
450
451     for (i = 0; i < sc->drefs_count; i++) {
452         MOVDref *dref = &sc->drefs[i];
453         uint32_t size = avio_rb32(pb);
454         int64_t next = avio_tell(pb) + size - 4;
455
456         if (size < 12)
457             return AVERROR_INVALIDDATA;
458
459         dref->type = avio_rl32(pb);
460         avio_rb32(pb); // version + flags
461         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
462
463         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
464             /* macintosh alias record */
465             uint16_t volume_len, len;
466             int16_t type;
467
468             avio_skip(pb, 10);
469
470             volume_len = avio_r8(pb);
471             volume_len = FFMIN(volume_len, 27);
472             avio_read(pb, dref->volume, 27);
473             dref->volume[volume_len] = 0;
474             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
475
476             avio_skip(pb, 12);
477
478             len = avio_r8(pb);
479             len = FFMIN(len, 63);
480             avio_read(pb, dref->filename, 63);
481             dref->filename[len] = 0;
482             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
483
484             avio_skip(pb, 16);
485
486             /* read next level up_from_alias/down_to_target */
487             dref->nlvl_from = avio_rb16(pb);
488             dref->nlvl_to   = avio_rb16(pb);
489             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
490                    dref->nlvl_from, dref->nlvl_to);
491
492             avio_skip(pb, 16);
493
494             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
495                 if(url_feof(pb))
496                     return AVERROR_EOF;
497                 type = avio_rb16(pb);
498                 len = avio_rb16(pb);
499                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
500                 if (len&1)
501                     len += 1;
502                 if (type == 2) { // absolute path
503                     av_free(dref->path);
504                     dref->path = av_mallocz(len+1);
505                     if (!dref->path)
506                         return AVERROR(ENOMEM);
507                     avio_read(pb, dref->path, len);
508                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
509                         len -= volume_len;
510                         memmove(dref->path, dref->path+volume_len, len);
511                         dref->path[len] = 0;
512                     }
513                     for (j = 0; j < len; j++)
514                         if (dref->path[j] == ':')
515                             dref->path[j] = '/';
516                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
517                 } else if (type == 0) { // directory name
518                     av_free(dref->dir);
519                     dref->dir = av_malloc(len+1);
520                     if (!dref->dir)
521                         return AVERROR(ENOMEM);
522                     avio_read(pb, dref->dir, len);
523                     dref->dir[len] = 0;
524                     for (j = 0; j < len; j++)
525                         if (dref->dir[j] == ':')
526                             dref->dir[j] = '/';
527                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
528                 } else
529                     avio_skip(pb, len);
530             }
531         }
532         avio_seek(pb, next, SEEK_SET);
533     }
534     return 0;
535 }
536
537 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
538 {
539     AVStream *st;
540     uint32_t type;
541     uint32_t av_unused ctype;
542     int title_size;
543     char *title_str;
544
545     if (c->fc->nb_streams < 1) // meta before first trak
546         return 0;
547
548     st = c->fc->streams[c->fc->nb_streams-1];
549
550     avio_r8(pb); /* version */
551     avio_rb24(pb); /* flags */
552
553     /* component type */
554     ctype = avio_rl32(pb);
555     type = avio_rl32(pb); /* component subtype */
556
557     av_dlog(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
558     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
559
560     if     (type == MKTAG('v','i','d','e'))
561         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
562     else if (type == MKTAG('s','o','u','n'))
563         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
564     else if (type == MKTAG('m','1','a',' '))
565         st->codec->codec_id = AV_CODEC_ID_MP2;
566     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
567         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
568
569     avio_rb32(pb); /* component  manufacture */
570     avio_rb32(pb); /* component flags */
571     avio_rb32(pb); /* component flags mask */
572
573     title_size = atom.size - 24;
574     if (title_size > 0) {
575         title_str = av_malloc(title_size + 1); /* Add null terminator */
576         if (!title_str)
577             return AVERROR(ENOMEM);
578         avio_read(pb, title_str, title_size);
579         title_str[title_size] = 0;
580         if (title_str[0])
581             av_dict_set(&st->metadata, "handler_name", title_str +
582                         (!c->isom && title_str[0] == title_size - 1), 0);
583         av_freep(&title_str);
584     }
585
586     return 0;
587 }
588
589 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb, MOVAtom atom)
590 {
591     AVStream *st;
592     int tag;
593
594     if (fc->nb_streams < 1)
595         return 0;
596     st = fc->streams[fc->nb_streams-1];
597
598     avio_rb32(pb); /* version + flags */
599     ff_mp4_read_descr(fc, pb, &tag);
600     if (tag == MP4ESDescrTag) {
601         ff_mp4_parse_es_descr(pb, NULL);
602     } else
603         avio_rb16(pb); /* ID */
604
605     ff_mp4_read_descr(fc, pb, &tag);
606     if (tag == MP4DecConfigDescrTag)
607         ff_mp4_read_dec_config_descr(fc, st, pb);
608     return 0;
609 }
610
611 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
612 {
613     return ff_mov_read_esds(c->fc, pb, atom);
614 }
615
616 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
617 {
618     AVStream *st;
619     int ac3info, acmod, lfeon, bsmod;
620
621     if (c->fc->nb_streams < 1)
622         return 0;
623     st = c->fc->streams[c->fc->nb_streams-1];
624
625     ac3info = avio_rb24(pb);
626     bsmod = (ac3info >> 14) & 0x7;
627     acmod = (ac3info >> 11) & 0x7;
628     lfeon = (ac3info >> 10) & 0x1;
629     st->codec->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
630     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
631     if (lfeon)
632         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
633     st->codec->audio_service_type = bsmod;
634     if (st->codec->channels > 1 && bsmod == 0x7)
635         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
636
637     return 0;
638 }
639
640 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
641 {
642     AVStream *st;
643     int eac3info, acmod, lfeon, bsmod;
644
645     if (c->fc->nb_streams < 1)
646         return 0;
647     st = c->fc->streams[c->fc->nb_streams-1];
648
649     /* No need to parse fields for additional independent substreams and its
650      * associated dependent substreams since libavcodec's E-AC-3 decoder
651      * does not support them yet. */
652     avio_rb16(pb); /* data_rate and num_ind_sub */
653     eac3info = avio_rb24(pb);
654     bsmod = (eac3info >> 12) & 0x1f;
655     acmod = (eac3info >>  9) & 0x7;
656     lfeon = (eac3info >>  8) & 0x1;
657     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
658     if (lfeon)
659         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
660     st->codec->channels = av_get_channel_layout_nb_channels(st->codec->channel_layout);
661     st->codec->audio_service_type = bsmod;
662     if (st->codec->channels > 1 && bsmod == 0x7)
663         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
664
665     return 0;
666 }
667
668 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
669 {
670     AVStream *st;
671
672     if (c->fc->nb_streams < 1)
673         return 0;
674     st = c->fc->streams[c->fc->nb_streams-1];
675
676     if (atom.size < 16)
677         return 0;
678
679     ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
680
681     return 0;
682 }
683
684 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
685 {
686     AVStream *st;
687
688     if (c->fc->nb_streams < 1)
689         return 0;
690     st = c->fc->streams[c->fc->nb_streams-1];
691
692     ff_get_wav_header(pb, st->codec, atom.size);
693
694     return 0;
695 }
696
697 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
698 {
699     const int num = avio_rb32(pb);
700     const int den = avio_rb32(pb);
701     AVStream *st;
702
703     if (c->fc->nb_streams < 1)
704         return 0;
705     st = c->fc->streams[c->fc->nb_streams-1];
706
707     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
708         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
709         av_log(c->fc, AV_LOG_WARNING,
710                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
711                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
712                num, den);
713     } else if (den != 0) {
714         st->sample_aspect_ratio.num = num;
715         st->sample_aspect_ratio.den = den;
716     }
717     return 0;
718 }
719
720 /* this atom contains actual media data */
721 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
722 {
723     if (atom.size == 0) /* wrong one (MP4) */
724         return 0;
725     c->found_mdat=1;
726     return 0; /* now go for moov */
727 }
728
729 /* read major brand, minor version and compatible brands and store them as metadata */
730 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
731 {
732     uint32_t minor_ver;
733     int comp_brand_size;
734     char minor_ver_str[11]; /* 32 bit integer -> 10 digits + null */
735     char* comp_brands_str;
736     uint8_t type[5] = {0};
737
738     avio_read(pb, type, 4);
739     if (strcmp(type, "qt  "))
740         c->isom = 1;
741     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
742     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
743     minor_ver = avio_rb32(pb); /* minor version */
744     snprintf(minor_ver_str, sizeof(minor_ver_str), "%d", minor_ver);
745     av_dict_set(&c->fc->metadata, "minor_version", minor_ver_str, 0);
746
747     comp_brand_size = atom.size - 8;
748     if (comp_brand_size < 0)
749         return AVERROR_INVALIDDATA;
750     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
751     if (!comp_brands_str)
752         return AVERROR(ENOMEM);
753     avio_read(pb, comp_brands_str, comp_brand_size);
754     comp_brands_str[comp_brand_size] = 0;
755     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
756     av_freep(&comp_brands_str);
757
758     return 0;
759 }
760
761 /* this atom should contain all header atoms */
762 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
763 {
764     int ret;
765
766     if ((ret = mov_read_default(c, pb, atom)) < 0)
767         return ret;
768     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
769     /* so we don't parse the whole file if over a network */
770     c->found_moov=1;
771     return 0; /* now go for mdat */
772 }
773
774 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
775 {
776     c->fragment.moof_offset = avio_tell(pb) - 8;
777     av_dlog(c->fc, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
778     return mov_read_default(c, pb, atom);
779 }
780
781 static void mov_metadata_creation_time(AVDictionary **metadata, time_t time)
782 {
783     char buffer[32];
784     if (time) {
785         struct tm *ptm;
786         if(time >= 2082844800)
787             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
788         ptm = gmtime(&time);
789         if (!ptm) return;
790         strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm);
791         av_dict_set(metadata, "creation_time", buffer, 0);
792     }
793 }
794
795 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
796 {
797     AVStream *st;
798     MOVStreamContext *sc;
799     int version;
800     char language[4] = {0};
801     unsigned lang;
802     time_t creation_time;
803
804     if (c->fc->nb_streams < 1)
805         return 0;
806     st = c->fc->streams[c->fc->nb_streams-1];
807     sc = st->priv_data;
808
809     version = avio_r8(pb);
810     if (version > 1) {
811         av_log_ask_for_sample(c, "unsupported version %d\n", version);
812         return AVERROR_PATCHWELCOME;
813     }
814     avio_rb24(pb); /* flags */
815     if (version == 1) {
816         creation_time = avio_rb64(pb);
817         avio_rb64(pb);
818     } else {
819         creation_time = avio_rb32(pb);
820         avio_rb32(pb); /* modification time */
821     }
822     mov_metadata_creation_time(&st->metadata, creation_time);
823
824     sc->time_scale = avio_rb32(pb);
825     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
826
827     lang = avio_rb16(pb); /* language */
828     if (ff_mov_lang_to_iso639(lang, language))
829         av_dict_set(&st->metadata, "language", language, 0);
830     avio_rb16(pb); /* quality */
831
832     return 0;
833 }
834
835 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
836 {
837     time_t creation_time;
838     int version = avio_r8(pb); /* version */
839     avio_rb24(pb); /* flags */
840
841     if (version == 1) {
842         creation_time = avio_rb64(pb);
843         avio_rb64(pb);
844     } else {
845         creation_time = avio_rb32(pb);
846         avio_rb32(pb); /* modification time */
847     }
848     mov_metadata_creation_time(&c->fc->metadata, creation_time);
849     c->time_scale = avio_rb32(pb); /* time scale */
850
851     av_dlog(c->fc, "time scale = %i\n", c->time_scale);
852
853     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
854     // set the AVCodecContext duration because the duration of individual tracks
855     // may be inaccurate
856     if (c->time_scale > 0)
857         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
858     avio_rb32(pb); /* preferred scale */
859
860     avio_rb16(pb); /* preferred volume */
861
862     avio_skip(pb, 10); /* reserved */
863
864     avio_skip(pb, 36); /* display matrix */
865
866     avio_rb32(pb); /* preview time */
867     avio_rb32(pb); /* preview duration */
868     avio_rb32(pb); /* poster time */
869     avio_rb32(pb); /* selection time */
870     avio_rb32(pb); /* selection duration */
871     avio_rb32(pb); /* current time */
872     avio_rb32(pb); /* next track ID */
873     return 0;
874 }
875
876 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
877 {
878     AVStream *st;
879     int little_endian;
880
881     if (c->fc->nb_streams < 1)
882         return 0;
883     st = c->fc->streams[c->fc->nb_streams-1];
884
885     little_endian = avio_rb16(pb) & 0xFF;
886     av_dlog(c->fc, "enda %d\n", little_endian);
887     if (little_endian == 1) {
888         switch (st->codec->codec_id) {
889         case AV_CODEC_ID_PCM_S24BE:
890             st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
891             break;
892         case AV_CODEC_ID_PCM_S32BE:
893             st->codec->codec_id = AV_CODEC_ID_PCM_S32LE;
894             break;
895         case AV_CODEC_ID_PCM_F32BE:
896             st->codec->codec_id = AV_CODEC_ID_PCM_F32LE;
897             break;
898         case AV_CODEC_ID_PCM_F64BE:
899             st->codec->codec_id = AV_CODEC_ID_PCM_F64LE;
900             break;
901         default:
902             break;
903         }
904     }
905     return 0;
906 }
907
908 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
909 {
910     AVStream *st;
911     unsigned mov_field_order;
912     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
913
914     if (c->fc->nb_streams < 1) // will happen with jp2 files
915         return 0;
916     st = c->fc->streams[c->fc->nb_streams-1];
917     if (atom.size < 2)
918         return AVERROR_INVALIDDATA;
919     mov_field_order = avio_rb16(pb);
920     if ((mov_field_order & 0xFF00) == 0x0100)
921         decoded_field_order = AV_FIELD_PROGRESSIVE;
922     else if ((mov_field_order & 0xFF00) == 0x0200) {
923         switch (mov_field_order & 0xFF) {
924         case 0x01: decoded_field_order = AV_FIELD_TT;
925                    break;
926         case 0x06: decoded_field_order = AV_FIELD_BB;
927                    break;
928         case 0x09: decoded_field_order = AV_FIELD_TB;
929                    break;
930         case 0x0E: decoded_field_order = AV_FIELD_BT;
931                    break;
932         }
933     }
934     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
935         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
936     }
937     st->codec->field_order = decoded_field_order;
938
939     return 0;
940 }
941
942 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
943 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
944                               enum AVCodecID codec_id)
945 {
946     AVStream *st;
947     uint64_t size;
948     uint8_t *buf;
949
950     if (c->fc->nb_streams < 1) // will happen with jp2 files
951         return 0;
952     st= c->fc->streams[c->fc->nb_streams-1];
953
954     if (st->codec->codec_id != codec_id)
955         return 0; /* unexpected codec_id - don't mess with extradata */
956
957     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
958     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
959         return AVERROR_INVALIDDATA;
960     buf= av_realloc(st->codec->extradata, size);
961     if (!buf)
962         return AVERROR(ENOMEM);
963     st->codec->extradata= buf;
964     buf+= st->codec->extradata_size;
965     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
966     AV_WB32(       buf    , atom.size + 8);
967     AV_WL32(       buf + 4, atom.type);
968     avio_read(pb, buf + 8, atom.size);
969     return 0;
970 }
971
972 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
973 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
974 {
975     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
976 }
977
978 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
979 {
980     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
981 }
982
983 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
984 {
985     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
986 }
987
988 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
989 {
990     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
991 }
992
993 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
994 {
995     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
996 }
997
998 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
999 {
1000     AVStream *st;
1001
1002     if (c->fc->nb_streams < 1)
1003         return 0;
1004     st = c->fc->streams[c->fc->nb_streams-1];
1005
1006     if ((uint64_t)atom.size > (1<<30))
1007         return AVERROR_INVALIDDATA;
1008
1009     if (st->codec->codec_id == AV_CODEC_ID_QDM2 || st->codec->codec_id == AV_CODEC_ID_QDMC) {
1010         // pass all frma atom to codec, needed at least for QDMC and QDM2
1011         av_free(st->codec->extradata);
1012         st->codec->extradata_size = 0;
1013         st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
1014         if (!st->codec->extradata)
1015             return AVERROR(ENOMEM);
1016         st->codec->extradata_size = atom.size;
1017         avio_read(pb, st->codec->extradata, atom.size);
1018     } else if (atom.size > 8) { /* to read frma, esds atoms */
1019         int ret;
1020         if ((ret = mov_read_default(c, pb, atom)) < 0)
1021             return ret;
1022     } else
1023         avio_skip(pb, atom.size);
1024     return 0;
1025 }
1026
1027 /**
1028  * This function reads atom content and puts data in extradata without tag
1029  * nor size unlike mov_read_extradata.
1030  */
1031 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1032 {
1033     AVStream *st;
1034
1035     if (c->fc->nb_streams < 1)
1036         return 0;
1037     st = c->fc->streams[c->fc->nb_streams-1];
1038
1039     if ((uint64_t)atom.size > (1<<30))
1040         return AVERROR_INVALIDDATA;
1041
1042     if (atom.size >= 10) {
1043         // Broken files created by legacy versions of libavformat will
1044         // wrap a whole fiel atom inside of a glbl atom.
1045         unsigned size = avio_rb32(pb);
1046         unsigned type = avio_rl32(pb);
1047         avio_seek(pb, -8, SEEK_CUR);
1048         if (type == MKTAG('f','i','e','l') && size == atom.size)
1049             return mov_read_default(c, pb, atom);
1050     }
1051     av_free(st->codec->extradata);
1052     st->codec->extradata_size = 0;
1053     st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
1054     if (!st->codec->extradata)
1055         return AVERROR(ENOMEM);
1056     st->codec->extradata_size = atom.size;
1057     avio_read(pb, st->codec->extradata, atom.size);
1058     return 0;
1059 }
1060
1061 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1062 {
1063     AVStream *st;
1064     uint8_t profile_level;
1065
1066     if (c->fc->nb_streams < 1)
1067         return 0;
1068     st = c->fc->streams[c->fc->nb_streams-1];
1069
1070     if (atom.size >= (1<<28) || atom.size < 7)
1071         return AVERROR_INVALIDDATA;
1072
1073     profile_level = avio_r8(pb);
1074     if ((profile_level & 0xf0) != 0xc0)
1075         return 0;
1076
1077     av_free(st->codec->extradata);
1078     st->codec->extradata_size = 0;
1079     st->codec->extradata = av_mallocz(atom.size - 7 + FF_INPUT_BUFFER_PADDING_SIZE);
1080     if (!st->codec->extradata)
1081         return AVERROR(ENOMEM);
1082     st->codec->extradata_size = atom.size - 7;
1083     avio_seek(pb, 6, SEEK_CUR);
1084     avio_read(pb, st->codec->extradata, st->codec->extradata_size);
1085     return 0;
1086 }
1087
1088 /**
1089  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1090  * but can have extradata appended at the end after the 40 bytes belonging
1091  * to the struct.
1092  */
1093 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1094 {
1095     AVStream *st;
1096
1097     if (c->fc->nb_streams < 1)
1098         return 0;
1099     if (atom.size <= 40)
1100         return 0;
1101     st = c->fc->streams[c->fc->nb_streams-1];
1102
1103     if ((uint64_t)atom.size > (1<<30))
1104         return AVERROR_INVALIDDATA;
1105
1106     av_free(st->codec->extradata);
1107     st->codec->extradata_size = 0;
1108     st->codec->extradata = av_mallocz(atom.size - 40 + FF_INPUT_BUFFER_PADDING_SIZE);
1109     if (!st->codec->extradata)
1110         return AVERROR(ENOMEM);
1111     st->codec->extradata_size = atom.size - 40;
1112     avio_skip(pb, 40);
1113     avio_read(pb, st->codec->extradata, atom.size - 40);
1114     return 0;
1115 }
1116
1117 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1118 {
1119     AVStream *st;
1120     MOVStreamContext *sc;
1121     unsigned int i, entries;
1122
1123     if (c->fc->nb_streams < 1)
1124         return 0;
1125     st = c->fc->streams[c->fc->nb_streams-1];
1126     sc = st->priv_data;
1127
1128     avio_r8(pb); /* version */
1129     avio_rb24(pb); /* flags */
1130
1131     entries = avio_rb32(pb);
1132
1133     if (!entries)
1134         return 0;
1135     if (entries >= UINT_MAX/sizeof(int64_t))
1136         return AVERROR_INVALIDDATA;
1137
1138     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
1139     if (!sc->chunk_offsets)
1140         return AVERROR(ENOMEM);
1141     sc->chunk_count = entries;
1142
1143     if      (atom.type == MKTAG('s','t','c','o'))
1144         for (i = 0; i < entries && !pb->eof_reached; i++)
1145             sc->chunk_offsets[i] = avio_rb32(pb);
1146     else if (atom.type == MKTAG('c','o','6','4'))
1147         for (i = 0; i < entries && !pb->eof_reached; i++)
1148             sc->chunk_offsets[i] = avio_rb64(pb);
1149     else
1150         return AVERROR_INVALIDDATA;
1151
1152     sc->chunk_count = i;
1153
1154     if (pb->eof_reached)
1155         return AVERROR_EOF;
1156
1157     return 0;
1158 }
1159
1160 /**
1161  * Compute codec id for 'lpcm' tag.
1162  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1163  */
1164 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1165 {
1166     if (flags & 1) { // floating point
1167         if (flags & 2) { // big endian
1168             if      (bps == 32) return AV_CODEC_ID_PCM_F32BE;
1169             else if (bps == 64) return AV_CODEC_ID_PCM_F64BE;
1170         } else {
1171             if      (bps == 32) return AV_CODEC_ID_PCM_F32LE;
1172             else if (bps == 64) return AV_CODEC_ID_PCM_F64LE;
1173         }
1174     } else {
1175         if (flags & 2) {
1176             if      (bps == 8)
1177                 // signed integer
1178                 if (flags & 4)  return AV_CODEC_ID_PCM_S8;
1179                 else            return AV_CODEC_ID_PCM_U8;
1180             else if (bps == 16) return AV_CODEC_ID_PCM_S16BE;
1181             else if (bps == 24) return AV_CODEC_ID_PCM_S24BE;
1182             else if (bps == 32) return AV_CODEC_ID_PCM_S32BE;
1183         } else {
1184             if      (bps == 8)
1185                 if (flags & 4)  return AV_CODEC_ID_PCM_S8;
1186                 else            return AV_CODEC_ID_PCM_U8;
1187             else if (bps == 16) return AV_CODEC_ID_PCM_S16LE;
1188             else if (bps == 24) return AV_CODEC_ID_PCM_S24LE;
1189             else if (bps == 32) return AV_CODEC_ID_PCM_S32LE;
1190         }
1191     }
1192     return AV_CODEC_ID_NONE;
1193 }
1194
1195 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
1196 {
1197     AVStream *st;
1198     MOVStreamContext *sc;
1199     int j, pseudo_stream_id;
1200
1201     if (c->fc->nb_streams < 1)
1202         return 0;
1203     st = c->fc->streams[c->fc->nb_streams-1];
1204     sc = st->priv_data;
1205
1206     for (pseudo_stream_id = 0;
1207          pseudo_stream_id < entries && !pb->eof_reached;
1208          pseudo_stream_id++) {
1209         //Parsing Sample description table
1210         enum AVCodecID id;
1211         int dref_id = 1;
1212         MOVAtom a = { AV_RL32("stsd") };
1213         int64_t start_pos = avio_tell(pb);
1214         int64_t size = avio_rb32(pb); /* size */
1215         uint32_t format = avio_rl32(pb); /* data format */
1216
1217         if (size >= 16) {
1218             avio_rb32(pb); /* reserved */
1219             avio_rb16(pb); /* reserved */
1220             dref_id = avio_rb16(pb);
1221         }else if (size <= 7){
1222             av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRId64" in stsd\n", size);
1223             return AVERROR_INVALIDDATA;
1224         }
1225
1226         if (st->codec->codec_tag &&
1227             st->codec->codec_tag != format &&
1228             (c->fc->video_codec_id ? ff_codec_get_id(ff_codec_movvideo_tags, format) != c->fc->video_codec_id
1229                                    : st->codec->codec_tag != MKTAG('j','p','e','g'))
1230            ){
1231             /* Multiple fourcc, we skip JPEG. This is not correct, we should
1232              * export it as a separate AVStream but this needs a few changes
1233              * in the MOV demuxer, patch welcome. */
1234             av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
1235             avio_skip(pb, size - (avio_tell(pb) - start_pos));
1236             continue;
1237         }
1238         /* we cannot demux concatenated h264 streams because of different extradata */
1239         if (st->codec->codec_tag && st->codec->codec_tag == AV_RL32("avc1"))
1240             av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 might not play corrently.\n");
1241         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
1242         sc->dref_id= dref_id;
1243
1244         st->codec->codec_tag = format;
1245         id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1246         if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8)))
1247             id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format)&0xFFFF);
1248
1249         if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1250             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1251         } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO && /* do not overwrite codec type */
1252                    format && format != MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */
1253             id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1254             if (id <= 0)
1255                 id = ff_codec_get_id(ff_codec_bmp_tags, format);
1256             if (id > 0)
1257                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1258             else if (st->codec->codec_type == AVMEDIA_TYPE_DATA ||
1259                      (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1260                       st->codec->codec_id == AV_CODEC_ID_NONE)){
1261                 id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1262                 if (id > 0)
1263                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1264             }
1265         }
1266
1267         av_dlog(c->fc, "size=%"PRId64" 4CC= %c%c%c%c codec_type=%d\n", size,
1268                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1269                 (format >> 24) & 0xff, st->codec->codec_type);
1270
1271         if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1272             unsigned int color_depth, len;
1273             int color_greyscale;
1274             int color_table_id;
1275
1276             st->codec->codec_id = id;
1277             avio_rb16(pb); /* version */
1278             avio_rb16(pb); /* revision level */
1279             avio_rb32(pb); /* vendor */
1280             avio_rb32(pb); /* temporal quality */
1281             avio_rb32(pb); /* spatial quality */
1282
1283             st->codec->width = avio_rb16(pb); /* width */
1284             st->codec->height = avio_rb16(pb); /* height */
1285
1286             avio_rb32(pb); /* horiz resolution */
1287             avio_rb32(pb); /* vert resolution */
1288             avio_rb32(pb); /* data size, always 0 */
1289             avio_rb16(pb); /* frames per samples */
1290
1291             len = avio_r8(pb); /* codec name, pascal string */
1292             if (len > 31)
1293                 len = 31;
1294             mov_read_mac_string(c, pb, len, st->codec->codec_name, 32);
1295             if (len < 31)
1296                 avio_skip(pb, 31 - len);
1297             /* codec_tag YV12 triggers an UV swap in rawdec.c */
1298             if (!memcmp(st->codec->codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25))
1299                 st->codec->codec_tag=MKTAG('I', '4', '2', '0');
1300
1301             st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1302             color_table_id = avio_rb16(pb); /* colortable id */
1303             av_dlog(c->fc, "depth %d, ctab id %d\n",
1304                    st->codec->bits_per_coded_sample, color_table_id);
1305             /* figure out the palette situation */
1306             color_depth = st->codec->bits_per_coded_sample & 0x1F;
1307             color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1308
1309             /* if the depth is 2, 4, or 8 bpp, file is palettized */
1310             if ((color_depth == 2) || (color_depth == 4) ||
1311                 (color_depth == 8)) {
1312                 /* for palette traversal */
1313                 unsigned int color_start, color_count, color_end;
1314                 unsigned char a, r, g, b;
1315
1316                 if (color_greyscale) {
1317                     int color_index, color_dec;
1318                     /* compute the greyscale palette */
1319                     st->codec->bits_per_coded_sample = color_depth;
1320                     color_count = 1 << color_depth;
1321                     color_index = 255;
1322                     color_dec = 256 / (color_count - 1);
1323                     for (j = 0; j < color_count; j++) {
1324                         if (id == AV_CODEC_ID_CINEPAK){
1325                             r = g = b = color_count - 1 - color_index;
1326                         }else
1327                         r = g = b = color_index;
1328                         sc->palette[j] =
1329                             (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1330                         color_index -= color_dec;
1331                         if (color_index < 0)
1332                             color_index = 0;
1333                     }
1334                 } else if (color_table_id) {
1335                     const uint8_t *color_table;
1336                     /* if flag bit 3 is set, use the default palette */
1337                     color_count = 1 << color_depth;
1338                     if (color_depth == 2)
1339                         color_table = ff_qt_default_palette_4;
1340                     else if (color_depth == 4)
1341                         color_table = ff_qt_default_palette_16;
1342                     else
1343                         color_table = ff_qt_default_palette_256;
1344
1345                     for (j = 0; j < color_count; j++) {
1346                         r = color_table[j * 3 + 0];
1347                         g = color_table[j * 3 + 1];
1348                         b = color_table[j * 3 + 2];
1349                         sc->palette[j] =
1350                             (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1351                     }
1352                 } else {
1353                     /* load the palette from the file */
1354                     color_start = avio_rb32(pb);
1355                     color_count = avio_rb16(pb);
1356                     color_end = avio_rb16(pb);
1357                     if ((color_start <= 255) &&
1358                         (color_end <= 255)) {
1359                         for (j = color_start; j <= color_end; j++) {
1360                             /* each A, R, G, or B component is 16 bits;
1361                              * only use the top 8 bits */
1362                             a = avio_r8(pb);
1363                             avio_r8(pb);
1364                             r = avio_r8(pb);
1365                             avio_r8(pb);
1366                             g = avio_r8(pb);
1367                             avio_r8(pb);
1368                             b = avio_r8(pb);
1369                             avio_r8(pb);
1370                             sc->palette[j] =
1371                                 (a << 24 ) | (r << 16) | (g << 8) | (b);
1372                         }
1373                     }
1374                 }
1375                 sc->has_palette = 1;
1376             }
1377         } else if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1378             int bits_per_sample, flags;
1379             uint16_t version = avio_rb16(pb);
1380
1381             st->codec->codec_id = id;
1382             avio_rb16(pb); /* revision level */
1383             avio_rb32(pb); /* vendor */
1384
1385             st->codec->channels = avio_rb16(pb);             /* channel count */
1386             av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1387             st->codec->bits_per_coded_sample = avio_rb16(pb);      /* sample size */
1388
1389             sc->audio_cid = avio_rb16(pb);
1390             avio_rb16(pb); /* packet size = 0 */
1391
1392             st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1393
1394             //Read QT version 1 fields. In version 0 these do not exist.
1395             av_dlog(c->fc, "version =%d, isom =%d\n",version,c->isom);
1396             if (!c->isom) {
1397                 if (version==1) {
1398                     sc->samples_per_frame = avio_rb32(pb);
1399                     avio_rb32(pb); /* bytes per packet */
1400                     sc->bytes_per_frame = avio_rb32(pb);
1401                     avio_rb32(pb); /* bytes per sample */
1402                 } else if (version==2) {
1403                     avio_rb32(pb); /* sizeof struct only */
1404                     st->codec->sample_rate = av_int2double(avio_rb64(pb)); /* float 64 */
1405                     st->codec->channels = avio_rb32(pb);
1406                     avio_rb32(pb); /* always 0x7F000000 */
1407                     st->codec->bits_per_coded_sample = avio_rb32(pb); /* bits per channel if sound is uncompressed */
1408                     flags = avio_rb32(pb); /* lpcm format specific flag */
1409                     sc->bytes_per_frame = avio_rb32(pb); /* bytes per audio packet if constant */
1410                     sc->samples_per_frame = avio_rb32(pb); /* lpcm frames per audio packet if constant */
1411                     if (format == MKTAG('l','p','c','m'))
1412                         st->codec->codec_id = ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags);
1413                 }
1414             }
1415
1416             switch (st->codec->codec_id) {
1417             case AV_CODEC_ID_PCM_S8:
1418             case AV_CODEC_ID_PCM_U8:
1419                 if (st->codec->bits_per_coded_sample == 16)
1420                     st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
1421                 break;
1422             case AV_CODEC_ID_PCM_S16LE:
1423             case AV_CODEC_ID_PCM_S16BE:
1424                 if (st->codec->bits_per_coded_sample == 8)
1425                     st->codec->codec_id = AV_CODEC_ID_PCM_S8;
1426                 else if (st->codec->bits_per_coded_sample == 24)
1427                     st->codec->codec_id =
1428                         st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1429                         AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1430                 break;
1431             /* set values for old format before stsd version 1 appeared */
1432             case AV_CODEC_ID_MACE3:
1433                 sc->samples_per_frame = 6;
1434                 sc->bytes_per_frame = 2*st->codec->channels;
1435                 break;
1436             case AV_CODEC_ID_MACE6:
1437                 sc->samples_per_frame = 6;
1438                 sc->bytes_per_frame = 1*st->codec->channels;
1439                 break;
1440             case AV_CODEC_ID_ADPCM_IMA_QT:
1441                 sc->samples_per_frame = 64;
1442                 sc->bytes_per_frame = 34*st->codec->channels;
1443                 break;
1444             case AV_CODEC_ID_GSM:
1445                 sc->samples_per_frame = 160;
1446                 sc->bytes_per_frame = 33;
1447                 break;
1448             default:
1449                 break;
1450             }
1451
1452             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1453             if (bits_per_sample) {
1454                 st->codec->bits_per_coded_sample = bits_per_sample;
1455                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1456             }
1457         } else if (st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1458             // ttxt stsd contains display flags, justification, background
1459             // color, fonts, and default styles, so fake an atom to read it
1460             MOVAtom fake_atom = { .size = size - (avio_tell(pb) - start_pos) };
1461             if (format != AV_RL32("mp4s")) // mp4s contains a regular esds atom
1462                 mov_read_glbl(c, pb, fake_atom);
1463             st->codec->codec_id= id;
1464             st->codec->width = sc->width;
1465             st->codec->height = sc->height;
1466         } else {
1467             if (st->codec->codec_tag == MKTAG('t','m','c','d')) {
1468                 MOVStreamContext *tmcd_ctx = st->priv_data;
1469                 int val;
1470                 avio_rb32(pb);       /* reserved */
1471                 val = avio_rb32(pb); /* flags */
1472                 tmcd_ctx->tmcd_flags = val;
1473                 if (val & 1)
1474                     st->codec->flags2 |= CODEC_FLAG2_DROP_FRAME_TIMECODE;
1475                 avio_rb32(pb); /* time scale */
1476                 avio_rb32(pb); /* frame duration */
1477                 st->codec->time_base.den = avio_r8(pb); /* number of frame */
1478                 st->codec->time_base.num = 1;
1479             }
1480             /* other codec type, just skip (rtp, mp4s, ...) */
1481             avio_skip(pb, size - (avio_tell(pb) - start_pos));
1482         }
1483         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
1484         a.size = size - (avio_tell(pb) - start_pos);
1485         if (a.size > 8) {
1486             int ret;
1487             if ((ret = mov_read_default(c, pb, a)) < 0)
1488                 return ret;
1489         } else if (a.size > 0)
1490             avio_skip(pb, a.size);
1491     }
1492
1493     if (pb->eof_reached)
1494         return AVERROR_EOF;
1495
1496     if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
1497         st->codec->sample_rate= sc->time_scale;
1498
1499     /* special codec parameters handling */
1500     switch (st->codec->codec_id) {
1501 #if CONFIG_DV_DEMUXER
1502     case AV_CODEC_ID_DVAUDIO:
1503         c->dv_fctx = avformat_alloc_context();
1504         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
1505         if (!c->dv_demux) {
1506             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1507             return AVERROR(ENOMEM);
1508         }
1509         sc->dv_audio_container = 1;
1510         st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
1511         break;
1512 #endif
1513     /* no ifdef since parameters are always those */
1514     case AV_CODEC_ID_QCELP:
1515         // force sample rate for qcelp when not stored in mov
1516         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1517             st->codec->sample_rate = 8000;
1518         st->codec->channels= 1; /* really needed */
1519         break;
1520     case AV_CODEC_ID_AMR_NB:
1521         st->codec->channels= 1; /* really needed */
1522         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1523         st->codec->sample_rate = 8000;
1524         break;
1525     case AV_CODEC_ID_AMR_WB:
1526         st->codec->channels    = 1;
1527         st->codec->sample_rate = 16000;
1528         break;
1529     case AV_CODEC_ID_MP2:
1530     case AV_CODEC_ID_MP3:
1531         st->codec->codec_type = AVMEDIA_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
1532         st->need_parsing = AVSTREAM_PARSE_FULL;
1533         break;
1534     case AV_CODEC_ID_GSM:
1535     case AV_CODEC_ID_ADPCM_MS:
1536     case AV_CODEC_ID_ADPCM_IMA_WAV:
1537     case AV_CODEC_ID_ILBC:
1538         st->codec->block_align = sc->bytes_per_frame;
1539         break;
1540     case AV_CODEC_ID_ALAC:
1541         if (st->codec->extradata_size == 36) {
1542             st->codec->channels   = AV_RB8 (st->codec->extradata+21);
1543             st->codec->sample_rate = AV_RB32(st->codec->extradata+32);
1544         }
1545         break;
1546     case AV_CODEC_ID_AC3:
1547         st->need_parsing = AVSTREAM_PARSE_FULL;
1548         break;
1549     case AV_CODEC_ID_MPEG1VIDEO:
1550         st->need_parsing = AVSTREAM_PARSE_FULL;
1551         break;
1552     case AV_CODEC_ID_VC1:
1553         st->need_parsing = AVSTREAM_PARSE_FULL;
1554         break;
1555     default:
1556         break;
1557     }
1558
1559     return 0;
1560 }
1561
1562 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1563 {
1564     int entries;
1565
1566     avio_r8(pb); /* version */
1567     avio_rb24(pb); /* flags */
1568     entries = avio_rb32(pb);
1569
1570     return ff_mov_read_stsd_entries(c, pb, entries);
1571 }
1572
1573 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1574 {
1575     AVStream *st;
1576     MOVStreamContext *sc;
1577     unsigned int i, entries;
1578
1579     if (c->fc->nb_streams < 1)
1580         return 0;
1581     st = c->fc->streams[c->fc->nb_streams-1];
1582     sc = st->priv_data;
1583
1584     avio_r8(pb); /* version */
1585     avio_rb24(pb); /* flags */
1586
1587     entries = avio_rb32(pb);
1588
1589     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1590
1591     if (!entries)
1592         return 0;
1593     if (entries >= UINT_MAX / sizeof(*sc->stsc_data))
1594         return AVERROR_INVALIDDATA;
1595     sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data));
1596     if (!sc->stsc_data)
1597         return AVERROR(ENOMEM);
1598
1599     for (i = 0; i < entries && !pb->eof_reached; i++) {
1600         sc->stsc_data[i].first = avio_rb32(pb);
1601         sc->stsc_data[i].count = avio_rb32(pb);
1602         sc->stsc_data[i].id = avio_rb32(pb);
1603     }
1604
1605     sc->stsc_count = i;
1606
1607     if (pb->eof_reached)
1608         return AVERROR_EOF;
1609
1610     return 0;
1611 }
1612
1613 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1614 {
1615     AVStream *st;
1616     MOVStreamContext *sc;
1617     unsigned i, entries;
1618
1619     if (c->fc->nb_streams < 1)
1620         return 0;
1621     st = c->fc->streams[c->fc->nb_streams-1];
1622     sc = st->priv_data;
1623
1624     avio_rb32(pb); // version + flags
1625
1626     entries = avio_rb32(pb);
1627     if (entries >= UINT_MAX / sizeof(*sc->stps_data))
1628         return AVERROR_INVALIDDATA;
1629     sc->stps_data = av_malloc(entries * sizeof(*sc->stps_data));
1630     if (!sc->stps_data)
1631         return AVERROR(ENOMEM);
1632
1633     for (i = 0; i < entries && !pb->eof_reached; i++) {
1634         sc->stps_data[i] = avio_rb32(pb);
1635         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1636     }
1637
1638     sc->stps_count = i;
1639
1640     if (pb->eof_reached)
1641         return AVERROR_EOF;
1642
1643     return 0;
1644 }
1645
1646 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1647 {
1648     AVStream *st;
1649     MOVStreamContext *sc;
1650     unsigned int i, entries;
1651
1652     if (c->fc->nb_streams < 1)
1653         return 0;
1654     st = c->fc->streams[c->fc->nb_streams-1];
1655     sc = st->priv_data;
1656
1657     avio_r8(pb); /* version */
1658     avio_rb24(pb); /* flags */
1659
1660     entries = avio_rb32(pb);
1661
1662     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1663
1664     if (!entries)
1665     {
1666         sc->keyframe_absent = 1;
1667         return 0;
1668     }
1669     if (entries >= UINT_MAX / sizeof(int))
1670         return AVERROR_INVALIDDATA;
1671     sc->keyframes = av_malloc(entries * sizeof(int));
1672     if (!sc->keyframes)
1673         return AVERROR(ENOMEM);
1674
1675     for (i = 0; i < entries && !pb->eof_reached; i++) {
1676         sc->keyframes[i] = avio_rb32(pb);
1677         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1678     }
1679
1680     sc->keyframe_count = i;
1681
1682     if (pb->eof_reached)
1683         return AVERROR_EOF;
1684
1685     return 0;
1686 }
1687
1688 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1689 {
1690     AVStream *st;
1691     MOVStreamContext *sc;
1692     unsigned int i, entries, sample_size, field_size, num_bytes;
1693     GetBitContext gb;
1694     unsigned char* buf;
1695
1696     if (c->fc->nb_streams < 1)
1697         return 0;
1698     st = c->fc->streams[c->fc->nb_streams-1];
1699     sc = st->priv_data;
1700
1701     avio_r8(pb); /* version */
1702     avio_rb24(pb); /* flags */
1703
1704     if (atom.type == MKTAG('s','t','s','z')) {
1705         sample_size = avio_rb32(pb);
1706         if (!sc->sample_size) /* do not overwrite value computed in stsd */
1707             sc->sample_size = sample_size;
1708         sc->alt_sample_size = sample_size;
1709         field_size = 32;
1710     } else {
1711         sample_size = 0;
1712         avio_rb24(pb); /* reserved */
1713         field_size = avio_r8(pb);
1714     }
1715     entries = avio_rb32(pb);
1716
1717     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
1718
1719     sc->sample_count = entries;
1720     if (sample_size)
1721         return 0;
1722
1723     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
1724         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
1725         return AVERROR_INVALIDDATA;
1726     }
1727
1728     if (!entries)
1729         return 0;
1730     if (entries >= UINT_MAX / sizeof(int) || entries >= (UINT_MAX - 4) / field_size)
1731         return AVERROR_INVALIDDATA;
1732     sc->sample_sizes = av_malloc(entries * sizeof(int));
1733     if (!sc->sample_sizes)
1734         return AVERROR(ENOMEM);
1735
1736     num_bytes = (entries*field_size+4)>>3;
1737
1738     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
1739     if (!buf) {
1740         av_freep(&sc->sample_sizes);
1741         return AVERROR(ENOMEM);
1742     }
1743
1744     if (avio_read(pb, buf, num_bytes) < num_bytes) {
1745         av_freep(&sc->sample_sizes);
1746         av_free(buf);
1747         return AVERROR_INVALIDDATA;
1748     }
1749
1750     init_get_bits(&gb, buf, 8*num_bytes);
1751
1752     for (i = 0; i < entries && !pb->eof_reached; i++) {
1753         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
1754         sc->data_size += sc->sample_sizes[i];
1755     }
1756
1757     sc->sample_count = i;
1758
1759     if (pb->eof_reached)
1760         return AVERROR_EOF;
1761
1762     av_free(buf);
1763     return 0;
1764 }
1765
1766 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1767 {
1768     AVStream *st;
1769     MOVStreamContext *sc;
1770     unsigned int i, entries;
1771     int64_t duration=0;
1772     int64_t total_sample_count=0;
1773
1774     if (c->fc->nb_streams < 1)
1775         return 0;
1776     st = c->fc->streams[c->fc->nb_streams-1];
1777     sc = st->priv_data;
1778
1779     avio_r8(pb); /* version */
1780     avio_rb24(pb); /* flags */
1781     entries = avio_rb32(pb);
1782
1783     av_dlog(c->fc, "track[%i].stts.entries = %i\n",
1784             c->fc->nb_streams-1, entries);
1785
1786     if (entries >= UINT_MAX / sizeof(*sc->stts_data))
1787         return -1;
1788
1789     sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
1790     if (!sc->stts_data)
1791         return AVERROR(ENOMEM);
1792
1793     for (i = 0; i < entries && !pb->eof_reached; i++) {
1794         int sample_duration;
1795         int sample_count;
1796
1797         sample_count=avio_rb32(pb);
1798         sample_duration = avio_rb32(pb);
1799         /* sample_duration < 0 is invalid based on the spec */
1800         if (sample_duration < 0) {
1801             av_log(c->fc, AV_LOG_ERROR, "Invalid SampleDelta in STTS %d\n", sample_duration);
1802             sample_duration = 1;
1803         }
1804         sc->stts_data[i].count= sample_count;
1805         sc->stts_data[i].duration= sample_duration;
1806
1807         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",
1808                 sample_count, sample_duration);
1809
1810         duration+=(int64_t)sample_duration*sample_count;
1811         total_sample_count+=sample_count;
1812     }
1813
1814     sc->stts_count = i;
1815
1816     if (pb->eof_reached)
1817         return AVERROR_EOF;
1818
1819     st->nb_frames= total_sample_count;
1820     if (duration)
1821         st->duration= duration;
1822     sc->track_end = duration;
1823     return 0;
1824 }
1825
1826 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1827 {
1828     AVStream *st;
1829     MOVStreamContext *sc;
1830     unsigned int i, entries;
1831
1832     if (c->fc->nb_streams < 1)
1833         return 0;
1834     st = c->fc->streams[c->fc->nb_streams-1];
1835     sc = st->priv_data;
1836
1837     avio_r8(pb); /* version */
1838     avio_rb24(pb); /* flags */
1839     entries = avio_rb32(pb);
1840
1841     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1842
1843     if (!entries)
1844         return 0;
1845     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
1846         return AVERROR_INVALIDDATA;
1847     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
1848     if (!sc->ctts_data)
1849         return AVERROR(ENOMEM);
1850
1851     for (i = 0; i < entries && !pb->eof_reached; i++) {
1852         int count    =avio_rb32(pb);
1853         int duration =avio_rb32(pb);
1854
1855         sc->ctts_data[i].count   = count;
1856         sc->ctts_data[i].duration= duration;
1857
1858         av_dlog(c->fc, "count=%d, duration=%d\n",
1859                 count, duration);
1860
1861         if (FFABS(duration) > (1<<28) && i+2<entries) {
1862             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
1863             av_freep(&sc->ctts_data);
1864             sc->ctts_count = 0;
1865             return 0;
1866         }
1867
1868         if (duration < 0 && i+2<entries)
1869             sc->dts_shift = FFMAX(sc->dts_shift, -duration);
1870     }
1871
1872     sc->ctts_count = i;
1873
1874     if (pb->eof_reached)
1875         return AVERROR_EOF;
1876
1877     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
1878
1879     return 0;
1880 }
1881
1882 static void mov_build_index(MOVContext *mov, AVStream *st)
1883 {
1884     MOVStreamContext *sc = st->priv_data;
1885     int64_t current_offset;
1886     int64_t current_dts = 0;
1887     unsigned int stts_index = 0;
1888     unsigned int stsc_index = 0;
1889     unsigned int stss_index = 0;
1890     unsigned int stps_index = 0;
1891     unsigned int i, j;
1892     uint64_t stream_size = 0;
1893     AVIndexEntry *mem;
1894
1895     /* adjust first dts according to edit list */
1896     if ((sc->empty_duration || sc->start_time) && mov->time_scale > 0) {
1897         if (sc->empty_duration)
1898             sc->empty_duration = av_rescale(sc->empty_duration, sc->time_scale, mov->time_scale);
1899         sc->time_offset = sc->start_time - sc->empty_duration;
1900         current_dts = -sc->time_offset;
1901         if (sc->ctts_count>0 && sc->stts_count>0 &&
1902             sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
1903             /* more than 16 frames delay, dts are likely wrong
1904                this happens with files created by iMovie */
1905             sc->wrong_dts = 1;
1906             st->codec->has_b_frames = 1;
1907         }
1908     }
1909
1910     /* only use old uncompressed audio chunk demuxing when stts specifies it */
1911     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1912           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
1913         unsigned int current_sample = 0;
1914         unsigned int stts_sample = 0;
1915         unsigned int sample_size;
1916         unsigned int distance = 0;
1917         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_data && sc->stps_data[0] > 0);
1918
1919         current_dts -= sc->dts_shift;
1920
1921         if (!sc->sample_count || st->nb_index_entries)
1922             return;
1923         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
1924             return;
1925         mem = av_realloc(st->index_entries, (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries));
1926         if (!mem)
1927             return;
1928         st->index_entries = mem;
1929         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
1930
1931         for (i = 0; i < sc->chunk_count; i++) {
1932             current_offset = sc->chunk_offsets[i];
1933             while (stsc_index + 1 < sc->stsc_count &&
1934                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1935                 stsc_index++;
1936             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
1937                 int keyframe = 0;
1938                 if (current_sample >= sc->sample_count) {
1939                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1940                     return;
1941                 }
1942
1943                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
1944                     keyframe = 1;
1945                     if (stss_index + 1 < sc->keyframe_count)
1946                         stss_index++;
1947                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
1948                     keyframe = 1;
1949                     if (stps_index + 1 < sc->stps_count)
1950                         stps_index++;
1951                 }
1952                 if (keyframe)
1953                     distance = 0;
1954                 sample_size = sc->alt_sample_size > 0 ? sc->alt_sample_size : sc->sample_sizes[current_sample];
1955                 if (sc->pseudo_stream_id == -1 ||
1956                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
1957                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
1958                     e->pos = current_offset;
1959                     e->timestamp = current_dts;
1960                     e->size = sample_size;
1961                     e->min_distance = distance;
1962                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
1963                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1964                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
1965                             current_offset, current_dts, sample_size, distance, keyframe);
1966                 }
1967
1968                 current_offset += sample_size;
1969                 stream_size += sample_size;
1970                 current_dts += sc->stts_data[stts_index].duration;
1971                 distance++;
1972                 stts_sample++;
1973                 current_sample++;
1974                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1975                     stts_sample = 0;
1976                     stts_index++;
1977                 }
1978             }
1979         }
1980         if (st->duration > 0)
1981             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
1982     } else {
1983         unsigned chunk_samples, total = 0;
1984
1985         // compute total chunk count
1986         for (i = 0; i < sc->stsc_count; i++) {
1987             unsigned count, chunk_count;
1988
1989             chunk_samples = sc->stsc_data[i].count;
1990             if (i != sc->stsc_count - 1 &&
1991                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
1992                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
1993                 return;
1994             }
1995
1996             if (sc->samples_per_frame >= 160) { // gsm
1997                 count = chunk_samples / sc->samples_per_frame;
1998             } else if (sc->samples_per_frame > 1) {
1999                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
2000                 count = (chunk_samples+samples-1) / samples;
2001             } else {
2002                 count = (chunk_samples+1023) / 1024;
2003             }
2004
2005             if (i < sc->stsc_count - 1)
2006                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
2007             else
2008                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
2009             total += chunk_count * count;
2010         }
2011
2012         av_dlog(mov->fc, "chunk count %d\n", total);
2013         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2014             return;
2015         mem = av_realloc(st->index_entries, (st->nb_index_entries + total) * sizeof(*st->index_entries));
2016         if (!mem)
2017             return;
2018         st->index_entries = mem;
2019         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
2020
2021         // populate index
2022         for (i = 0; i < sc->chunk_count; i++) {
2023             current_offset = sc->chunk_offsets[i];
2024             if (stsc_index + 1 < sc->stsc_count &&
2025                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2026                 stsc_index++;
2027             chunk_samples = sc->stsc_data[stsc_index].count;
2028
2029             while (chunk_samples > 0) {
2030                 AVIndexEntry *e;
2031                 unsigned size, samples;
2032
2033                 if (sc->samples_per_frame >= 160) { // gsm
2034                     samples = sc->samples_per_frame;
2035                     size = sc->bytes_per_frame;
2036                 } else {
2037                     if (sc->samples_per_frame > 1) {
2038                         samples = FFMIN((1024 / sc->samples_per_frame)*
2039                                         sc->samples_per_frame, chunk_samples);
2040                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
2041                     } else {
2042                         samples = FFMIN(1024, chunk_samples);
2043                         size = samples * sc->sample_size;
2044                     }
2045                 }
2046
2047                 if (st->nb_index_entries >= total) {
2048                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
2049                     return;
2050                 }
2051                 e = &st->index_entries[st->nb_index_entries++];
2052                 e->pos = current_offset;
2053                 e->timestamp = current_dts;
2054                 e->size = size;
2055                 e->min_distance = 0;
2056                 e->flags = AVINDEX_KEYFRAME;
2057                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
2058                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
2059                         size, samples);
2060
2061                 current_offset += size;
2062                 current_dts += samples;
2063                 chunk_samples -= samples;
2064             }
2065         }
2066     }
2067 }
2068
2069 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref,
2070                          AVIOInterruptCB *int_cb, int use_absolute_path, AVFormatContext *fc)
2071 {
2072     /* try relative path, we do not try the absolute because it can leak information about our
2073        system to an attacker */
2074     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
2075         char filename[1024];
2076         const char *src_path;
2077         int i, l;
2078
2079         /* find a source dir */
2080         src_path = strrchr(src, '/');
2081         if (src_path)
2082             src_path++;
2083         else
2084             src_path = src;
2085
2086         /* find a next level down to target */
2087         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
2088             if (ref->path[l] == '/') {
2089                 if (i == ref->nlvl_to - 1)
2090                     break;
2091                 else
2092                     i++;
2093             }
2094
2095         /* compose filename if next level down to target was found */
2096         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
2097             memcpy(filename, src, src_path - src);
2098             filename[src_path - src] = 0;
2099
2100             for (i = 1; i < ref->nlvl_from; i++)
2101                 av_strlcat(filename, "../", 1024);
2102
2103             av_strlcat(filename, ref->path + l + 1, 1024);
2104
2105             if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL))
2106                 return 0;
2107         }
2108     } else if (use_absolute_path) {
2109         av_log(fc, AV_LOG_WARNING, "Using absolute path on user request, "
2110                "this is a possible security issue\n");
2111         if (!avio_open2(pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
2112             return 0;
2113     }
2114
2115     return AVERROR(ENOENT);
2116 }
2117
2118 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2119 {
2120     AVStream *st;
2121     MOVStreamContext *sc;
2122     int ret;
2123
2124     st = avformat_new_stream(c->fc, NULL);
2125     if (!st) return AVERROR(ENOMEM);
2126     st->id = c->fc->nb_streams;
2127     sc = av_mallocz(sizeof(MOVStreamContext));
2128     if (!sc) return AVERROR(ENOMEM);
2129
2130     st->priv_data = sc;
2131     st->codec->codec_type = AVMEDIA_TYPE_DATA;
2132     sc->ffindex = st->index;
2133
2134     if ((ret = mov_read_default(c, pb, atom)) < 0)
2135         return ret;
2136
2137     /* sanity checks */
2138     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
2139                             (!sc->sample_size && !sc->sample_count))) {
2140         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
2141                st->index);
2142         return 0;
2143     }
2144
2145     if (sc->time_scale <= 0) {
2146         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", st->index);
2147         sc->time_scale = c->time_scale;
2148         if (sc->time_scale <= 0)
2149             sc->time_scale = 1;
2150     }
2151
2152     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
2153
2154     mov_build_index(c, st);
2155
2156     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
2157         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
2158         if (mov_open_dref(&sc->pb, c->fc->filename, dref, &c->fc->interrupt_callback,
2159             c->use_absolute_path, c->fc) < 0)
2160             av_log(c->fc, AV_LOG_ERROR,
2161                    "stream %d, error opening alias: path='%s', dir='%s', "
2162                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2163                    st->index, dref->path, dref->dir, dref->filename,
2164                    dref->volume, dref->nlvl_from, dref->nlvl_to);
2165     } else
2166         sc->pb = c->fc->pb;
2167
2168     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2169         if (!st->sample_aspect_ratio.num &&
2170             (st->codec->width != sc->width || st->codec->height != sc->height)) {
2171             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
2172                                              ((double)st->codec->width * sc->height), INT_MAX);
2173         }
2174
2175         av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
2176                   sc->time_scale*st->nb_frames, st->duration, INT_MAX);
2177
2178 #if FF_API_R_FRAME_RATE
2179         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
2180             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
2181                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
2182 #endif
2183     }
2184
2185     switch (st->codec->codec_id) {
2186 #if CONFIG_H261_DECODER
2187     case AV_CODEC_ID_H261:
2188 #endif
2189 #if CONFIG_H263_DECODER
2190     case AV_CODEC_ID_H263:
2191 #endif
2192 #if CONFIG_MPEG4_DECODER
2193     case AV_CODEC_ID_MPEG4:
2194 #endif
2195         st->codec->width = 0; /* let decoder init width/height */
2196         st->codec->height= 0;
2197         break;
2198     }
2199
2200     /* Do not need those anymore. */
2201     av_freep(&sc->chunk_offsets);
2202     av_freep(&sc->stsc_data);
2203     av_freep(&sc->sample_sizes);
2204     av_freep(&sc->keyframes);
2205     av_freep(&sc->stts_data);
2206     av_freep(&sc->stps_data);
2207
2208     return 0;
2209 }
2210
2211 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2212 {
2213     int ret;
2214     c->itunes_metadata = 1;
2215     ret = mov_read_default(c, pb, atom);
2216     c->itunes_metadata = 0;
2217     return ret;
2218 }
2219
2220 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2221 {
2222     while (atom.size > 8) {
2223         uint32_t tag = avio_rl32(pb);
2224         atom.size -= 4;
2225         if (tag == MKTAG('h','d','l','r')) {
2226             avio_seek(pb, -8, SEEK_CUR);
2227             atom.size += 8;
2228             return mov_read_default(c, pb, atom);
2229         }
2230     }
2231     return 0;
2232 }
2233
2234 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2235 {
2236     int i;
2237     int width;
2238     int height;
2239     int64_t disp_transform[2];
2240     int display_matrix[3][2];
2241     AVStream *st;
2242     MOVStreamContext *sc;
2243     int version;
2244
2245     if (c->fc->nb_streams < 1)
2246         return 0;
2247     st = c->fc->streams[c->fc->nb_streams-1];
2248     sc = st->priv_data;
2249
2250     version = avio_r8(pb);
2251     avio_rb24(pb); /* flags */
2252     /*
2253     MOV_TRACK_ENABLED 0x0001
2254     MOV_TRACK_IN_MOVIE 0x0002
2255     MOV_TRACK_IN_PREVIEW 0x0004
2256     MOV_TRACK_IN_POSTER 0x0008
2257     */
2258
2259     if (version == 1) {
2260         avio_rb64(pb);
2261         avio_rb64(pb);
2262     } else {
2263         avio_rb32(pb); /* creation time */
2264         avio_rb32(pb); /* modification time */
2265     }
2266     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
2267     avio_rb32(pb); /* reserved */
2268
2269     /* highlevel (considering edits) duration in movie timebase */
2270     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
2271     avio_rb32(pb); /* reserved */
2272     avio_rb32(pb); /* reserved */
2273
2274     avio_rb16(pb); /* layer */
2275     avio_rb16(pb); /* alternate group */
2276     avio_rb16(pb); /* volume */
2277     avio_rb16(pb); /* reserved */
2278
2279     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2280     // they're kept in fixed point format through all calculations
2281     // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
2282     for (i = 0; i < 3; i++) {
2283         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
2284         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
2285         avio_rb32(pb);           // 2.30 fixed point (not used)
2286     }
2287
2288     width = avio_rb32(pb);       // 16.16 fixed point track width
2289     height = avio_rb32(pb);      // 16.16 fixed point track height
2290     sc->width = width >> 16;
2291     sc->height = height >> 16;
2292
2293     //Assign clockwise rotate values based on transform matrix so that
2294     //we can compensate for iPhone orientation during capture.
2295
2296     if (display_matrix[1][0] == -65536 && display_matrix[0][1] == 65536) {
2297          av_dict_set(&st->metadata, "rotate", "90", 0);
2298     }
2299
2300     if (display_matrix[0][0] == -65536 && display_matrix[1][1] == -65536) {
2301          av_dict_set(&st->metadata, "rotate", "180", 0);
2302     }
2303
2304     if (display_matrix[1][0] == 65536 && display_matrix[0][1] == -65536) {
2305          av_dict_set(&st->metadata, "rotate", "270", 0);
2306     }
2307
2308     // transform the display width/height according to the matrix
2309     // skip this if the display matrix is the default identity matrix
2310     // or if it is rotating the picture, ex iPhone 3GS
2311     // to keep the same scale, use [width height 1<<16]
2312     if (width && height &&
2313         ((display_matrix[0][0] != 65536  ||
2314           display_matrix[1][1] != 65536) &&
2315          !display_matrix[0][1] &&
2316          !display_matrix[1][0] &&
2317          !display_matrix[2][0] && !display_matrix[2][1])) {
2318         for (i = 0; i < 2; i++)
2319             disp_transform[i] =
2320                 (int64_t)  width  * display_matrix[0][i] +
2321                 (int64_t)  height * display_matrix[1][i] +
2322                 ((int64_t) display_matrix[2][i] << 16);
2323
2324         //sample aspect ratio is new width/height divided by old width/height
2325         st->sample_aspect_ratio = av_d2q(
2326             ((double) disp_transform[0] * height) /
2327             ((double) disp_transform[1] * width), INT_MAX);
2328     }
2329     return 0;
2330 }
2331
2332 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2333 {
2334     MOVFragment *frag = &c->fragment;
2335     MOVTrackExt *trex = NULL;
2336     int flags, track_id, i;
2337
2338     avio_r8(pb); /* version */
2339     flags = avio_rb24(pb);
2340
2341     track_id = avio_rb32(pb);
2342     if (!track_id)
2343         return AVERROR_INVALIDDATA;
2344     frag->track_id = track_id;
2345     for (i = 0; i < c->trex_count; i++)
2346         if (c->trex_data[i].track_id == frag->track_id) {
2347             trex = &c->trex_data[i];
2348             break;
2349         }
2350     if (!trex) {
2351         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
2352         return AVERROR_INVALIDDATA;
2353     }
2354
2355     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
2356                              avio_rb64(pb) : frag->moof_offset;
2357     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
2358
2359     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
2360                      avio_rb32(pb) : trex->duration;
2361     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
2362                      avio_rb32(pb) : trex->size;
2363     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
2364                      avio_rb32(pb) : trex->flags;
2365     av_dlog(c->fc, "frag flags 0x%x\n", frag->flags);
2366     return 0;
2367 }
2368
2369 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2370 {
2371     c->chapter_track = avio_rb32(pb);
2372     return 0;
2373 }
2374
2375 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2376 {
2377     MOVTrackExt *trex;
2378
2379     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
2380         return AVERROR_INVALIDDATA;
2381     trex = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data));
2382     if (!trex)
2383         return AVERROR(ENOMEM);
2384
2385     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
2386
2387     c->trex_data = trex;
2388     trex = &c->trex_data[c->trex_count++];
2389     avio_r8(pb); /* version */
2390     avio_rb24(pb); /* flags */
2391     trex->track_id = avio_rb32(pb);
2392     trex->stsd_id  = avio_rb32(pb);
2393     trex->duration = avio_rb32(pb);
2394     trex->size     = avio_rb32(pb);
2395     trex->flags    = avio_rb32(pb);
2396     return 0;
2397 }
2398
2399 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2400 {
2401     MOVFragment *frag = &c->fragment;
2402     AVStream *st = NULL;
2403     MOVStreamContext *sc;
2404     MOVStts *ctts_data;
2405     uint64_t offset;
2406     int64_t dts;
2407     int data_offset = 0;
2408     unsigned entries, first_sample_flags = frag->flags;
2409     int flags, distance, i, found_keyframe = 0;
2410
2411     for (i = 0; i < c->fc->nb_streams; i++) {
2412         if (c->fc->streams[i]->id == frag->track_id) {
2413             st = c->fc->streams[i];
2414             break;
2415         }
2416     }
2417     if (!st) {
2418         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
2419         return AVERROR_INVALIDDATA;
2420     }
2421     sc = st->priv_data;
2422     if (sc->pseudo_stream_id+1 != frag->stsd_id)
2423         return 0;
2424     avio_r8(pb); /* version */
2425     flags = avio_rb24(pb);
2426     entries = avio_rb32(pb);
2427     av_dlog(c->fc, "flags 0x%x entries %d\n", flags, entries);
2428
2429     /* Always assume the presence of composition time offsets.
2430      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
2431      *  1) in the initial movie, there are no samples.
2432      *  2) in the first movie fragment, there is only one sample without composition time offset.
2433      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
2434     if (!sc->ctts_count && sc->sample_count)
2435     {
2436         /* Complement ctts table if moov atom doesn't have ctts atom. */
2437         ctts_data = av_malloc(sizeof(*sc->ctts_data));
2438         if (!ctts_data)
2439             return AVERROR(ENOMEM);
2440         sc->ctts_data = ctts_data;
2441         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
2442         sc->ctts_data[sc->ctts_count].duration = 0;
2443         sc->ctts_count++;
2444     }
2445     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
2446         return AVERROR_INVALIDDATA;
2447     ctts_data = av_realloc(sc->ctts_data,
2448                            (entries+sc->ctts_count)*sizeof(*sc->ctts_data));
2449     if (!ctts_data)
2450         return AVERROR(ENOMEM);
2451     sc->ctts_data = ctts_data;
2452
2453     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
2454     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
2455     dts    = sc->track_end - sc->time_offset;
2456     offset = frag->base_data_offset + data_offset;
2457     distance = 0;
2458     av_dlog(c->fc, "first sample flags 0x%x\n", first_sample_flags);
2459     for (i = 0; i < entries && !pb->eof_reached; i++) {
2460         unsigned sample_size = frag->size;
2461         int sample_flags = i ? frag->flags : first_sample_flags;
2462         unsigned sample_duration = frag->duration;
2463         int keyframe = 0;
2464
2465         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
2466         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
2467         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
2468         sc->ctts_data[sc->ctts_count].count = 1;
2469         sc->ctts_data[sc->ctts_count].duration = (flags & MOV_TRUN_SAMPLE_CTS) ?
2470                                                   avio_rb32(pb) : 0;
2471         sc->ctts_count++;
2472         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
2473             keyframe = 1;
2474         else if (!found_keyframe)
2475             keyframe = found_keyframe =
2476                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
2477                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
2478         if (keyframe)
2479             distance = 0;
2480         av_add_index_entry(st, offset, dts, sample_size, distance,
2481                            keyframe ? AVINDEX_KEYFRAME : 0);
2482         av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2483                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
2484                 offset, dts, sample_size, distance, keyframe);
2485         distance++;
2486         dts += sample_duration;
2487         offset += sample_size;
2488         sc->data_size += sample_size;
2489     }
2490
2491     if (pb->eof_reached)
2492         return AVERROR_EOF;
2493
2494     frag->moof_offset = offset;
2495     st->duration = sc->track_end = dts + sc->time_offset;
2496     return 0;
2497 }
2498
2499 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
2500 /* like the files created with Adobe Premiere 5.0, for samples see */
2501 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
2502 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2503 {
2504     int err;
2505
2506     if (atom.size < 8)
2507         return 0; /* continue */
2508     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
2509         avio_skip(pb, atom.size - 4);
2510         return 0;
2511     }
2512     atom.type = avio_rl32(pb);
2513     atom.size -= 8;
2514     if (atom.type != MKTAG('m','d','a','t')) {
2515         avio_skip(pb, atom.size);
2516         return 0;
2517     }
2518     err = mov_read_mdat(c, pb, atom);
2519     return err;
2520 }
2521
2522 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2523 {
2524 #if CONFIG_ZLIB
2525     AVIOContext ctx;
2526     uint8_t *cmov_data;
2527     uint8_t *moov_data; /* uncompressed data */
2528     long cmov_len, moov_len;
2529     int ret = -1;
2530
2531     avio_rb32(pb); /* dcom atom */
2532     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
2533         return AVERROR_INVALIDDATA;
2534     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
2535         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
2536         return AVERROR_INVALIDDATA;
2537     }
2538     avio_rb32(pb); /* cmvd atom */
2539     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
2540         return AVERROR_INVALIDDATA;
2541     moov_len = avio_rb32(pb); /* uncompressed size */
2542     cmov_len = atom.size - 6 * 4;
2543
2544     cmov_data = av_malloc(cmov_len);
2545     if (!cmov_data)
2546         return AVERROR(ENOMEM);
2547     moov_data = av_malloc(moov_len);
2548     if (!moov_data) {
2549         av_free(cmov_data);
2550         return AVERROR(ENOMEM);
2551     }
2552     avio_read(pb, cmov_data, cmov_len);
2553     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
2554         goto free_and_return;
2555     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
2556         goto free_and_return;
2557     atom.type = MKTAG('m','o','o','v');
2558     atom.size = moov_len;
2559     ret = mov_read_default(c, &ctx, atom);
2560 free_and_return:
2561     av_free(moov_data);
2562     av_free(cmov_data);
2563     return ret;
2564 #else
2565     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
2566     return AVERROR(ENOSYS);
2567 #endif
2568 }
2569
2570 /* edit list atom */
2571 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2572 {
2573     MOVStreamContext *sc;
2574     int i, edit_count, version, edit_start_index = 0;
2575
2576     if (c->fc->nb_streams < 1)
2577         return 0;
2578     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
2579
2580     version = avio_r8(pb); /* version */
2581     avio_rb24(pb); /* flags */
2582     edit_count = avio_rb32(pb); /* entries */
2583
2584     if ((uint64_t)edit_count*12+8 > atom.size)
2585         return AVERROR_INVALIDDATA;
2586
2587     for (i=0; i<edit_count; i++){
2588         int64_t time;
2589         int64_t duration;
2590         if (version == 1) {
2591             duration = avio_rb64(pb);
2592             time     = avio_rb64(pb);
2593         } else {
2594             duration = avio_rb32(pb); /* segment duration */
2595             time     = (int32_t)avio_rb32(pb); /* media time */
2596         }
2597         avio_rb32(pb); /* Media rate */
2598         if (i == 0 && time == -1) {
2599             sc->empty_duration = duration;
2600             edit_start_index = 1;
2601         } else if (i == edit_start_index && time >= 0)
2602             sc->start_time = time;
2603     }
2604
2605     if (edit_count > 1)
2606         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
2607                "a/v desync might occur, patch welcome\n");
2608
2609     av_dlog(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
2610     return 0;
2611 }
2612
2613 static int mov_read_chan2(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2614 {
2615     if (atom.size < 16)
2616         return 0;
2617     avio_skip(pb, 4);
2618     ff_mov_read_chan(c->fc, pb, c->fc->streams[0],  atom.size - 4);
2619     return 0;
2620 }
2621
2622 static int mov_read_tref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2623 {
2624     uint32_t i, size;
2625     MOVStreamContext *sc;
2626
2627     if (c->fc->nb_streams < 1)
2628         return AVERROR_INVALIDDATA;
2629     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
2630
2631     size = avio_rb32(pb);
2632     if (size < 12)
2633         return 0;
2634
2635     sc->trefs_count = (size - 4) / 8;
2636     sc->trefs = av_malloc(sc->trefs_count * sizeof(*sc->trefs));
2637     if (!sc->trefs)
2638         return AVERROR(ENOMEM);
2639
2640     sc->tref_type = avio_rl32(pb);
2641     for (i = 0; i < sc->trefs_count; i++)
2642         sc->trefs[i] = avio_rb32(pb);
2643     return 0;
2644 }
2645
2646 static const MOVParseTableEntry mov_default_parse_table[] = {
2647 { MKTAG('A','C','L','R'), mov_read_avid },
2648 { MKTAG('A','P','R','G'), mov_read_avid },
2649 { MKTAG('A','A','L','P'), mov_read_avid },
2650 { MKTAG('A','R','E','S'), mov_read_avid },
2651 { MKTAG('a','v','s','s'), mov_read_avss },
2652 { MKTAG('c','h','p','l'), mov_read_chpl },
2653 { MKTAG('c','o','6','4'), mov_read_stco },
2654 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
2655 { MKTAG('d','i','n','f'), mov_read_default },
2656 { MKTAG('d','r','e','f'), mov_read_dref },
2657 { MKTAG('e','d','t','s'), mov_read_default },
2658 { MKTAG('e','l','s','t'), mov_read_elst },
2659 { MKTAG('e','n','d','a'), mov_read_enda },
2660 { MKTAG('f','i','e','l'), mov_read_fiel },
2661 { MKTAG('f','t','y','p'), mov_read_ftyp },
2662 { MKTAG('g','l','b','l'), mov_read_glbl },
2663 { MKTAG('h','d','l','r'), mov_read_hdlr },
2664 { MKTAG('i','l','s','t'), mov_read_ilst },
2665 { MKTAG('j','p','2','h'), mov_read_jp2h },
2666 { MKTAG('m','d','a','t'), mov_read_mdat },
2667 { MKTAG('m','d','h','d'), mov_read_mdhd },
2668 { MKTAG('m','d','i','a'), mov_read_default },
2669 { MKTAG('m','e','t','a'), mov_read_meta },
2670 { MKTAG('m','i','n','f'), mov_read_default },
2671 { MKTAG('m','o','o','f'), mov_read_moof },
2672 { MKTAG('m','o','o','v'), mov_read_moov },
2673 { MKTAG('m','v','e','x'), mov_read_default },
2674 { MKTAG('m','v','h','d'), mov_read_mvhd },
2675 { MKTAG('S','M','I',' '), mov_read_svq3 },
2676 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
2677 { MKTAG('a','v','c','C'), mov_read_glbl },
2678 { MKTAG('p','a','s','p'), mov_read_pasp },
2679 { MKTAG('s','t','b','l'), mov_read_default },
2680 { MKTAG('s','t','c','o'), mov_read_stco },
2681 { MKTAG('s','t','p','s'), mov_read_stps },
2682 { MKTAG('s','t','r','f'), mov_read_strf },
2683 { MKTAG('s','t','s','c'), mov_read_stsc },
2684 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
2685 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
2686 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
2687 { MKTAG('s','t','t','s'), mov_read_stts },
2688 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
2689 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
2690 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
2691 { MKTAG('t','r','a','k'), mov_read_trak },
2692 { MKTAG('t','r','a','f'), mov_read_default },
2693 { MKTAG('t','r','e','f'), mov_read_tref },
2694 { MKTAG('c','h','a','p'), mov_read_chap },
2695 { MKTAG('t','r','e','x'), mov_read_trex },
2696 { MKTAG('t','r','u','n'), mov_read_trun },
2697 { MKTAG('u','d','t','a'), mov_read_default },
2698 { MKTAG('w','a','v','e'), mov_read_wave },
2699 { MKTAG('e','s','d','s'), mov_read_esds },
2700 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
2701 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
2702 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
2703 { MKTAG('w','f','e','x'), mov_read_wfex },
2704 { MKTAG('c','m','o','v'), mov_read_cmov },
2705 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
2706 { MKTAG('d','v','c','1'), mov_read_dvc1 },
2707 { 0, NULL }
2708 };
2709
2710 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2711 {
2712     int64_t total_size = 0;
2713     MOVAtom a;
2714     int i;
2715
2716     if (atom.size < 0)
2717         atom.size = INT64_MAX;
2718     while (total_size + 8 <= atom.size && !url_feof(pb)) {
2719         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
2720         a.size = atom.size;
2721         a.type=0;
2722         if (atom.size >= 8) {
2723             a.size = avio_rb32(pb);
2724             a.type = avio_rl32(pb);
2725             if (atom.type != MKTAG('r','o','o','t') &&
2726                 atom.type != MKTAG('m','o','o','v'))
2727             {
2728                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
2729                 {
2730                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
2731                     avio_skip(pb, -8);
2732                     return 0;
2733                 }
2734             }
2735             total_size += 8;
2736             if (a.size == 1) { /* 64 bit extended size */
2737                 a.size = avio_rb64(pb) - 8;
2738                 total_size += 8;
2739             }
2740         }
2741         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
2742                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
2743         if (a.size == 0) {
2744             a.size = atom.size - total_size + 8;
2745         }
2746         a.size -= 8;
2747         if (a.size < 0)
2748             break;
2749         a.size = FFMIN(a.size, atom.size - total_size);
2750
2751         for (i = 0; mov_default_parse_table[i].type; i++)
2752             if (mov_default_parse_table[i].type == a.type) {
2753                 parse = mov_default_parse_table[i].parse;
2754                 break;
2755             }
2756
2757         // container is user data
2758         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
2759                        atom.type == MKTAG('i','l','s','t')))
2760             parse = mov_read_udta_string;
2761
2762         if (!parse) { /* skip leaf atoms data */
2763             avio_skip(pb, a.size);
2764         } else {
2765             int64_t start_pos = avio_tell(pb);
2766             int64_t left;
2767             int err = parse(c, pb, a);
2768             if (err < 0)
2769                 return err;
2770             if (c->found_moov && c->found_mdat &&
2771                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX) ||
2772                  start_pos + a.size == avio_size(pb))) {
2773                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX)
2774                     c->next_root_atom = start_pos + a.size;
2775                 return 0;
2776             }
2777             left = a.size - avio_tell(pb) + start_pos;
2778             if (left > 0) /* skip garbage at atom end */
2779                 avio_skip(pb, left);
2780             else if(left < 0) {
2781                 av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %"PRId64" in '%.4s'\n", -left, (char*)&a.type);
2782                 avio_seek(pb, left, SEEK_CUR);
2783             }
2784         }
2785
2786         total_size += a.size;
2787     }
2788
2789     if (total_size < atom.size && atom.size < 0x7ffff)
2790         avio_skip(pb, atom.size - total_size);
2791
2792     return 0;
2793 }
2794
2795 static int mov_probe(AVProbeData *p)
2796 {
2797     unsigned int offset;
2798     uint32_t tag;
2799     int score = 0;
2800
2801     /* check file header */
2802     offset = 0;
2803     for (;;) {
2804         /* ignore invalid offset */
2805         if ((offset + 8) > (unsigned int)p->buf_size)
2806             return score;
2807         tag = AV_RL32(p->buf + offset + 4);
2808         switch(tag) {
2809         /* check for obvious tags */
2810         case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
2811         case MKTAG('m','o','o','v'):
2812         case MKTAG('m','d','a','t'):
2813         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
2814         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
2815         case MKTAG('f','t','y','p'):
2816             return AVPROBE_SCORE_MAX;
2817         /* those are more common words, so rate then a bit less */
2818         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
2819         case MKTAG('w','i','d','e'):
2820         case MKTAG('f','r','e','e'):
2821         case MKTAG('j','u','n','k'):
2822         case MKTAG('p','i','c','t'):
2823             return AVPROBE_SCORE_MAX - 5;
2824         case MKTAG(0x82,0x82,0x7f,0x7d):
2825         case MKTAG('s','k','i','p'):
2826         case MKTAG('u','u','i','d'):
2827         case MKTAG('p','r','f','l'):
2828             offset = AV_RB32(p->buf+offset) + offset;
2829             /* if we only find those cause probedata is too small at least rate them */
2830             score = AVPROBE_SCORE_MAX - 50;
2831             break;
2832         default:
2833             /* unrecognized tag */
2834             return score;
2835         }
2836     }
2837 }
2838
2839 // must be done after parsing all trak because there's no order requirement
2840 static void mov_read_chapters(AVFormatContext *s)
2841 {
2842     MOVContext *mov = s->priv_data;
2843     AVStream *st = NULL;
2844     MOVStreamContext *sc;
2845     int64_t cur_pos;
2846     int i;
2847
2848     for (i = 0; i < s->nb_streams; i++)
2849         if (s->streams[i]->id == mov->chapter_track) {
2850             st = s->streams[i];
2851             break;
2852         }
2853     if (!st) {
2854         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
2855         return;
2856     }
2857
2858     st->discard = AVDISCARD_ALL;
2859     sc = st->priv_data;
2860     cur_pos = avio_tell(sc->pb);
2861
2862     for (i = 0; i < st->nb_index_entries; i++) {
2863         AVIndexEntry *sample = &st->index_entries[i];
2864         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
2865         uint8_t *title;
2866         uint16_t ch;
2867         int len, title_len;
2868
2869         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
2870             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
2871             goto finish;
2872         }
2873
2874         // the first two bytes are the length of the title
2875         len = avio_rb16(sc->pb);
2876         if (len > sample->size-2)
2877             continue;
2878         title_len = 2*len + 1;
2879         if (!(title = av_mallocz(title_len)))
2880             goto finish;
2881
2882         // The samples could theoretically be in any encoding if there's an encd
2883         // atom following, but in practice are only utf-8 or utf-16, distinguished
2884         // instead by the presence of a BOM
2885         if (!len) {
2886             title[0] = 0;
2887         } else {
2888             ch = avio_rb16(sc->pb);
2889             if (ch == 0xfeff)
2890                 avio_get_str16be(sc->pb, len, title, title_len);
2891             else if (ch == 0xfffe)
2892                 avio_get_str16le(sc->pb, len, title, title_len);
2893             else {
2894                 AV_WB16(title, ch);
2895                 if (len == 1 || len == 2)
2896                     title[len] = 0;
2897                 else
2898                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
2899             }
2900         }
2901
2902         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
2903         av_freep(&title);
2904     }
2905 finish:
2906     avio_seek(sc->pb, cur_pos, SEEK_SET);
2907 }
2908
2909 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
2910                                              uint32_t value, int flags)
2911 {
2912     AVTimecode tc;
2913     char buf[AV_TIMECODE_STR_SIZE];
2914     AVRational rate = {st->codec->time_base.den,
2915                        st->codec->time_base.num};
2916     int ret = av_timecode_init(&tc, rate, flags, 0, s);
2917     if (ret < 0)
2918         return ret;
2919     av_dict_set(&st->metadata, "timecode",
2920                 av_timecode_make_string(&tc, buf, value), 0);
2921     return 0;
2922 }
2923
2924 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
2925 {
2926     MOVStreamContext *sc = st->priv_data;
2927     int flags = 0;
2928     int64_t cur_pos = avio_tell(sc->pb);
2929     uint32_t value;
2930
2931     if (!st->nb_index_entries)
2932         return -1;
2933
2934     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
2935     value = avio_rb32(s->pb);
2936
2937     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
2938     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
2939     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
2940
2941     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
2942      * not the case) and thus assume "frame number format" instead of QT one.
2943      * No sample with tmcd track can be found with a QT timecode at the moment,
2944      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
2945      * format). */
2946     parse_timecode_in_framenum_format(s, st, value, flags);
2947
2948     avio_seek(sc->pb, cur_pos, SEEK_SET);
2949     return 0;
2950 }
2951
2952 static int mov_read_close(AVFormatContext *s)
2953 {
2954     MOVContext *mov = s->priv_data;
2955     int i, j;
2956
2957     for (i = 0; i < s->nb_streams; i++) {
2958         AVStream *st = s->streams[i];
2959         MOVStreamContext *sc = st->priv_data;
2960
2961         av_freep(&sc->ctts_data);
2962         for (j = 0; j < sc->drefs_count; j++) {
2963             av_freep(&sc->drefs[j].path);
2964             av_freep(&sc->drefs[j].dir);
2965         }
2966         av_freep(&sc->drefs);
2967         av_freep(&sc->trefs);
2968         if (sc->pb && sc->pb != s->pb)
2969             avio_close(sc->pb);
2970         sc->pb = NULL;
2971         av_freep(&sc->chunk_offsets);
2972         av_freep(&sc->keyframes);
2973         av_freep(&sc->sample_sizes);
2974         av_freep(&sc->stps_data);
2975         av_freep(&sc->stsc_data);
2976         av_freep(&sc->stts_data);
2977     }
2978
2979     if (mov->dv_demux) {
2980         for (i = 0; i < mov->dv_fctx->nb_streams; i++) {
2981             av_freep(&mov->dv_fctx->streams[i]->codec);
2982             av_freep(&mov->dv_fctx->streams[i]);
2983         }
2984         av_freep(&mov->dv_fctx);
2985         av_freep(&mov->dv_demux);
2986     }
2987
2988     av_freep(&mov->trex_data);
2989
2990     return 0;
2991 }
2992
2993 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
2994 {
2995     int i, j;
2996
2997     for (i = 0; i < s->nb_streams; i++) {
2998         AVStream *st = s->streams[i];
2999         MOVStreamContext *sc = st->priv_data;
3000
3001         if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
3002             continue;
3003         for (j = 0; j < sc->trefs_count; j++)
3004             if (tmcd_id == sc->trefs[j])
3005                 return 1;
3006     }
3007     return 0;
3008 }
3009
3010 /* look for a tmcd track not referenced by any video track, and export it globally */
3011 static void export_orphan_timecode(AVFormatContext *s)
3012 {
3013     int i;
3014
3015     for (i = 0; i < s->nb_streams; i++) {
3016         AVStream *st = s->streams[i];
3017
3018         if (st->codec->codec_tag  == MKTAG('t','m','c','d') &&
3019             !tmcd_is_referenced(s, i + 1)) {
3020             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
3021             if (tcr) {
3022                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
3023                 break;
3024             }
3025         }
3026     }
3027 }
3028
3029 static int mov_read_header(AVFormatContext *s)
3030 {
3031     MOVContext *mov = s->priv_data;
3032     AVIOContext *pb = s->pb;
3033     int i, err;
3034     MOVAtom atom = { AV_RL32("root") };
3035
3036     mov->fc = s;
3037     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
3038     if (pb->seekable)
3039         atom.size = avio_size(pb);
3040     else
3041         atom.size = INT64_MAX;
3042
3043     /* check MOV header */
3044     if ((err = mov_read_default(mov, pb, atom)) < 0) {
3045         av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
3046         mov_read_close(s);
3047         return err;
3048     }
3049     if (!mov->found_moov) {
3050         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
3051         mov_read_close(s);
3052         return AVERROR_INVALIDDATA;
3053     }
3054     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
3055
3056     if (pb->seekable) {
3057         if (mov->chapter_track > 0)
3058             mov_read_chapters(s);
3059         for (i = 0; i < s->nb_streams; i++)
3060             if (s->streams[i]->codec->codec_tag == AV_RL32("tmcd"))
3061                 mov_read_timecode_track(s, s->streams[i]);
3062     }
3063
3064     /* copy timecode metadata from tmcd tracks to the related video streams */
3065     for (i = 0; i < s->nb_streams; i++) {
3066         AVStream *st = s->streams[i];
3067         MOVStreamContext *sc = st->priv_data;
3068         if (sc->tref_type == AV_RL32("tmcd") && sc->trefs_count) {
3069             AVDictionaryEntry *tcr;
3070             int tmcd_st_id = sc->trefs[0] - 1;
3071
3072             if (tmcd_st_id < 0 || tmcd_st_id >= s->nb_streams)
3073                 continue;
3074             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
3075             if (tcr)
3076                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
3077         }
3078     }
3079     export_orphan_timecode(s);
3080
3081     for (i = 0; i < s->nb_streams; i++) {
3082         AVStream *st = s->streams[i];
3083         MOVStreamContext *sc = st->priv_data;
3084         if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) {
3085             if(!sc->start_pad)
3086                 sc->start_pad = 1024;
3087             st->skip_samples = sc->start_pad;
3088         }
3089     }
3090
3091     if (mov->trex_data) {
3092         for (i = 0; i < s->nb_streams; i++) {
3093             AVStream *st = s->streams[i];
3094             MOVStreamContext *sc = st->priv_data;
3095             if (st->duration)
3096                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
3097         }
3098     }
3099
3100     return 0;
3101 }
3102
3103 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
3104 {
3105     AVIndexEntry *sample = NULL;
3106     int64_t best_dts = INT64_MAX;
3107     int i;
3108     for (i = 0; i < s->nb_streams; i++) {
3109         AVStream *avst = s->streams[i];
3110         MOVStreamContext *msc = avst->priv_data;
3111         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
3112             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
3113             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
3114             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
3115             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
3116                 (s->pb->seekable &&
3117                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
3118                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
3119                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
3120                 sample = current_sample;
3121                 best_dts = dts;
3122                 *st = avst;
3123             }
3124         }
3125     }
3126     return sample;
3127 }
3128
3129 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
3130 {
3131     MOVContext *mov = s->priv_data;
3132     MOVStreamContext *sc;
3133     AVIndexEntry *sample;
3134     AVStream *st = NULL;
3135     int ret;
3136     mov->fc = s;
3137  retry:
3138     sample = mov_find_next_sample(s, &st);
3139     if (!sample) {
3140         mov->found_mdat = 0;
3141         if (!mov->next_root_atom)
3142             return AVERROR_EOF;
3143         avio_seek(s->pb, mov->next_root_atom, SEEK_SET);
3144         mov->next_root_atom = 0;
3145         if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
3146             url_feof(s->pb))
3147             return AVERROR_EOF;
3148         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
3149         goto retry;
3150     }
3151     sc = st->priv_data;
3152     /* must be done just before reading, to avoid infinite loop on sample */
3153     sc->current_sample++;
3154
3155     if (st->discard != AVDISCARD_ALL) {
3156         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
3157             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
3158                    sc->ffindex, sample->pos);
3159             return AVERROR_INVALIDDATA;
3160         }
3161         ret = av_get_packet(sc->pb, pkt, sample->size);
3162         if (ret < 0)
3163             return ret;
3164         if (sc->has_palette) {
3165             uint8_t *pal;
3166
3167             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
3168             if (!pal) {
3169                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
3170             } else {
3171                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
3172                 sc->has_palette = 0;
3173             }
3174         }
3175 #if CONFIG_DV_DEMUXER
3176         if (mov->dv_demux && sc->dv_audio_container) {
3177             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
3178             av_free(pkt->data);
3179             pkt->size = 0;
3180             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
3181             if (ret < 0)
3182                 return ret;
3183         }
3184 #endif
3185     }
3186
3187     pkt->stream_index = sc->ffindex;
3188     pkt->dts = sample->timestamp;
3189     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
3190         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
3191         /* update ctts context */
3192         sc->ctts_sample++;
3193         if (sc->ctts_index < sc->ctts_count &&
3194             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
3195             sc->ctts_index++;
3196             sc->ctts_sample = 0;
3197         }
3198         if (sc->wrong_dts)
3199             pkt->dts = AV_NOPTS_VALUE;
3200     } else {
3201         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
3202             st->index_entries[sc->current_sample].timestamp : st->duration;
3203         pkt->duration = next_dts - pkt->dts;
3204         pkt->pts = pkt->dts;
3205     }
3206     if (st->discard == AVDISCARD_ALL)
3207         goto retry;
3208     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
3209     pkt->pos = sample->pos;
3210     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
3211             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
3212     return 0;
3213 }
3214
3215 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
3216 {
3217     MOVStreamContext *sc = st->priv_data;
3218     int sample, time_sample;
3219     int i;
3220
3221     sample = av_index_search_timestamp(st, timestamp, flags);
3222     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
3223     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
3224         sample = 0;
3225     if (sample < 0) /* not sure what to do */
3226         return AVERROR_INVALIDDATA;
3227     sc->current_sample = sample;
3228     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
3229     /* adjust ctts index */
3230     if (sc->ctts_data) {
3231         time_sample = 0;
3232         for (i = 0; i < sc->ctts_count; i++) {
3233             int next = time_sample + sc->ctts_data[i].count;
3234             if (next > sc->current_sample) {
3235                 sc->ctts_index = i;
3236                 sc->ctts_sample = sc->current_sample - time_sample;
3237                 break;
3238             }
3239             time_sample = next;
3240         }
3241     }
3242     return sample;
3243 }
3244
3245 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
3246 {
3247     AVStream *st;
3248     int64_t seek_timestamp, timestamp;
3249     int sample;
3250     int i;
3251
3252     if (stream_index >= s->nb_streams)
3253         return AVERROR_INVALIDDATA;
3254
3255     st = s->streams[stream_index];
3256     sample = mov_seek_stream(s, st, sample_time, flags);
3257     if (sample < 0)
3258         return sample;
3259
3260     /* adjust seek timestamp to found sample timestamp */
3261     seek_timestamp = st->index_entries[sample].timestamp;
3262
3263     for (i = 0; i < s->nb_streams; i++) {
3264         MOVStreamContext *sc = s->streams[i]->priv_data;
3265         st = s->streams[i];
3266         st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
3267
3268         if (stream_index == i)
3269             continue;
3270
3271         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
3272         mov_seek_stream(s, st, timestamp, flags);
3273     }
3274     return 0;
3275 }
3276
3277 static const AVOption options[] = {
3278     {"use_absolute_path",
3279         "allow using absolute path when opening alias, this is a possible security issue",
3280         offsetof(MOVContext, use_absolute_path), FF_OPT_TYPE_INT, {.dbl = 0},
3281         0, 1, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM},
3282     {NULL}
3283 };
3284
3285 static const AVClass class = {
3286     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
3287     .item_name  = av_default_item_name,
3288     .option     = options,
3289     .version    = LIBAVUTIL_VERSION_INT,
3290 };
3291
3292 AVInputFormat ff_mov_demuxer = {
3293     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
3294     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
3295     .priv_data_size = sizeof(MOVContext),
3296     .read_probe     = mov_probe,
3297     .read_header    = mov_read_header,
3298     .read_packet    = mov_read_packet,
3299     .read_close     = mov_read_close,
3300     .read_seek      = mov_read_seek,
3301     .priv_class     = &class,
3302 };