]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
8312d2b1058f0f82e6f2adb3bcacf4508586fad0
[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  * first version by Francois Revol <revol@free.fr>
7  * seek function by Gael Chardon <gael.dev@4now.net>
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25
26 #include <inttypes.h>
27 #include <limits.h>
28 #include <stdint.h>
29
30 #include "libavutil/attributes.h"
31 #include "libavutil/channel_layout.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/intfloat.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/time_internal.h"
36 #include "libavutil/avstring.h"
37 #include "libavutil/dict.h"
38 #include "libavutil/display.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/timecode.h"
41 #include "libavcodec/ac3tab.h"
42 #include "avformat.h"
43 #include "internal.h"
44 #include "avio_internal.h"
45 #include "riff.h"
46 #include "isom.h"
47 #include "libavcodec/get_bits.h"
48 #include "id3v1.h"
49 #include "mov_chan.h"
50 #include "replaygain.h"
51
52 #if CONFIG_ZLIB
53 #include <zlib.h>
54 #endif
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 static int mov_read_mfra(MOVContext *c, AVIOContext *f);
71
72 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
73                                              unsigned len, const char *key)
74 {
75     char buf[16];
76
77     short current, total = 0;
78     avio_rb16(pb); // unknown
79     current = avio_rb16(pb);
80     if (len >= 6)
81         total = avio_rb16(pb);
82     if (!total)
83         snprintf(buf, sizeof(buf), "%d", current);
84     else
85         snprintf(buf, sizeof(buf), "%d/%d", current, total);
86     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
87     av_dict_set(&c->fc->metadata, key, buf, 0);
88
89     return 0;
90 }
91
92 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
93                                             unsigned len, const char *key)
94 {
95     /* bypass padding bytes */
96     avio_r8(pb);
97     avio_r8(pb);
98     avio_r8(pb);
99
100     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
101     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 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     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
110     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
111
112     return 0;
113 }
114
115 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
116                              unsigned len, const char *key)
117 {
118     short genre;
119
120     avio_r8(pb); // unknown
121
122     genre = avio_r8(pb);
123     if (genre < 1 || genre > ID3v1_GENRE_MAX)
124         return 0;
125     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
126     av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);
127
128     return 0;
129 }
130
131 static const uint32_t mac_to_unicode[128] = {
132     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
133     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
134     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
135     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
136     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
137     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
138     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
139     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
140     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
141     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
142     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
143     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
144     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
145     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
146     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
147     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
148 };
149
150 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
151                                char *dst, int dstlen)
152 {
153     char *p = dst;
154     char *end = dst+dstlen-1;
155     int i;
156
157     for (i = 0; i < len; i++) {
158         uint8_t t, c = avio_r8(pb);
159         if (c < 0x80 && p < end)
160             *p++ = c;
161         else if (p < end)
162             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
163     }
164     *p = 0;
165     return p - dst;
166 }
167
168 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
169 {
170     AVPacket pkt;
171     AVStream *st;
172     MOVStreamContext *sc;
173     enum AVCodecID id;
174     int ret;
175
176     switch (type) {
177     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
178     case 0xe:  id = AV_CODEC_ID_PNG;   break;
179     case 0x1b: id = AV_CODEC_ID_BMP;   break;
180     default:
181         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
182         avio_skip(pb, len);
183         return 0;
184     }
185
186     st = avformat_new_stream(c->fc, NULL);
187     if (!st)
188         return AVERROR(ENOMEM);
189     sc = av_mallocz(sizeof(*sc));
190     if (!sc)
191         return AVERROR(ENOMEM);
192     st->priv_data = sc;
193
194     ret = av_get_packet(pb, &pkt, len);
195     if (ret < 0)
196         return ret;
197
198     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
199
200     st->attached_pic              = pkt;
201     st->attached_pic.stream_index = st->index;
202     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
203
204     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
205     st->codec->codec_id   = id;
206
207     return 0;
208 }
209
210 static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
211 {
212     char language[4] = { 0 };
213     char buf[100];
214     uint16_t langcode = 0;
215     double longitude, latitude;
216     const char *key = "location";
217
218     if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4)
219         return AVERROR_INVALIDDATA;
220
221     avio_skip(pb, 4); // version+flags
222     langcode = avio_rb16(pb);
223     ff_mov_lang_to_iso639(langcode, language);
224     len -= 6;
225
226     len -= avio_get_str(pb, len, buf, sizeof(buf)); // place name
227     if (len < 1)
228         return AVERROR_INVALIDDATA;
229     avio_skip(pb, 1); // role
230     len -= 1;
231
232     if (len < 14)
233         return AVERROR_INVALIDDATA;
234     longitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
235     latitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
236
237     // Try to output in the same format as the ?xyz field
238     snprintf(buf, sizeof(buf), "%+08.4f%+09.4f/", latitude, longitude);
239     if (*language && strcmp(language, "und")) {
240         char key2[16];
241         snprintf(key2, sizeof(key2), "%s-%s", key, language);
242         av_dict_set(&c->fc->metadata, key2, buf, 0);
243     }
244     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
245     return av_dict_set(&c->fc->metadata, key, buf, 0);
246 }
247
248 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
249 {
250     char tmp_key[5];
251     char key2[32], language[4] = {0};
252     char *str = NULL;
253     const char *key = NULL;
254     uint16_t langcode = 0;
255     uint32_t data_type = 0, str_size, str_size_alloc;
256     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
257     int raw = 0;
258
259     switch (atom.type) {
260     case MKTAG( '@','P','R','M'): key = "premiere_version"; raw = 1; break;
261     case MKTAG( '@','P','R','Q'): key = "quicktime_version"; raw = 1; break;
262     case MKTAG( 'X','M','P','_'):
263         if (c->export_xmp) { key = "xmp"; raw = 1; } break;
264     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
265     case MKTAG( 'a','k','I','D'): key = "account_type";
266         parse = mov_metadata_int8_no_padding; break;
267     case MKTAG( 'a','p','I','D'): key = "account_id"; break;
268     case MKTAG( 'c','a','t','g'): key = "category"; break;
269     case MKTAG( 'c','p','i','l'): key = "compilation";
270         parse = mov_metadata_int8_no_padding; break;
271     case MKTAG( 'c','p','r','t'): key = "copyright"; break;
272     case MKTAG( 'd','e','s','c'): key = "description"; break;
273     case MKTAG( 'd','i','s','k'): key = "disc";
274         parse = mov_metadata_track_or_disc_number; break;
275     case MKTAG( 'e','g','i','d'): key = "episode_uid";
276         parse = mov_metadata_int8_no_padding; break;
277     case MKTAG( 'g','n','r','e'): key = "genre";
278         parse = mov_metadata_gnre; break;
279     case MKTAG( 'h','d','v','d'): key = "hd_video";
280         parse = mov_metadata_int8_no_padding; break;
281     case MKTAG( 'k','e','y','w'): key = "keywords";  break;
282     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
283     case MKTAG( 'l','o','c','i'):
284         return mov_metadata_loci(c, pb, atom.size);
285     case MKTAG( 'p','c','s','t'): key = "podcast";
286         parse = mov_metadata_int8_no_padding; break;
287     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
288         parse = mov_metadata_int8_no_padding; break;
289     case MKTAG( 'p','u','r','d'): key = "purchase_date"; break;
290     case MKTAG( 'r','t','n','g'): key = "rating";
291         parse = mov_metadata_int8_no_padding; break;
292     case MKTAG( 's','o','a','a'): key = "sort_album_artist"; break;
293     case MKTAG( 's','o','a','l'): key = "sort_album";   break;
294     case MKTAG( 's','o','a','r'): key = "sort_artist";  break;
295     case MKTAG( 's','o','c','o'): key = "sort_composer"; break;
296     case MKTAG( 's','o','n','m'): key = "sort_name";    break;
297     case MKTAG( 's','o','s','n'): key = "sort_show";    break;
298     case MKTAG( 's','t','i','k'): key = "media_type";
299         parse = mov_metadata_int8_no_padding; break;
300     case MKTAG( 't','r','k','n'): key = "track";
301         parse = mov_metadata_track_or_disc_number; break;
302     case MKTAG( 't','v','e','n'): key = "episode_id"; break;
303     case MKTAG( 't','v','e','s'): key = "episode_sort";
304         parse = mov_metadata_int8_bypass_padding; break;
305     case MKTAG( 't','v','n','n'): key = "network";   break;
306     case MKTAG( 't','v','s','h'): key = "show";      break;
307     case MKTAG( 't','v','s','n'): key = "season_number";
308         parse = mov_metadata_int8_bypass_padding; break;
309     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
310     case MKTAG(0xa9,'P','R','D'): key = "producer";  break;
311     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
312     case MKTAG(0xa9,'a','u','t'): key = "artist";    break;
313     case MKTAG(0xa9,'c','h','p'): key = "chapter";   break;
314     case MKTAG(0xa9,'c','m','t'): key = "comment";   break;
315     case MKTAG(0xa9,'c','o','m'): key = "composer";  break;
316     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
317     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
318     case MKTAG(0xa9,'d','i','r'): key = "director";  break;
319     case MKTAG(0xa9,'d','i','s'): key = "disclaimer"; break;
320     case MKTAG(0xa9,'e','d','1'): key = "edit_date"; break;
321     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
322     case MKTAG(0xa9,'f','m','t'): key = "original_format"; break;
323     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
324     case MKTAG(0xa9,'g','r','p'): key = "grouping";  break;
325     case MKTAG(0xa9,'h','s','t'): key = "host_computer"; break;
326     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
327     case MKTAG(0xa9,'l','y','r'): key = "lyrics";    break;
328     case MKTAG(0xa9,'m','a','k'): key = "make";      break;
329     case MKTAG(0xa9,'m','o','d'): key = "model";     break;
330     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
331     case MKTAG(0xa9,'o','p','e'): key = "original_artist"; break;
332     case MKTAG(0xa9,'p','r','d'): key = "producer";  break;
333     case MKTAG(0xa9,'p','r','f'): key = "performers"; break;
334     case MKTAG(0xa9,'r','e','q'): key = "playback_requirements"; break;
335     case MKTAG(0xa9,'s','r','c'): key = "original_source"; break;
336     case MKTAG(0xa9,'s','t','3'): key = "subtitle";  break;
337     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
338     case MKTAG(0xa9,'t','o','o'): key = "encoder";   break;
339     case MKTAG(0xa9,'t','r','k'): key = "track";     break;
340     case MKTAG(0xa9,'u','r','l'): key = "URL";       break;
341     case MKTAG(0xa9,'w','r','n'): key = "warning";   break;
342     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
343     case MKTAG(0xa9,'x','y','z'): key = "location";  break;
344     }
345
346     if (c->itunes_metadata && atom.size > 8) {
347         int data_size = avio_rb32(pb);
348         int tag = avio_rl32(pb);
349         if (tag == MKTAG('d','a','t','a')) {
350             data_type = avio_rb32(pb); // type
351             avio_rb32(pb); // unknown
352             str_size = data_size - 16;
353             atom.size -= 16;
354
355             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
356                 int ret = mov_read_covr(c, pb, data_type, str_size);
357                 if (ret < 0) {
358                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
359                 }
360                 return ret;
361             }
362         } else return 0;
363     } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) {
364         str_size = avio_rb16(pb); // string length
365         langcode = avio_rb16(pb);
366         ff_mov_lang_to_iso639(langcode, language);
367         atom.size -= 4;
368     } else
369         str_size = atom.size;
370
371     if (c->export_all && !key) {
372         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
373         key = tmp_key;
374     }
375
376     if (!key)
377         return 0;
378     if (atom.size < 0 || str_size >= INT_MAX/2)
379         return AVERROR_INVALIDDATA;
380
381     // worst-case requirement for output string in case of utf8 coded input
382     str_size_alloc = (raw ? str_size : str_size * 2) + 1;
383     str = av_mallocz(str_size_alloc);
384     if (!str)
385         return AVERROR(ENOMEM);
386
387     if (parse)
388         parse(c, pb, str_size, key);
389     else {
390         if (!raw && (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff)))) { // MAC Encoded
391             mov_read_mac_string(c, pb, str_size, str, str_size_alloc);
392         } else {
393             int ret = avio_read(pb, str, str_size);
394             if (ret != str_size) {
395                 av_freep(&str);
396                 return ret < 0 ? ret : AVERROR_INVALIDDATA;
397             }
398             str[str_size] = 0;
399         }
400         c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
401         av_dict_set(&c->fc->metadata, key, str, 0);
402         if (*language && strcmp(language, "und")) {
403             snprintf(key2, sizeof(key2), "%s-%s", key, language);
404             av_dict_set(&c->fc->metadata, key2, str, 0);
405         }
406     }
407     av_dlog(c->fc, "lang \"%3s\" ", language);
408     av_dlog(c->fc, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
409             key, str, (char*)&atom.type, str_size_alloc, atom.size);
410
411     av_freep(&str);
412     return 0;
413 }
414
415 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
416 {
417     int64_t start;
418     int i, nb_chapters, str_len, version;
419     char str[256+1];
420
421     if ((atom.size -= 5) < 0)
422         return 0;
423
424     version = avio_r8(pb);
425     avio_rb24(pb);
426     if (version)
427         avio_rb32(pb); // ???
428     nb_chapters = avio_r8(pb);
429
430     for (i = 0; i < nb_chapters; i++) {
431         if (atom.size < 9)
432             return 0;
433
434         start = avio_rb64(pb);
435         str_len = avio_r8(pb);
436
437         if ((atom.size -= 9+str_len) < 0)
438             return 0;
439
440         avio_read(pb, str, str_len);
441         str[str_len] = 0;
442         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
443     }
444     return 0;
445 }
446
447 #define MIN_DATA_ENTRY_BOX_SIZE 12
448 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
449 {
450     AVStream *st;
451     MOVStreamContext *sc;
452     int entries, i, j;
453
454     if (c->fc->nb_streams < 1)
455         return 0;
456     st = c->fc->streams[c->fc->nb_streams-1];
457     sc = st->priv_data;
458
459     avio_rb32(pb); // version + flags
460     entries = avio_rb32(pb);
461     if (entries >  (atom.size - 1) / MIN_DATA_ENTRY_BOX_SIZE + 1 ||
462         entries >= UINT_MAX / sizeof(*sc->drefs))
463         return AVERROR_INVALIDDATA;
464     av_free(sc->drefs);
465     sc->drefs_count = 0;
466     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
467     if (!sc->drefs)
468         return AVERROR(ENOMEM);
469     sc->drefs_count = entries;
470
471     for (i = 0; i < sc->drefs_count; i++) {
472         MOVDref *dref = &sc->drefs[i];
473         uint32_t size = avio_rb32(pb);
474         int64_t next = avio_tell(pb) + size - 4;
475
476         if (size < 12)
477             return AVERROR_INVALIDDATA;
478
479         dref->type = avio_rl32(pb);
480         avio_rb32(pb); // version + flags
481         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
482
483         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
484             /* macintosh alias record */
485             uint16_t volume_len, len;
486             int16_t type;
487
488             avio_skip(pb, 10);
489
490             volume_len = avio_r8(pb);
491             volume_len = FFMIN(volume_len, 27);
492             avio_read(pb, dref->volume, 27);
493             dref->volume[volume_len] = 0;
494             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
495
496             avio_skip(pb, 12);
497
498             len = avio_r8(pb);
499             len = FFMIN(len, 63);
500             avio_read(pb, dref->filename, 63);
501             dref->filename[len] = 0;
502             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
503
504             avio_skip(pb, 16);
505
506             /* read next level up_from_alias/down_to_target */
507             dref->nlvl_from = avio_rb16(pb);
508             dref->nlvl_to   = avio_rb16(pb);
509             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
510                    dref->nlvl_from, dref->nlvl_to);
511
512             avio_skip(pb, 16);
513
514             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
515                 if(avio_feof(pb))
516                     return AVERROR_EOF;
517                 type = avio_rb16(pb);
518                 len = avio_rb16(pb);
519                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
520                 if (len&1)
521                     len += 1;
522                 if (type == 2) { // absolute path
523                     av_free(dref->path);
524                     dref->path = av_mallocz(len+1);
525                     if (!dref->path)
526                         return AVERROR(ENOMEM);
527                     avio_read(pb, dref->path, len);
528                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
529                         len -= volume_len;
530                         memmove(dref->path, dref->path+volume_len, len);
531                         dref->path[len] = 0;
532                     }
533                     for (j = 0; j < len; j++)
534                         if (dref->path[j] == ':')
535                             dref->path[j] = '/';
536                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
537                 } else if (type == 0) { // directory name
538                     av_free(dref->dir);
539                     dref->dir = av_malloc(len+1);
540                     if (!dref->dir)
541                         return AVERROR(ENOMEM);
542                     if (avio_read(pb, dref->dir, len) != len)
543                         return AVERROR_INVALIDDATA;
544                     dref->dir[len] = 0;
545                     for (j = 0; j < len; j++)
546                         if (dref->dir[j] == ':')
547                             dref->dir[j] = '/';
548                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
549                 } else
550                     avio_skip(pb, len);
551             }
552         }
553         avio_seek(pb, next, SEEK_SET);
554     }
555     return 0;
556 }
557
558 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
559 {
560     AVStream *st;
561     uint32_t type;
562     uint32_t av_unused ctype;
563     int title_size;
564     char *title_str;
565
566     if (c->fc->nb_streams < 1) // meta before first trak
567         return 0;
568
569     st = c->fc->streams[c->fc->nb_streams-1];
570
571     avio_r8(pb); /* version */
572     avio_rb24(pb); /* flags */
573
574     /* component type */
575     ctype = avio_rl32(pb);
576     type = avio_rl32(pb); /* component subtype */
577
578     av_dlog(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
579     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
580
581     if     (type == MKTAG('v','i','d','e'))
582         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
583     else if (type == MKTAG('s','o','u','n'))
584         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
585     else if (type == MKTAG('m','1','a',' '))
586         st->codec->codec_id = AV_CODEC_ID_MP2;
587     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
588         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
589
590     avio_rb32(pb); /* component  manufacture */
591     avio_rb32(pb); /* component flags */
592     avio_rb32(pb); /* component flags mask */
593
594     title_size = atom.size - 24;
595     if (title_size > 0) {
596         title_str = av_malloc(title_size + 1); /* Add null terminator */
597         if (!title_str)
598             return AVERROR(ENOMEM);
599         avio_read(pb, title_str, title_size);
600         title_str[title_size] = 0;
601         if (title_str[0])
602             av_dict_set(&st->metadata, "handler_name", title_str +
603                         (!c->isom && title_str[0] == title_size - 1), 0);
604         av_freep(&title_str);
605     }
606
607     return 0;
608 }
609
610 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
611 {
612     AVStream *st;
613     int tag;
614
615     if (fc->nb_streams < 1)
616         return 0;
617     st = fc->streams[fc->nb_streams-1];
618
619     avio_rb32(pb); /* version + flags */
620     ff_mp4_read_descr(fc, pb, &tag);
621     if (tag == MP4ESDescrTag) {
622         ff_mp4_parse_es_descr(pb, NULL);
623     } else
624         avio_rb16(pb); /* ID */
625
626     ff_mp4_read_descr(fc, pb, &tag);
627     if (tag == MP4DecConfigDescrTag)
628         ff_mp4_read_dec_config_descr(fc, st, pb);
629     return 0;
630 }
631
632 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
633 {
634     return ff_mov_read_esds(c->fc, pb);
635 }
636
637 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
638 {
639     AVStream *st;
640     int ac3info, acmod, lfeon, bsmod;
641
642     if (c->fc->nb_streams < 1)
643         return 0;
644     st = c->fc->streams[c->fc->nb_streams-1];
645
646     ac3info = avio_rb24(pb);
647     bsmod = (ac3info >> 14) & 0x7;
648     acmod = (ac3info >> 11) & 0x7;
649     lfeon = (ac3info >> 10) & 0x1;
650     st->codec->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
651     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
652     if (lfeon)
653         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
654     st->codec->audio_service_type = bsmod;
655     if (st->codec->channels > 1 && bsmod == 0x7)
656         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
657
658     return 0;
659 }
660
661 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
662 {
663     AVStream *st;
664     int eac3info, acmod, lfeon, bsmod;
665
666     if (c->fc->nb_streams < 1)
667         return 0;
668     st = c->fc->streams[c->fc->nb_streams-1];
669
670     /* No need to parse fields for additional independent substreams and its
671      * associated dependent substreams since libavcodec's E-AC-3 decoder
672      * does not support them yet. */
673     avio_rb16(pb); /* data_rate and num_ind_sub */
674     eac3info = avio_rb24(pb);
675     bsmod = (eac3info >> 12) & 0x1f;
676     acmod = (eac3info >>  9) & 0x7;
677     lfeon = (eac3info >>  8) & 0x1;
678     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
679     if (lfeon)
680         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
681     st->codec->channels = av_get_channel_layout_nb_channels(st->codec->channel_layout);
682     st->codec->audio_service_type = bsmod;
683     if (st->codec->channels > 1 && bsmod == 0x7)
684         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
685
686     return 0;
687 }
688
689 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
690 {
691     AVStream *st;
692
693     if (c->fc->nb_streams < 1)
694         return 0;
695     st = c->fc->streams[c->fc->nb_streams-1];
696
697     if (atom.size < 16)
698         return 0;
699
700     /* skip version and flags */
701     avio_skip(pb, 4);
702
703     ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
704
705     return 0;
706 }
707
708 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
709 {
710     AVStream *st;
711     int ret;
712
713     if (c->fc->nb_streams < 1)
714         return 0;
715     st = c->fc->streams[c->fc->nb_streams-1];
716
717     if ((ret = ff_get_wav_header(pb, st->codec, atom.size, 0)) < 0)
718         av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
719
720     return ret;
721 }
722
723 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
724 {
725     const int num = avio_rb32(pb);
726     const int den = avio_rb32(pb);
727     AVStream *st;
728
729     if (c->fc->nb_streams < 1)
730         return 0;
731     st = c->fc->streams[c->fc->nb_streams-1];
732
733     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
734         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
735         av_log(c->fc, AV_LOG_WARNING,
736                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
737                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
738                num, den);
739     } else if (den != 0) {
740         st->sample_aspect_ratio.num = num;
741         st->sample_aspect_ratio.den = den;
742     }
743     return 0;
744 }
745
746 /* this atom contains actual media data */
747 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
748 {
749     if (atom.size == 0) /* wrong one (MP4) */
750         return 0;
751     c->found_mdat=1;
752     return 0; /* now go for moov */
753 }
754
755 /* read major brand, minor version and compatible brands and store them as metadata */
756 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
757 {
758     uint32_t minor_ver;
759     int comp_brand_size;
760     char* comp_brands_str;
761     uint8_t type[5] = {0};
762
763     avio_read(pb, type, 4);
764     if (strcmp(type, "qt  "))
765         c->isom = 1;
766     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
767     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
768     minor_ver = avio_rb32(pb); /* minor version */
769     av_dict_set_int(&c->fc->metadata, "minor_version", minor_ver, 0);
770
771     comp_brand_size = atom.size - 8;
772     if (comp_brand_size < 0)
773         return AVERROR_INVALIDDATA;
774     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
775     if (!comp_brands_str)
776         return AVERROR(ENOMEM);
777     avio_read(pb, comp_brands_str, comp_brand_size);
778     comp_brands_str[comp_brand_size] = 0;
779     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
780     av_freep(&comp_brands_str);
781
782     return 0;
783 }
784
785 /* this atom should contain all header atoms */
786 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
787 {
788     int ret;
789
790     if (c->found_moov) {
791         av_log(c->fc, AV_LOG_WARNING, "Found duplicated MOOV Atom. Skipped it\n");
792         avio_skip(pb, atom.size);
793         return 0;
794     }
795
796     if ((ret = mov_read_default(c, pb, atom)) < 0)
797         return ret;
798     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
799     /* so we don't parse the whole file if over a network */
800     c->found_moov=1;
801     return 0; /* now go for mdat */
802 }
803
804 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
805 {
806     if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
807         c->has_looked_for_mfra = 1;
808         if (pb->seekable) {
809             int ret;
810             av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
811                     "for a mfra\n");
812             if ((ret = mov_read_mfra(c, pb)) < 0) {
813                 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
814                         "read the mfra (may be a live ismv)\n");
815             }
816         } else {
817             av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but stream is not "
818                     "seekable, can not look for mfra\n");
819         }
820     }
821     c->fragment.moof_offset = c->fragment.implicit_offset = avio_tell(pb) - 8;
822     av_dlog(c->fc, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
823     return mov_read_default(c, pb, atom);
824 }
825
826 static void mov_metadata_creation_time(AVDictionary **metadata, int64_t time)
827 {
828     char buffer[32];
829     if (time) {
830         struct tm *ptm, tmbuf;
831         time_t timet;
832         if(time >= 2082844800)
833             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
834         timet = time;
835         ptm = gmtime_r(&timet, &tmbuf);
836         if (!ptm) return;
837         if (strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm))
838             av_dict_set(metadata, "creation_time", buffer, 0);
839     }
840 }
841
842 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
843 {
844     AVStream *st;
845     MOVStreamContext *sc;
846     int version;
847     char language[4] = {0};
848     unsigned lang;
849     int64_t creation_time;
850
851     if (c->fc->nb_streams < 1)
852         return 0;
853     st = c->fc->streams[c->fc->nb_streams-1];
854     sc = st->priv_data;
855
856     if (sc->time_scale) {
857         av_log(c->fc, AV_LOG_ERROR, "Multiple mdhd?\n");
858         return AVERROR_INVALIDDATA;
859     }
860
861     version = avio_r8(pb);
862     if (version > 1) {
863         avpriv_request_sample(c->fc, "Version %d", version);
864         return AVERROR_PATCHWELCOME;
865     }
866     avio_rb24(pb); /* flags */
867     if (version == 1) {
868         creation_time = avio_rb64(pb);
869         avio_rb64(pb);
870     } else {
871         creation_time = avio_rb32(pb);
872         avio_rb32(pb); /* modification time */
873     }
874     mov_metadata_creation_time(&st->metadata, creation_time);
875
876     sc->time_scale = avio_rb32(pb);
877     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
878
879     lang = avio_rb16(pb); /* language */
880     if (ff_mov_lang_to_iso639(lang, language))
881         av_dict_set(&st->metadata, "language", language, 0);
882     avio_rb16(pb); /* quality */
883
884     return 0;
885 }
886
887 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
888 {
889     int64_t creation_time;
890     int version = avio_r8(pb); /* version */
891     avio_rb24(pb); /* flags */
892
893     if (version == 1) {
894         creation_time = avio_rb64(pb);
895         avio_rb64(pb);
896     } else {
897         creation_time = avio_rb32(pb);
898         avio_rb32(pb); /* modification time */
899     }
900     mov_metadata_creation_time(&c->fc->metadata, creation_time);
901     c->time_scale = avio_rb32(pb); /* time scale */
902
903     av_dlog(c->fc, "time scale = %i\n", c->time_scale);
904
905     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
906     // set the AVCodecContext duration because the duration of individual tracks
907     // may be inaccurate
908     if (c->time_scale > 0 && !c->trex_data)
909         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
910     avio_rb32(pb); /* preferred scale */
911
912     avio_rb16(pb); /* preferred volume */
913
914     avio_skip(pb, 10); /* reserved */
915
916     avio_skip(pb, 36); /* display matrix */
917
918     avio_rb32(pb); /* preview time */
919     avio_rb32(pb); /* preview duration */
920     avio_rb32(pb); /* poster time */
921     avio_rb32(pb); /* selection time */
922     avio_rb32(pb); /* selection duration */
923     avio_rb32(pb); /* current time */
924     avio_rb32(pb); /* next track ID */
925     return 0;
926 }
927
928 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
929 {
930     AVStream *st;
931     int little_endian;
932
933     if (c->fc->nb_streams < 1)
934         return 0;
935     st = c->fc->streams[c->fc->nb_streams-1];
936
937     little_endian = avio_rb16(pb) & 0xFF;
938     av_dlog(c->fc, "enda %d\n", little_endian);
939     if (little_endian == 1) {
940         switch (st->codec->codec_id) {
941         case AV_CODEC_ID_PCM_S24BE:
942             st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
943             break;
944         case AV_CODEC_ID_PCM_S32BE:
945             st->codec->codec_id = AV_CODEC_ID_PCM_S32LE;
946             break;
947         case AV_CODEC_ID_PCM_F32BE:
948             st->codec->codec_id = AV_CODEC_ID_PCM_F32LE;
949             break;
950         case AV_CODEC_ID_PCM_F64BE:
951             st->codec->codec_id = AV_CODEC_ID_PCM_F64LE;
952             break;
953         default:
954             break;
955         }
956     }
957     return 0;
958 }
959
960 static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
961 {
962     AVStream *st;
963     char color_parameter_type[5] = { 0 };
964     int color_primaries, color_trc, color_matrix;
965
966     if (c->fc->nb_streams < 1)
967         return 0;
968     st = c->fc->streams[c->fc->nb_streams - 1];
969
970     avio_read(pb, color_parameter_type, 4);
971     if (strncmp(color_parameter_type, "nclx", 4) &&
972         strncmp(color_parameter_type, "nclc", 4)) {
973         av_log(c->fc, AV_LOG_WARNING, "unsupported color_parameter_type %s\n",
974                color_parameter_type);
975         return 0;
976     }
977
978     color_primaries = avio_rb16(pb);
979     color_trc = avio_rb16(pb);
980     color_matrix = avio_rb16(pb);
981
982     av_dlog(c->fc, "%s: pri %d trc %d matrix %d",
983             color_parameter_type, color_primaries, color_trc, color_matrix);
984
985     if (c->isom) {
986         uint8_t color_range = avio_r8(pb) >> 7;
987         av_dlog(c->fc, " full %"PRIu8"", color_range);
988         if (color_range)
989             st->codec->color_range = AVCOL_RANGE_JPEG;
990         else
991             st->codec->color_range = AVCOL_RANGE_MPEG;
992         /* 14496-12 references JPEG XR specs (rather than the more complete
993          * 23001-8) so some adjusting is required */
994         if (color_primaries >= AVCOL_PRI_FILM)
995             color_primaries = AVCOL_PRI_UNSPECIFIED;
996         if ((color_trc >= AVCOL_TRC_LINEAR &&
997              color_trc <= AVCOL_TRC_LOG_SQRT) ||
998             color_trc >= AVCOL_TRC_BT2020_10)
999             color_trc = AVCOL_TRC_UNSPECIFIED;
1000         if (color_matrix >= AVCOL_SPC_BT2020_NCL)
1001             color_matrix = AVCOL_SPC_UNSPECIFIED;
1002         st->codec->color_primaries = color_primaries;
1003         st->codec->color_trc = color_trc;
1004         st->codec->colorspace = color_matrix;
1005     } else {
1006         /* color primaries, Table 4-4 */
1007         switch (color_primaries) {
1008         case 1: st->codec->color_primaries = AVCOL_PRI_BT709; break;
1009         case 5: st->codec->color_primaries = AVCOL_PRI_SMPTE170M; break;
1010         case 6: st->codec->color_primaries = AVCOL_PRI_SMPTE240M; break;
1011         }
1012         /* color transfer, Table 4-5 */
1013         switch (color_trc) {
1014         case 1: st->codec->color_trc = AVCOL_TRC_BT709; break;
1015         case 7: st->codec->color_trc = AVCOL_TRC_SMPTE240M; break;
1016         }
1017         /* color matrix, Table 4-6 */
1018         switch (color_matrix) {
1019         case 1: st->codec->colorspace = AVCOL_SPC_BT709; break;
1020         case 6: st->codec->colorspace = AVCOL_SPC_BT470BG; break;
1021         case 7: st->codec->colorspace = AVCOL_SPC_SMPTE240M; break;
1022         }
1023     }
1024     av_dlog(c->fc, "\n");
1025
1026     return 0;
1027 }
1028
1029 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1030 {
1031     AVStream *st;
1032     unsigned mov_field_order;
1033     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
1034
1035     if (c->fc->nb_streams < 1) // will happen with jp2 files
1036         return 0;
1037     st = c->fc->streams[c->fc->nb_streams-1];
1038     if (atom.size < 2)
1039         return AVERROR_INVALIDDATA;
1040     mov_field_order = avio_rb16(pb);
1041     if ((mov_field_order & 0xFF00) == 0x0100)
1042         decoded_field_order = AV_FIELD_PROGRESSIVE;
1043     else if ((mov_field_order & 0xFF00) == 0x0200) {
1044         switch (mov_field_order & 0xFF) {
1045         case 0x01: decoded_field_order = AV_FIELD_TT;
1046                    break;
1047         case 0x06: decoded_field_order = AV_FIELD_BB;
1048                    break;
1049         case 0x09: decoded_field_order = AV_FIELD_TB;
1050                    break;
1051         case 0x0E: decoded_field_order = AV_FIELD_BT;
1052                    break;
1053         }
1054     }
1055     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
1056         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
1057     }
1058     st->codec->field_order = decoded_field_order;
1059
1060     return 0;
1061 }
1062
1063 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
1064 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1065                               enum AVCodecID codec_id)
1066 {
1067     AVStream *st;
1068     uint64_t size;
1069     uint8_t *buf;
1070     int err;
1071
1072     if (c->fc->nb_streams < 1) // will happen with jp2 files
1073         return 0;
1074     st= c->fc->streams[c->fc->nb_streams-1];
1075
1076     if (st->codec->codec_id != codec_id)
1077         return 0; /* unexpected codec_id - don't mess with extradata */
1078
1079     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
1080     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
1081         return AVERROR_INVALIDDATA;
1082     if ((err = av_reallocp(&st->codec->extradata, size)) < 0) {
1083         st->codec->extradata_size = 0;
1084         return err;
1085     }
1086     buf = st->codec->extradata + st->codec->extradata_size;
1087     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
1088     AV_WB32(       buf    , atom.size + 8);
1089     AV_WL32(       buf + 4, atom.type);
1090     err = avio_read(pb, buf + 8, atom.size);
1091     if (err < 0) {
1092         return err;
1093     } else if (err < atom.size) {
1094         av_log(c->fc, AV_LOG_WARNING, "truncated extradata\n");
1095         st->codec->extradata_size -= atom.size - err;
1096     }
1097     memset(buf + 8 + err, 0, FF_INPUT_BUFFER_PADDING_SIZE);
1098     return 0;
1099 }
1100
1101 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
1102 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1103 {
1104     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
1105 }
1106
1107 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1108 {
1109     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
1110 }
1111
1112 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1113 {
1114     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
1115 }
1116
1117 static int mov_read_dpxe(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1118 {
1119     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_R10K);
1120 }
1121
1122 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1123 {
1124     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1125     if(ret == 0)
1126         ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1127     return ret;
1128 }
1129
1130 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1131 {
1132     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1133
1134     if (!ret && c->fc->nb_streams >= 1) {
1135         AVCodecContext *avctx = c->fc->streams[c->fc->nb_streams-1]->codec;
1136         if (avctx->extradata_size >= 40) {
1137             avctx->height = AV_RB16(&avctx->extradata[36]);
1138             avctx->width  = AV_RB16(&avctx->extradata[38]);
1139         }
1140     }
1141     return ret;
1142 }
1143
1144 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1145 {
1146     if (c->fc->nb_streams >= 1) {
1147         AVCodecContext *codec = c->fc->streams[c->fc->nb_streams-1]->codec;
1148         if (codec->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1149             codec->codec_id == AV_CODEC_ID_H264 &&
1150             atom.size > 11) {
1151             avio_skip(pb, 10);
1152             /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1153             if (avio_rb16(pb) == 0xd4d)
1154                 codec->width = 1440;
1155             return 0;
1156         }
1157     }
1158
1159     return mov_read_avid(c, pb, atom);
1160 }
1161
1162 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1163 {
1164     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1165 }
1166
1167 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1168 {
1169     AVStream *st;
1170
1171     if (c->fc->nb_streams < 1)
1172         return 0;
1173     st = c->fc->streams[c->fc->nb_streams-1];
1174
1175     if ((uint64_t)atom.size > (1<<30))
1176         return AVERROR_INVALIDDATA;
1177
1178     if (st->codec->codec_id == AV_CODEC_ID_QDM2 ||
1179         st->codec->codec_id == AV_CODEC_ID_QDMC ||
1180         st->codec->codec_id == AV_CODEC_ID_SPEEX) {
1181         // pass all frma atom to codec, needed at least for QDMC and QDM2
1182         av_freep(&st->codec->extradata);
1183         if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1184             return AVERROR(ENOMEM);
1185     } else if (atom.size > 8) { /* to read frma, esds atoms */
1186         int ret;
1187         if ((ret = mov_read_default(c, pb, atom)) < 0)
1188             return ret;
1189     } else
1190         avio_skip(pb, atom.size);
1191     return 0;
1192 }
1193
1194 /**
1195  * This function reads atom content and puts data in extradata without tag
1196  * nor size unlike mov_read_extradata.
1197  */
1198 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1199 {
1200     AVStream *st;
1201
1202     if (c->fc->nb_streams < 1)
1203         return 0;
1204     st = c->fc->streams[c->fc->nb_streams-1];
1205
1206     if ((uint64_t)atom.size > (1<<30))
1207         return AVERROR_INVALIDDATA;
1208
1209     if (atom.size >= 10) {
1210         // Broken files created by legacy versions of libavformat will
1211         // wrap a whole fiel atom inside of a glbl atom.
1212         unsigned size = avio_rb32(pb);
1213         unsigned type = avio_rl32(pb);
1214         avio_seek(pb, -8, SEEK_CUR);
1215         if (type == MKTAG('f','i','e','l') && size == atom.size)
1216             return mov_read_default(c, pb, atom);
1217     }
1218     if (st->codec->extradata_size > 1 && st->codec->extradata) {
1219         av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1220         return 0;
1221     }
1222     av_freep(&st->codec->extradata);
1223     if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1224         return AVERROR(ENOMEM);
1225
1226     return 0;
1227 }
1228
1229 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1230 {
1231     AVStream *st;
1232     uint8_t profile_level;
1233     int ret;
1234
1235     if (c->fc->nb_streams < 1)
1236         return 0;
1237     st = c->fc->streams[c->fc->nb_streams-1];
1238
1239     if (atom.size >= (1<<28) || atom.size < 7)
1240         return AVERROR_INVALIDDATA;
1241
1242     profile_level = avio_r8(pb);
1243     if ((profile_level & 0xf0) != 0xc0)
1244         return 0;
1245
1246     avio_seek(pb, 6, SEEK_CUR);
1247     av_freep(&st->codec->extradata);
1248     if ((ret = ff_get_extradata(st->codec, pb, atom.size - 7)) < 0)
1249         return ret;
1250
1251     return 0;
1252 }
1253
1254 /**
1255  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1256  * but can have extradata appended at the end after the 40 bytes belonging
1257  * to the struct.
1258  */
1259 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1260 {
1261     AVStream *st;
1262
1263     if (c->fc->nb_streams < 1)
1264         return 0;
1265     if (atom.size <= 40)
1266         return 0;
1267     st = c->fc->streams[c->fc->nb_streams-1];
1268
1269     if ((uint64_t)atom.size > (1<<30))
1270         return AVERROR_INVALIDDATA;
1271
1272     avio_skip(pb, 40);
1273     av_freep(&st->codec->extradata);
1274     if (ff_get_extradata(st->codec, pb, atom.size - 40) < 0)
1275         return AVERROR(ENOMEM);
1276     return 0;
1277 }
1278
1279 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1280 {
1281     AVStream *st;
1282     MOVStreamContext *sc;
1283     unsigned int i, entries;
1284
1285     if (c->fc->nb_streams < 1)
1286         return 0;
1287     st = c->fc->streams[c->fc->nb_streams-1];
1288     sc = st->priv_data;
1289
1290     avio_r8(pb); /* version */
1291     avio_rb24(pb); /* flags */
1292
1293     entries = avio_rb32(pb);
1294
1295     if (!entries)
1296         return 0;
1297
1298     if (sc->chunk_offsets)
1299         av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1300     av_free(sc->chunk_offsets);
1301     sc->chunk_count = 0;
1302     sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1303     if (!sc->chunk_offsets)
1304         return AVERROR(ENOMEM);
1305     sc->chunk_count = entries;
1306
1307     if      (atom.type == MKTAG('s','t','c','o'))
1308         for (i = 0; i < entries && !pb->eof_reached; i++)
1309             sc->chunk_offsets[i] = avio_rb32(pb);
1310     else if (atom.type == MKTAG('c','o','6','4'))
1311         for (i = 0; i < entries && !pb->eof_reached; i++)
1312             sc->chunk_offsets[i] = avio_rb64(pb);
1313     else
1314         return AVERROR_INVALIDDATA;
1315
1316     sc->chunk_count = i;
1317
1318     if (pb->eof_reached)
1319         return AVERROR_EOF;
1320
1321     return 0;
1322 }
1323
1324 /**
1325  * Compute codec id for 'lpcm' tag.
1326  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1327  */
1328 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1329 {
1330     /* lpcm flags:
1331      * 0x1 = float
1332      * 0x2 = big-endian
1333      * 0x4 = signed
1334      */
1335     return ff_get_pcm_codec_id(bps, flags & 1, flags & 2, flags & 4 ? -1 : 0);
1336 }
1337
1338 static int mov_codec_id(AVStream *st, uint32_t format)
1339 {
1340     int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1341
1342     if (id <= 0 &&
1343         ((format & 0xFFFF) == 'm' + ('s' << 8) ||
1344          (format & 0xFFFF) == 'T' + ('S' << 8)))
1345         id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
1346
1347     if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1348         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1349     } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO &&
1350                /* skip old asf mpeg4 tag */
1351                format && format != MKTAG('m','p','4','s')) {
1352         id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1353         if (id <= 0)
1354             id = ff_codec_get_id(ff_codec_bmp_tags, format);
1355         if (id > 0)
1356             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1357         else if (st->codec->codec_type == AVMEDIA_TYPE_DATA ||
1358                     (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1359                     st->codec->codec_id == AV_CODEC_ID_NONE)) {
1360             id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1361             if (id > 0)
1362                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1363         }
1364     }
1365
1366     st->codec->codec_tag = format;
1367
1368     return id;
1369 }
1370
1371 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
1372                                  AVStream *st, MOVStreamContext *sc)
1373 {
1374     uint8_t codec_name[32];
1375     unsigned int color_depth, len, j;
1376     int color_greyscale;
1377     int color_table_id;
1378
1379     avio_rb16(pb); /* version */
1380     avio_rb16(pb); /* revision level */
1381     avio_rb32(pb); /* vendor */
1382     avio_rb32(pb); /* temporal quality */
1383     avio_rb32(pb); /* spatial quality */
1384
1385     st->codec->width  = avio_rb16(pb); /* width */
1386     st->codec->height = avio_rb16(pb); /* height */
1387
1388     avio_rb32(pb); /* horiz resolution */
1389     avio_rb32(pb); /* vert resolution */
1390     avio_rb32(pb); /* data size, always 0 */
1391     avio_rb16(pb); /* frames per samples */
1392
1393     len = avio_r8(pb); /* codec name, pascal string */
1394     if (len > 31)
1395         len = 31;
1396     mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
1397     if (len < 31)
1398         avio_skip(pb, 31 - len);
1399
1400     if (codec_name[0])
1401         av_dict_set(&st->metadata, "encoder", codec_name, 0);
1402
1403     /* codec_tag YV12 triggers an UV swap in rawdec.c */
1404     if (!memcmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
1405         st->codec->codec_tag = MKTAG('I', '4', '2', '0');
1406         st->codec->width &= ~1;
1407         st->codec->height &= ~1;
1408     }
1409     /* Flash Media Server uses tag H263 with Sorenson Spark */
1410     if (st->codec->codec_tag == MKTAG('H','2','6','3') &&
1411         !memcmp(codec_name, "Sorenson H263", 13))
1412         st->codec->codec_id = AV_CODEC_ID_FLV1;
1413
1414     st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1415     color_table_id = avio_rb16(pb); /* colortable id */
1416     av_dlog(c->fc, "depth %d, ctab id %d\n",
1417             st->codec->bits_per_coded_sample, color_table_id);
1418     /* figure out the palette situation */
1419     color_depth     = st->codec->bits_per_coded_sample & 0x1F;
1420     color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1421     /* Do not create a greyscale palette for cinepak */
1422     if (color_greyscale && st->codec->codec_id == AV_CODEC_ID_CINEPAK)
1423         return;
1424
1425     /* if the depth is 2, 4, or 8 bpp, file is palettized */
1426     if ((color_depth == 2) || (color_depth == 4) || (color_depth == 8)) {
1427         /* for palette traversal */
1428         unsigned int color_start, color_count, color_end;
1429         unsigned char a, r, g, b;
1430
1431         if (color_greyscale) {
1432             int color_index, color_dec;
1433             /* compute the greyscale palette */
1434             st->codec->bits_per_coded_sample = color_depth;
1435             color_count = 1 << color_depth;
1436             color_index = 255;
1437             color_dec   = 256 / (color_count - 1);
1438             for (j = 0; j < color_count; j++) {
1439                 r = g = b = color_index;
1440                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1441                 color_index -= color_dec;
1442                 if (color_index < 0)
1443                     color_index = 0;
1444             }
1445         } else if (color_table_id) {
1446             const uint8_t *color_table;
1447             /* if flag bit 3 is set, use the default palette */
1448             color_count = 1 << color_depth;
1449             if (color_depth == 2)
1450                 color_table = ff_qt_default_palette_4;
1451             else if (color_depth == 4)
1452                 color_table = ff_qt_default_palette_16;
1453             else
1454                 color_table = ff_qt_default_palette_256;
1455
1456             for (j = 0; j < color_count; j++) {
1457                 r = color_table[j * 3 + 0];
1458                 g = color_table[j * 3 + 1];
1459                 b = color_table[j * 3 + 2];
1460                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1461             }
1462         } else {
1463             /* load the palette from the file */
1464             color_start = avio_rb32(pb);
1465             color_count = avio_rb16(pb);
1466             color_end   = avio_rb16(pb);
1467             if ((color_start <= 255) && (color_end <= 255)) {
1468                 for (j = color_start; j <= color_end; j++) {
1469                     /* each A, R, G, or B component is 16 bits;
1470                         * only use the top 8 bits */
1471                     a = avio_r8(pb);
1472                     avio_r8(pb);
1473                     r = avio_r8(pb);
1474                     avio_r8(pb);
1475                     g = avio_r8(pb);
1476                     avio_r8(pb);
1477                     b = avio_r8(pb);
1478                     avio_r8(pb);
1479                     sc->palette[j] = (a << 24 ) | (r << 16) | (g << 8) | (b);
1480                 }
1481             }
1482         }
1483         sc->has_palette = 1;
1484     }
1485 }
1486
1487 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
1488                                  AVStream *st, MOVStreamContext *sc)
1489 {
1490     int bits_per_sample, flags;
1491     uint16_t version = avio_rb16(pb);
1492     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
1493
1494     avio_rb16(pb); /* revision level */
1495     avio_rb32(pb); /* vendor */
1496
1497     st->codec->channels              = avio_rb16(pb); /* channel count */
1498     st->codec->bits_per_coded_sample = avio_rb16(pb); /* sample size */
1499     av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1500
1501     sc->audio_cid = avio_rb16(pb);
1502     avio_rb16(pb); /* packet size = 0 */
1503
1504     st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1505
1506     // Read QT version 1 fields. In version 0 these do not exist.
1507     av_dlog(c->fc, "version =%d, isom =%d\n", version, c->isom);
1508     if (!c->isom ||
1509         (compatible_brands && strstr(compatible_brands->value, "qt  "))) {
1510
1511         if (version == 1) {
1512             sc->samples_per_frame = avio_rb32(pb);
1513             avio_rb32(pb); /* bytes per packet */
1514             sc->bytes_per_frame = avio_rb32(pb);
1515             avio_rb32(pb); /* bytes per sample */
1516         } else if (version == 2) {
1517             avio_rb32(pb); /* sizeof struct only */
1518             st->codec->sample_rate = av_int2double(avio_rb64(pb));
1519             st->codec->channels    = avio_rb32(pb);
1520             avio_rb32(pb); /* always 0x7F000000 */
1521             st->codec->bits_per_coded_sample = avio_rb32(pb);
1522
1523             flags = avio_rb32(pb); /* lpcm format specific flag */
1524             sc->bytes_per_frame   = avio_rb32(pb);
1525             sc->samples_per_frame = avio_rb32(pb);
1526             if (st->codec->codec_tag == MKTAG('l','p','c','m'))
1527                 st->codec->codec_id =
1528                     ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample,
1529                                              flags);
1530         }
1531     }
1532
1533     switch (st->codec->codec_id) {
1534     case AV_CODEC_ID_PCM_S8:
1535     case AV_CODEC_ID_PCM_U8:
1536         if (st->codec->bits_per_coded_sample == 16)
1537             st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
1538         break;
1539     case AV_CODEC_ID_PCM_S16LE:
1540     case AV_CODEC_ID_PCM_S16BE:
1541         if (st->codec->bits_per_coded_sample == 8)
1542             st->codec->codec_id = AV_CODEC_ID_PCM_S8;
1543         else if (st->codec->bits_per_coded_sample == 24)
1544             st->codec->codec_id =
1545                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1546                 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1547         else if (st->codec->bits_per_coded_sample == 32)
1548              st->codec->codec_id =
1549                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1550                 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
1551         break;
1552     /* set values for old format before stsd version 1 appeared */
1553     case AV_CODEC_ID_MACE3:
1554         sc->samples_per_frame = 6;
1555         sc->bytes_per_frame   = 2 * st->codec->channels;
1556         break;
1557     case AV_CODEC_ID_MACE6:
1558         sc->samples_per_frame = 6;
1559         sc->bytes_per_frame   = 1 * st->codec->channels;
1560         break;
1561     case AV_CODEC_ID_ADPCM_IMA_QT:
1562         sc->samples_per_frame = 64;
1563         sc->bytes_per_frame   = 34 * st->codec->channels;
1564         break;
1565     case AV_CODEC_ID_GSM:
1566         sc->samples_per_frame = 160;
1567         sc->bytes_per_frame   = 33;
1568         break;
1569     default:
1570         break;
1571     }
1572
1573     bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1574     if (bits_per_sample) {
1575         st->codec->bits_per_coded_sample = bits_per_sample;
1576         sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1577     }
1578 }
1579
1580 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
1581                                     AVStream *st, MOVStreamContext *sc,
1582                                     int64_t size)
1583 {
1584     // ttxt stsd contains display flags, justification, background
1585     // color, fonts, and default styles, so fake an atom to read it
1586     MOVAtom fake_atom = { .size = size };
1587     // mp4s contains a regular esds atom
1588     if (st->codec->codec_tag != AV_RL32("mp4s"))
1589         mov_read_glbl(c, pb, fake_atom);
1590     st->codec->width  = sc->width;
1591     st->codec->height = sc->height;
1592 }
1593
1594 static uint32_t yuv_to_rgba(uint32_t ycbcr)
1595 {
1596     uint8_t r, g, b;
1597     int y, cb, cr;
1598
1599     y  = (ycbcr >> 16) & 0xFF;
1600     cr = (ycbcr >> 8)  & 0xFF;
1601     cb =  ycbcr        & 0xFF;
1602
1603     b = av_clip_uint8(1.164 * (y - 16)                      + 2.018 * (cb - 128));
1604     g = av_clip_uint8(1.164 * (y - 16) - 0.813 * (cr - 128) - 0.391 * (cb - 128));
1605     r = av_clip_uint8(1.164 * (y - 16) + 1.596 * (cr - 128));
1606
1607     return (r << 16) | (g << 8) | b;
1608 }
1609
1610 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
1611 {
1612     char buf[256] = {0};
1613     uint8_t *src = st->codec->extradata;
1614     int i;
1615
1616     if (st->codec->extradata_size != 64)
1617         return 0;
1618
1619     if (st->codec->width > 0 &&  st->codec->height > 0)
1620         snprintf(buf, sizeof(buf), "size: %dx%d\n",
1621                  st->codec->width, st->codec->height);
1622     av_strlcat(buf, "palette: ", sizeof(buf));
1623
1624     for (i = 0; i < 16; i++) {
1625         uint32_t yuv = AV_RB32(src + i * 4);
1626         uint32_t rgba = yuv_to_rgba(yuv);
1627
1628         av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
1629     }
1630
1631     if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
1632         return 0;
1633
1634     av_freep(&st->codec->extradata);
1635     st->codec->extradata_size = 0;
1636     st->codec->extradata = av_mallocz(strlen(buf) + FF_INPUT_BUFFER_PADDING_SIZE);
1637     if (!st->codec->extradata)
1638         return AVERROR(ENOMEM);
1639     st->codec->extradata_size = strlen(buf);
1640     memcpy(st->codec->extradata, buf, st->codec->extradata_size);
1641
1642     return 0;
1643 }
1644
1645 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
1646                                 AVStream *st, MOVStreamContext *sc,
1647                                 int64_t size)
1648 {
1649     if (st->codec->codec_tag == MKTAG('t','m','c','d')) {
1650         if ((int)size != size || ff_get_extradata(st->codec, pb, size) < 0)
1651             return AVERROR(ENOMEM);
1652         if (size > 16) {
1653             MOVStreamContext *tmcd_ctx = st->priv_data;
1654             int val;
1655             val = AV_RB32(st->codec->extradata + 4);
1656             tmcd_ctx->tmcd_flags = val;
1657             if (val & 1)
1658                 st->codec->flags2 |= CODEC_FLAG2_DROP_FRAME_TIMECODE;
1659             st->codec->time_base.den = st->codec->extradata[16]; /* number of frame */
1660             st->codec->time_base.num = 1;
1661             if (size > 30) {
1662                 uint32_t len = AV_RB32(st->codec->extradata + 18); /* name atom length */
1663                 uint32_t format = AV_RB32(st->codec->extradata + 22);
1664                 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
1665                     uint16_t str_size = AV_RB16(st->codec->extradata + 26); /* string length */
1666                     if (str_size > 0 && size >= (int)str_size + 26) {
1667                         char *reel_name = av_malloc(str_size + 1);
1668                         if (!reel_name)
1669                             return AVERROR(ENOMEM);
1670                         memcpy(reel_name, st->codec->extradata + 30, str_size);
1671                         reel_name[str_size] = 0; /* Add null terminator */
1672                         /* don't add reel_name if emtpy string */
1673                         if (*reel_name == 0) {
1674                             av_free(reel_name);
1675                         } else {
1676                             av_dict_set(&st->metadata, "reel_name", reel_name,  AV_DICT_DONT_STRDUP_VAL);
1677                         }
1678                     }
1679                 }
1680             }
1681         }
1682     } else {
1683         /* other codec type, just skip (rtp, mp4s ...) */
1684         avio_skip(pb, size);
1685     }
1686     return 0;
1687 }
1688
1689 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
1690                                    AVStream *st, MOVStreamContext *sc)
1691 {
1692     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1693         !st->codec->sample_rate && sc->time_scale > 1)
1694         st->codec->sample_rate = sc->time_scale;
1695
1696     /* special codec parameters handling */
1697     switch (st->codec->codec_id) {
1698 #if CONFIG_DV_DEMUXER
1699     case AV_CODEC_ID_DVAUDIO:
1700         c->dv_fctx  = avformat_alloc_context();
1701         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
1702         if (!c->dv_demux) {
1703             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1704             return AVERROR(ENOMEM);
1705         }
1706         sc->dv_audio_container = 1;
1707         st->codec->codec_id    = AV_CODEC_ID_PCM_S16LE;
1708         break;
1709 #endif
1710     /* no ifdef since parameters are always those */
1711     case AV_CODEC_ID_QCELP:
1712         st->codec->channels = 1;
1713         // force sample rate for qcelp when not stored in mov
1714         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1715             st->codec->sample_rate = 8000;
1716         // FIXME: Why is the following needed for some files?
1717         sc->samples_per_frame = 160;
1718         if (!sc->bytes_per_frame)
1719             sc->bytes_per_frame = 35;
1720         break;
1721     case AV_CODEC_ID_AMR_NB:
1722         st->codec->channels    = 1;
1723         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1724         st->codec->sample_rate = 8000;
1725         break;
1726     case AV_CODEC_ID_AMR_WB:
1727         st->codec->channels    = 1;
1728         st->codec->sample_rate = 16000;
1729         break;
1730     case AV_CODEC_ID_MP2:
1731     case AV_CODEC_ID_MP3:
1732         /* force type after stsd for m1a hdlr */
1733         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1734         st->need_parsing      = AVSTREAM_PARSE_FULL;
1735         break;
1736     case AV_CODEC_ID_GSM:
1737     case AV_CODEC_ID_ADPCM_MS:
1738     case AV_CODEC_ID_ADPCM_IMA_WAV:
1739     case AV_CODEC_ID_ILBC:
1740     case AV_CODEC_ID_MACE3:
1741     case AV_CODEC_ID_MACE6:
1742     case AV_CODEC_ID_QDM2:
1743         st->codec->block_align = sc->bytes_per_frame;
1744         break;
1745     case AV_CODEC_ID_ALAC:
1746         if (st->codec->extradata_size == 36) {
1747             st->codec->channels    = AV_RB8 (st->codec->extradata + 21);
1748             st->codec->sample_rate = AV_RB32(st->codec->extradata + 32);
1749         }
1750         break;
1751     case AV_CODEC_ID_AC3:
1752     case AV_CODEC_ID_EAC3:
1753     case AV_CODEC_ID_MPEG1VIDEO:
1754     case AV_CODEC_ID_VC1:
1755         st->need_parsing = AVSTREAM_PARSE_FULL;
1756         break;
1757     default:
1758         break;
1759     }
1760     return 0;
1761 }
1762
1763 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
1764                                   int codec_tag, int format,
1765                                   int64_t size)
1766 {
1767     int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1768
1769     if (codec_tag &&
1770          (codec_tag != format &&
1771           (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
1772                                  : codec_tag != MKTAG('j','p','e','g')))) {
1773         /* Multiple fourcc, we skip JPEG. This is not correct, we should
1774          * export it as a separate AVStream but this needs a few changes
1775          * in the MOV demuxer, patch welcome. */
1776
1777         av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
1778         avio_skip(pb, size);
1779         return 1;
1780     }
1781     if ( codec_tag == AV_RL32("avc1") ||
1782          codec_tag == AV_RL32("hvc1") ||
1783          codec_tag == AV_RL32("hev1")
1784     )
1785         av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 or H.265 might not play correctly.\n");
1786
1787     return 0;
1788 }
1789
1790 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
1791 {
1792     AVStream *st;
1793     MOVStreamContext *sc;
1794     int pseudo_stream_id;
1795
1796     if (c->fc->nb_streams < 1)
1797         return 0;
1798     st = c->fc->streams[c->fc->nb_streams-1];
1799     sc = st->priv_data;
1800
1801     for (pseudo_stream_id = 0;
1802          pseudo_stream_id < entries && !pb->eof_reached;
1803          pseudo_stream_id++) {
1804         //Parsing Sample description table
1805         enum AVCodecID id;
1806         int ret, dref_id = 1;
1807         MOVAtom a = { AV_RL32("stsd") };
1808         int64_t start_pos = avio_tell(pb);
1809         int64_t size = avio_rb32(pb); /* size */
1810         uint32_t format = avio_rl32(pb); /* data format */
1811
1812         if (size >= 16) {
1813             avio_rb32(pb); /* reserved */
1814             avio_rb16(pb); /* reserved */
1815             dref_id = avio_rb16(pb);
1816         }else if (size <= 7){
1817             av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRId64" in stsd\n", size);
1818             return AVERROR_INVALIDDATA;
1819         }
1820
1821         if (mov_skip_multiple_stsd(c, pb, st->codec->codec_tag, format,
1822                                    size - (avio_tell(pb) - start_pos)))
1823             continue;
1824
1825         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
1826         sc->dref_id= dref_id;
1827
1828         id = mov_codec_id(st, format);
1829
1830         av_dlog(c->fc, "size=%"PRId64" 4CC= %c%c%c%c codec_type=%d\n", size,
1831                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1832                 (format >> 24) & 0xff, st->codec->codec_type);
1833
1834         if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1835             st->codec->codec_id = id;
1836             mov_parse_stsd_video(c, pb, st, sc);
1837         } else if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1838             st->codec->codec_id = id;
1839             mov_parse_stsd_audio(c, pb, st, sc);
1840         } else if (st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1841             st->codec->codec_id = id;
1842             mov_parse_stsd_subtitle(c, pb, st, sc,
1843                                     size - (avio_tell(pb) - start_pos));
1844         } else {
1845             ret = mov_parse_stsd_data(c, pb, st, sc,
1846                                       size - (avio_tell(pb) - start_pos));
1847             if (ret < 0)
1848                 return ret;
1849         }
1850         /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
1851         a.size = size - (avio_tell(pb) - start_pos);
1852         if (a.size > 8) {
1853             if ((ret = mov_read_default(c, pb, a)) < 0)
1854                 return ret;
1855         } else if (a.size > 0)
1856             avio_skip(pb, a.size);
1857     }
1858
1859     if (pb->eof_reached)
1860         return AVERROR_EOF;
1861
1862     return mov_finalize_stsd_codec(c, pb, st, sc);
1863 }
1864
1865 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1866 {
1867     int entries;
1868
1869     avio_r8(pb); /* version */
1870     avio_rb24(pb); /* flags */
1871     entries = avio_rb32(pb);
1872
1873     return ff_mov_read_stsd_entries(c, pb, entries);
1874 }
1875
1876 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1877 {
1878     AVStream *st;
1879     MOVStreamContext *sc;
1880     unsigned int i, entries;
1881
1882     if (c->fc->nb_streams < 1)
1883         return 0;
1884     st = c->fc->streams[c->fc->nb_streams-1];
1885     sc = st->priv_data;
1886
1887     avio_r8(pb); /* version */
1888     avio_rb24(pb); /* flags */
1889
1890     entries = avio_rb32(pb);
1891
1892     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1893
1894     if (!entries)
1895         return 0;
1896     if (sc->stsc_data)
1897         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
1898     av_free(sc->stsc_data);
1899     sc->stsc_count = 0;
1900     sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
1901     if (!sc->stsc_data)
1902         return AVERROR(ENOMEM);
1903
1904     for (i = 0; i < entries && !pb->eof_reached; i++) {
1905         sc->stsc_data[i].first = avio_rb32(pb);
1906         sc->stsc_data[i].count = avio_rb32(pb);
1907         sc->stsc_data[i].id = avio_rb32(pb);
1908     }
1909
1910     sc->stsc_count = i;
1911
1912     if (pb->eof_reached)
1913         return AVERROR_EOF;
1914
1915     return 0;
1916 }
1917
1918 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1919 {
1920     AVStream *st;
1921     MOVStreamContext *sc;
1922     unsigned i, entries;
1923
1924     if (c->fc->nb_streams < 1)
1925         return 0;
1926     st = c->fc->streams[c->fc->nb_streams-1];
1927     sc = st->priv_data;
1928
1929     avio_rb32(pb); // version + flags
1930
1931     entries = avio_rb32(pb);
1932     if (sc->stps_data)
1933         av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
1934     av_free(sc->stps_data);
1935     sc->stps_count = 0;
1936     sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
1937     if (!sc->stps_data)
1938         return AVERROR(ENOMEM);
1939
1940     for (i = 0; i < entries && !pb->eof_reached; i++) {
1941         sc->stps_data[i] = avio_rb32(pb);
1942         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1943     }
1944
1945     sc->stps_count = i;
1946
1947     if (pb->eof_reached)
1948         return AVERROR_EOF;
1949
1950     return 0;
1951 }
1952
1953 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1954 {
1955     AVStream *st;
1956     MOVStreamContext *sc;
1957     unsigned int i, entries;
1958
1959     if (c->fc->nb_streams < 1)
1960         return 0;
1961     st = c->fc->streams[c->fc->nb_streams-1];
1962     sc = st->priv_data;
1963
1964     avio_r8(pb); /* version */
1965     avio_rb24(pb); /* flags */
1966
1967     entries = avio_rb32(pb);
1968
1969     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1970
1971     if (!entries)
1972     {
1973         sc->keyframe_absent = 1;
1974         if (!st->need_parsing && st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1975             st->need_parsing = AVSTREAM_PARSE_HEADERS;
1976         return 0;
1977     }
1978     if (sc->keyframes)
1979         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
1980     if (entries >= UINT_MAX / sizeof(int))
1981         return AVERROR_INVALIDDATA;
1982     av_freep(&sc->keyframes);
1983     sc->keyframe_count = 0;
1984     sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
1985     if (!sc->keyframes)
1986         return AVERROR(ENOMEM);
1987
1988     for (i = 0; i < entries && !pb->eof_reached; i++) {
1989         sc->keyframes[i] = avio_rb32(pb);
1990         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1991     }
1992
1993     sc->keyframe_count = i;
1994
1995     if (pb->eof_reached)
1996         return AVERROR_EOF;
1997
1998     return 0;
1999 }
2000
2001 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2002 {
2003     AVStream *st;
2004     MOVStreamContext *sc;
2005     unsigned int i, entries, sample_size, field_size, num_bytes;
2006     GetBitContext gb;
2007     unsigned char* buf;
2008
2009     if (c->fc->nb_streams < 1)
2010         return 0;
2011     st = c->fc->streams[c->fc->nb_streams-1];
2012     sc = st->priv_data;
2013
2014     avio_r8(pb); /* version */
2015     avio_rb24(pb); /* flags */
2016
2017     if (atom.type == MKTAG('s','t','s','z')) {
2018         sample_size = avio_rb32(pb);
2019         if (!sc->sample_size) /* do not overwrite value computed in stsd */
2020             sc->sample_size = sample_size;
2021         sc->stsz_sample_size = sample_size;
2022         field_size = 32;
2023     } else {
2024         sample_size = 0;
2025         avio_rb24(pb); /* reserved */
2026         field_size = avio_r8(pb);
2027     }
2028     entries = avio_rb32(pb);
2029
2030     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
2031
2032     sc->sample_count = entries;
2033     if (sample_size)
2034         return 0;
2035
2036     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2037         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
2038         return AVERROR_INVALIDDATA;
2039     }
2040
2041     if (!entries)
2042         return 0;
2043     if (entries >= (UINT_MAX - 4) / field_size)
2044         return AVERROR_INVALIDDATA;
2045     if (sc->sample_sizes)
2046         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2047     av_free(sc->sample_sizes);
2048     sc->sample_count = 0;
2049     sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2050     if (!sc->sample_sizes)
2051         return AVERROR(ENOMEM);
2052
2053     num_bytes = (entries*field_size+4)>>3;
2054
2055     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
2056     if (!buf) {
2057         av_freep(&sc->sample_sizes);
2058         return AVERROR(ENOMEM);
2059     }
2060
2061     if (avio_read(pb, buf, num_bytes) < num_bytes) {
2062         av_freep(&sc->sample_sizes);
2063         av_free(buf);
2064         return AVERROR_INVALIDDATA;
2065     }
2066
2067     init_get_bits(&gb, buf, 8*num_bytes);
2068
2069     for (i = 0; i < entries && !pb->eof_reached; i++) {
2070         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2071         sc->data_size += sc->sample_sizes[i];
2072     }
2073
2074     sc->sample_count = i;
2075
2076     if (pb->eof_reached)
2077         return AVERROR_EOF;
2078
2079     av_free(buf);
2080     return 0;
2081 }
2082
2083 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2084 {
2085     AVStream *st;
2086     MOVStreamContext *sc;
2087     unsigned int i, entries;
2088     int64_t duration=0;
2089     int64_t total_sample_count=0;
2090
2091     if (c->fc->nb_streams < 1)
2092         return 0;
2093     st = c->fc->streams[c->fc->nb_streams-1];
2094     sc = st->priv_data;
2095
2096     avio_r8(pb); /* version */
2097     avio_rb24(pb); /* flags */
2098     entries = avio_rb32(pb);
2099
2100     av_dlog(c->fc, "track[%i].stts.entries = %i\n",
2101             c->fc->nb_streams-1, entries);
2102
2103     if (sc->stts_data)
2104         av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2105     av_free(sc->stts_data);
2106     sc->stts_count = 0;
2107     sc->stts_data = av_malloc_array(entries, sizeof(*sc->stts_data));
2108     if (!sc->stts_data)
2109         return AVERROR(ENOMEM);
2110
2111     for (i = 0; i < entries && !pb->eof_reached; i++) {
2112         int sample_duration;
2113         int sample_count;
2114
2115         sample_count=avio_rb32(pb);
2116         sample_duration = avio_rb32(pb);
2117
2118         /* sample_duration < 0 is invalid based on the spec */
2119         if (sample_duration < 0) {
2120             av_log(c->fc, AV_LOG_ERROR, "Invalid SampleDelta %d in STTS, at %d st:%d\n",
2121                    sample_duration, i, c->fc->nb_streams-1);
2122             sample_duration = 1;
2123         }
2124         if (sample_count < 0) {
2125             av_log(c->fc, AV_LOG_ERROR, "Invalid sample_count=%d\n", sample_count);
2126             return AVERROR_INVALIDDATA;
2127         }
2128         sc->stts_data[i].count= sample_count;
2129         sc->stts_data[i].duration= sample_duration;
2130
2131         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",
2132                 sample_count, sample_duration);
2133
2134         if (   i+1 == entries
2135             && i
2136             && sample_count == 1
2137             && total_sample_count > 100
2138             && sample_duration/10 > duration / total_sample_count)
2139             sample_duration = duration / total_sample_count;
2140         duration+=(int64_t)sample_duration*sample_count;
2141         total_sample_count+=sample_count;
2142     }
2143
2144     sc->stts_count = i;
2145
2146     sc->duration_for_fps  += duration;
2147     sc->nb_frames_for_fps += total_sample_count;
2148
2149     if (pb->eof_reached)
2150         return AVERROR_EOF;
2151
2152     st->nb_frames= total_sample_count;
2153     if (duration)
2154         st->duration= duration;
2155     sc->track_end = duration;
2156     return 0;
2157 }
2158
2159 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2160 {
2161     if (duration < 0) {
2162         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2163     }
2164 }
2165
2166 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2167 {
2168     AVStream *st;
2169     MOVStreamContext *sc;
2170     unsigned int i, entries;
2171
2172     if (c->fc->nb_streams < 1)
2173         return 0;
2174     st = c->fc->streams[c->fc->nb_streams-1];
2175     sc = st->priv_data;
2176
2177     avio_r8(pb); /* version */
2178     avio_rb24(pb); /* flags */
2179     entries = avio_rb32(pb);
2180
2181     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
2182
2183     if (!entries)
2184         return 0;
2185     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2186         return AVERROR_INVALIDDATA;
2187     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
2188     if (!sc->ctts_data)
2189         return AVERROR(ENOMEM);
2190
2191     for (i = 0; i < entries && !pb->eof_reached; i++) {
2192         int count    =avio_rb32(pb);
2193         int duration =avio_rb32(pb);
2194
2195         sc->ctts_data[i].count   = count;
2196         sc->ctts_data[i].duration= duration;
2197
2198         av_dlog(c->fc, "count=%d, duration=%d\n",
2199                 count, duration);
2200
2201         if (FFABS(duration) > (1<<28) && i+2<entries) {
2202             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2203             av_freep(&sc->ctts_data);
2204             sc->ctts_count = 0;
2205             return 0;
2206         }
2207
2208         if (i+2<entries)
2209             mov_update_dts_shift(sc, duration);
2210     }
2211
2212     sc->ctts_count = i;
2213
2214     if (pb->eof_reached)
2215         return AVERROR_EOF;
2216
2217     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
2218
2219     return 0;
2220 }
2221
2222 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2223 {
2224     AVStream *st;
2225     MOVStreamContext *sc;
2226     unsigned int i, entries;
2227     uint8_t version;
2228     uint32_t grouping_type;
2229
2230     if (c->fc->nb_streams < 1)
2231         return 0;
2232     st = c->fc->streams[c->fc->nb_streams-1];
2233     sc = st->priv_data;
2234
2235     version = avio_r8(pb); /* version */
2236     avio_rb24(pb); /* flags */
2237     grouping_type = avio_rl32(pb);
2238     if (grouping_type != MKTAG( 'r','a','p',' '))
2239         return 0; /* only support 'rap ' grouping */
2240     if (version == 1)
2241         avio_rb32(pb); /* grouping_type_parameter */
2242
2243     entries = avio_rb32(pb);
2244     if (!entries)
2245         return 0;
2246     if (sc->rap_group)
2247         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
2248     av_free(sc->rap_group);
2249     sc->rap_group_count = 0;
2250     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
2251     if (!sc->rap_group)
2252         return AVERROR(ENOMEM);
2253
2254     for (i = 0; i < entries && !pb->eof_reached; i++) {
2255         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
2256         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
2257     }
2258
2259     sc->rap_group_count = i;
2260
2261     return pb->eof_reached ? AVERROR_EOF : 0;
2262 }
2263
2264 static void mov_build_index(MOVContext *mov, AVStream *st)
2265 {
2266     MOVStreamContext *sc = st->priv_data;
2267     int64_t current_offset;
2268     int64_t current_dts = 0;
2269     unsigned int stts_index = 0;
2270     unsigned int stsc_index = 0;
2271     unsigned int stss_index = 0;
2272     unsigned int stps_index = 0;
2273     unsigned int i, j;
2274     uint64_t stream_size = 0;
2275
2276     if (sc->elst_count) {
2277         int i, edit_start_index = 0, unsupported = 0;
2278         int64_t empty_duration = 0; // empty duration of the first edit list entry
2279         int64_t start_time = 0; // start time of the media
2280
2281         for (i = 0; i < sc->elst_count; i++) {
2282             const MOVElst *e = &sc->elst_data[i];
2283             if (i == 0 && e->time == -1) {
2284                 /* if empty, the first entry is the start time of the stream
2285                  * relative to the presentation itself */
2286                 empty_duration = e->duration;
2287                 edit_start_index = 1;
2288             } else if (i == edit_start_index && e->time >= 0) {
2289                 start_time = e->time;
2290             } else
2291                 unsupported = 1;
2292         }
2293         if (unsupported)
2294             av_log(mov->fc, AV_LOG_WARNING, "multiple edit list entries, "
2295                    "a/v desync might occur, patch welcome\n");
2296
2297         /* adjust first dts according to edit list */
2298         if ((empty_duration || start_time) && mov->time_scale > 0) {
2299             if (empty_duration)
2300                 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
2301             sc->time_offset = start_time - empty_duration;
2302             current_dts = -sc->time_offset;
2303             if (sc->ctts_count>0 && sc->stts_count>0 &&
2304                 sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
2305                 /* more than 16 frames delay, dts are likely wrong
2306                    this happens with files created by iMovie */
2307                 sc->wrong_dts = 1;
2308                 st->codec->has_b_frames = 1;
2309             }
2310         }
2311     }
2312
2313     /* only use old uncompressed audio chunk demuxing when stts specifies it */
2314     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
2315           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
2316         unsigned int current_sample = 0;
2317         unsigned int stts_sample = 0;
2318         unsigned int sample_size;
2319         unsigned int distance = 0;
2320         unsigned int rap_group_index = 0;
2321         unsigned int rap_group_sample = 0;
2322         int rap_group_present = sc->rap_group_count && sc->rap_group;
2323         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
2324
2325         current_dts -= sc->dts_shift;
2326
2327         if (!sc->sample_count || st->nb_index_entries)
2328             return;
2329         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2330             return;
2331         if (av_reallocp_array(&st->index_entries,
2332                               st->nb_index_entries + sc->sample_count,
2333                               sizeof(*st->index_entries)) < 0) {
2334             st->nb_index_entries = 0;
2335             return;
2336         }
2337         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
2338
2339         for (i = 0; i < sc->chunk_count; i++) {
2340             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
2341             current_offset = sc->chunk_offsets[i];
2342             while (stsc_index + 1 < sc->stsc_count &&
2343                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2344                 stsc_index++;
2345
2346             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
2347                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
2348                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
2349                 sc->stsz_sample_size = sc->sample_size;
2350             }
2351             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
2352                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
2353                 sc->stsz_sample_size = sc->sample_size;
2354             }
2355
2356             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
2357                 int keyframe = 0;
2358                 if (current_sample >= sc->sample_count) {
2359                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
2360                     return;
2361                 }
2362
2363                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
2364                     keyframe = 1;
2365                     if (stss_index + 1 < sc->keyframe_count)
2366                         stss_index++;
2367                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
2368                     keyframe = 1;
2369                     if (stps_index + 1 < sc->stps_count)
2370                         stps_index++;
2371                 }
2372                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
2373                     if (sc->rap_group[rap_group_index].index > 0)
2374                         keyframe = 1;
2375                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
2376                         rap_group_sample = 0;
2377                         rap_group_index++;
2378                     }
2379                 }
2380                 if (sc->keyframe_absent
2381                     && !sc->stps_count
2382                     && !rap_group_present
2383                     && (st->codec->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
2384                      keyframe = 1;
2385                 if (keyframe)
2386                     distance = 0;
2387                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
2388                 if (sc->pseudo_stream_id == -1 ||
2389                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
2390                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
2391                     e->pos = current_offset;
2392                     e->timestamp = current_dts;
2393                     e->size = sample_size;
2394                     e->min_distance = distance;
2395                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
2396                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2397                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
2398                             current_offset, current_dts, sample_size, distance, keyframe);
2399                     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
2400                         ff_rfps_add_frame(mov->fc, st, current_dts);
2401                 }
2402
2403                 current_offset += sample_size;
2404                 stream_size += sample_size;
2405                 current_dts += sc->stts_data[stts_index].duration;
2406                 distance++;
2407                 stts_sample++;
2408                 current_sample++;
2409                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
2410                     stts_sample = 0;
2411                     stts_index++;
2412                 }
2413             }
2414         }
2415         if (st->duration > 0)
2416             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
2417     } else {
2418         unsigned chunk_samples, total = 0;
2419
2420         // compute total chunk count
2421         for (i = 0; i < sc->stsc_count; i++) {
2422             unsigned count, chunk_count;
2423
2424             chunk_samples = sc->stsc_data[i].count;
2425             if (i != sc->stsc_count - 1 &&
2426                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
2427                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
2428                 return;
2429             }
2430
2431             if (sc->samples_per_frame >= 160) { // gsm
2432                 count = chunk_samples / sc->samples_per_frame;
2433             } else if (sc->samples_per_frame > 1) {
2434                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
2435                 count = (chunk_samples+samples-1) / samples;
2436             } else {
2437                 count = (chunk_samples+1023) / 1024;
2438             }
2439
2440             if (i < sc->stsc_count - 1)
2441                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
2442             else
2443                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
2444             total += chunk_count * count;
2445         }
2446
2447         av_dlog(mov->fc, "chunk count %d\n", total);
2448         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2449             return;
2450         if (av_reallocp_array(&st->index_entries,
2451                               st->nb_index_entries + total,
2452                               sizeof(*st->index_entries)) < 0) {
2453             st->nb_index_entries = 0;
2454             return;
2455         }
2456         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
2457
2458         // populate index
2459         for (i = 0; i < sc->chunk_count; i++) {
2460             current_offset = sc->chunk_offsets[i];
2461             if (stsc_index + 1 < sc->stsc_count &&
2462                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2463                 stsc_index++;
2464             chunk_samples = sc->stsc_data[stsc_index].count;
2465
2466             while (chunk_samples > 0) {
2467                 AVIndexEntry *e;
2468                 unsigned size, samples;
2469
2470                 if (sc->samples_per_frame >= 160) { // gsm
2471                     samples = sc->samples_per_frame;
2472                     size = sc->bytes_per_frame;
2473                 } else {
2474                     if (sc->samples_per_frame > 1) {
2475                         samples = FFMIN((1024 / sc->samples_per_frame)*
2476                                         sc->samples_per_frame, chunk_samples);
2477                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
2478                     } else {
2479                         samples = FFMIN(1024, chunk_samples);
2480                         size = samples * sc->sample_size;
2481                     }
2482                 }
2483
2484                 if (st->nb_index_entries >= total) {
2485                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
2486                     return;
2487                 }
2488                 e = &st->index_entries[st->nb_index_entries++];
2489                 e->pos = current_offset;
2490                 e->timestamp = current_dts;
2491                 e->size = size;
2492                 e->min_distance = 0;
2493                 e->flags = AVINDEX_KEYFRAME;
2494                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
2495                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
2496                         size, samples);
2497
2498                 current_offset += size;
2499                 current_dts += samples;
2500                 chunk_samples -= samples;
2501             }
2502         }
2503     }
2504 }
2505
2506 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref,
2507                          AVIOInterruptCB *int_cb, int use_absolute_path, AVFormatContext *fc)
2508 {
2509     /* try relative path, we do not try the absolute because it can leak information about our
2510        system to an attacker */
2511     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
2512         char filename[1024];
2513         const char *src_path;
2514         int i, l;
2515
2516         /* find a source dir */
2517         src_path = strrchr(src, '/');
2518         if (src_path)
2519             src_path++;
2520         else
2521             src_path = src;
2522
2523         /* find a next level down to target */
2524         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
2525             if (ref->path[l] == '/') {
2526                 if (i == ref->nlvl_to - 1)
2527                     break;
2528                 else
2529                     i++;
2530             }
2531
2532         /* compose filename if next level down to target was found */
2533         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
2534             memcpy(filename, src, src_path - src);
2535             filename[src_path - src] = 0;
2536
2537             for (i = 1; i < ref->nlvl_from; i++)
2538                 av_strlcat(filename, "../", 1024);
2539
2540             av_strlcat(filename, ref->path + l + 1, 1024);
2541
2542             if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL))
2543                 return 0;
2544         }
2545     } else if (use_absolute_path) {
2546         av_log(fc, AV_LOG_WARNING, "Using absolute path on user request, "
2547                "this is a possible security issue\n");
2548         if (!avio_open2(pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
2549             return 0;
2550     }
2551
2552     return AVERROR(ENOENT);
2553 }
2554
2555 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
2556 {
2557     if (sc->time_scale <= 0) {
2558         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
2559         sc->time_scale = c->time_scale;
2560         if (sc->time_scale <= 0)
2561             sc->time_scale = 1;
2562     }
2563 }
2564
2565 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2566 {
2567     AVStream *st;
2568     MOVStreamContext *sc;
2569     int ret;
2570
2571     st = avformat_new_stream(c->fc, NULL);
2572     if (!st) return AVERROR(ENOMEM);
2573     st->id = c->fc->nb_streams;
2574     sc = av_mallocz(sizeof(MOVStreamContext));
2575     if (!sc) return AVERROR(ENOMEM);
2576
2577     st->priv_data = sc;
2578     st->codec->codec_type = AVMEDIA_TYPE_DATA;
2579     sc->ffindex = st->index;
2580
2581     if ((ret = mov_read_default(c, pb, atom)) < 0)
2582         return ret;
2583
2584     /* sanity checks */
2585     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
2586                             (!sc->sample_size && !sc->sample_count))) {
2587         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
2588                st->index);
2589         return 0;
2590     }
2591
2592     fix_timescale(c, sc);
2593
2594     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
2595
2596     mov_build_index(c, st);
2597
2598     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
2599         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
2600         if (mov_open_dref(&sc->pb, c->fc->filename, dref, &c->fc->interrupt_callback,
2601             c->use_absolute_path, c->fc) < 0)
2602             av_log(c->fc, AV_LOG_ERROR,
2603                    "stream %d, error opening alias: path='%s', dir='%s', "
2604                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2605                    st->index, dref->path, dref->dir, dref->filename,
2606                    dref->volume, dref->nlvl_from, dref->nlvl_to);
2607     } else {
2608         sc->pb = c->fc->pb;
2609         sc->pb_is_copied = 1;
2610     }
2611
2612     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2613         if (!st->sample_aspect_ratio.num &&
2614             (st->codec->width != sc->width || st->codec->height != sc->height)) {
2615             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
2616                                              ((double)st->codec->width * sc->height), INT_MAX);
2617         }
2618
2619 #if FF_API_R_FRAME_RATE
2620         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
2621             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
2622                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
2623 #endif
2624     }
2625
2626     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
2627     if (!st->codec->extradata_size && st->codec->codec_id == AV_CODEC_ID_H264 &&
2628         TAG_IS_AVCI(st->codec->codec_tag)) {
2629         ret = ff_generate_avci_extradata(st);
2630         if (ret < 0)
2631             return ret;
2632     }
2633
2634     switch (st->codec->codec_id) {
2635 #if CONFIG_H261_DECODER
2636     case AV_CODEC_ID_H261:
2637 #endif
2638 #if CONFIG_H263_DECODER
2639     case AV_CODEC_ID_H263:
2640 #endif
2641 #if CONFIG_MPEG4_DECODER
2642     case AV_CODEC_ID_MPEG4:
2643 #endif
2644         st->codec->width = 0; /* let decoder init width/height */
2645         st->codec->height= 0;
2646         break;
2647     }
2648
2649     /* Do not need those anymore. */
2650     av_freep(&sc->chunk_offsets);
2651     av_freep(&sc->stsc_data);
2652     av_freep(&sc->sample_sizes);
2653     av_freep(&sc->keyframes);
2654     av_freep(&sc->stts_data);
2655     av_freep(&sc->stps_data);
2656     av_freep(&sc->elst_data);
2657     av_freep(&sc->rap_group);
2658
2659     return 0;
2660 }
2661
2662 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2663 {
2664     int ret;
2665     c->itunes_metadata = 1;
2666     ret = mov_read_default(c, pb, atom);
2667     c->itunes_metadata = 0;
2668     return ret;
2669 }
2670
2671 static int mov_read_custom_2plus(MOVContext *c, AVIOContext *pb, int size)
2672 {
2673     int64_t end = avio_tell(pb) + size;
2674     uint8_t *key = NULL, *val = NULL;
2675     int i;
2676     AVStream *st;
2677     MOVStreamContext *sc;
2678
2679     if (c->fc->nb_streams < 1)
2680         return 0;
2681     st = c->fc->streams[c->fc->nb_streams-1];
2682     sc = st->priv_data;
2683
2684     for (i = 0; i < 2; i++) {
2685         uint8_t **p;
2686         uint32_t len, tag;
2687
2688         if (end - avio_tell(pb) <= 12)
2689             break;
2690
2691         len = avio_rb32(pb);
2692         tag = avio_rl32(pb);
2693         avio_skip(pb, 4); // flags
2694
2695         if (len < 12 || len - 12 > end - avio_tell(pb))
2696             break;
2697         len -= 12;
2698
2699         if (tag == MKTAG('n', 'a', 'm', 'e'))
2700             p = &key;
2701         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
2702             avio_skip(pb, 4);
2703             len -= 4;
2704             p = &val;
2705         } else
2706             break;
2707
2708         *p = av_malloc(len + 1);
2709         if (!*p)
2710             break;
2711         avio_read(pb, *p, len);
2712         (*p)[len] = 0;
2713     }
2714
2715     if (key && val) {
2716         if (strcmp(key, "iTunSMPB") == 0) {
2717             int priming, remainder, samples;
2718             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
2719                 if(priming>0 && priming<16384)
2720                     sc->start_pad = priming;
2721             }
2722         }
2723         if (strcmp(key, "cdec") != 0) {
2724             av_dict_set(&c->fc->metadata, key, val,
2725                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
2726             key = val = NULL;
2727         }
2728     }
2729
2730     avio_seek(pb, end, SEEK_SET);
2731     av_freep(&key);
2732     av_freep(&val);
2733     return 0;
2734 }
2735
2736 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2737 {
2738     int64_t end = avio_tell(pb) + atom.size;
2739     uint32_t tag, len;
2740
2741     if (atom.size < 8)
2742         goto fail;
2743
2744     len = avio_rb32(pb);
2745     tag = avio_rl32(pb);
2746
2747     if (len > atom.size)
2748         goto fail;
2749
2750     if (tag == MKTAG('m', 'e', 'a', 'n') && len > 12) {
2751         uint8_t domain[128];
2752         int domain_len;
2753
2754         avio_skip(pb, 4); // flags
2755         len -= 12;
2756
2757         domain_len = avio_get_str(pb, len, domain, sizeof(domain));
2758         avio_skip(pb, len - domain_len);
2759         return mov_read_custom_2plus(c, pb, end - avio_tell(pb));
2760     }
2761
2762 fail:
2763     av_log(c->fc, AV_LOG_VERBOSE,
2764            "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
2765     return 0;
2766 }
2767
2768 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2769 {
2770     while (atom.size > 8) {
2771         uint32_t tag = avio_rl32(pb);
2772         atom.size -= 4;
2773         if (tag == MKTAG('h','d','l','r')) {
2774             avio_seek(pb, -8, SEEK_CUR);
2775             atom.size += 8;
2776             return mov_read_default(c, pb, atom);
2777         }
2778     }
2779     return 0;
2780 }
2781
2782 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2783 {
2784     int i;
2785     int width;
2786     int height;
2787     int64_t disp_transform[2];
2788     int display_matrix[3][3];
2789     AVStream *st;
2790     MOVStreamContext *sc;
2791     int version;
2792     int flags;
2793
2794     if (c->fc->nb_streams < 1)
2795         return 0;
2796     st = c->fc->streams[c->fc->nb_streams-1];
2797     sc = st->priv_data;
2798
2799     version = avio_r8(pb);
2800     flags = avio_rb24(pb);
2801     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
2802
2803     if (version == 1) {
2804         avio_rb64(pb);
2805         avio_rb64(pb);
2806     } else {
2807         avio_rb32(pb); /* creation time */
2808         avio_rb32(pb); /* modification time */
2809     }
2810     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
2811     avio_rb32(pb); /* reserved */
2812
2813     /* highlevel (considering edits) duration in movie timebase */
2814     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
2815     avio_rb32(pb); /* reserved */
2816     avio_rb32(pb); /* reserved */
2817
2818     avio_rb16(pb); /* layer */
2819     avio_rb16(pb); /* alternate group */
2820     avio_rb16(pb); /* volume */
2821     avio_rb16(pb); /* reserved */
2822
2823     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2824     // they're kept in fixed point format through all calculations
2825     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
2826     // side data, but the scale factor is not needed to calculate aspect ratio
2827     for (i = 0; i < 3; i++) {
2828         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
2829         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
2830         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
2831     }
2832
2833     width = avio_rb32(pb);       // 16.16 fixed point track width
2834     height = avio_rb32(pb);      // 16.16 fixed point track height
2835     sc->width = width >> 16;
2836     sc->height = height >> 16;
2837
2838     // save the matrix and add rotate metadata when it is not the default
2839     // identity
2840     if (display_matrix[0][0] != (1 << 16) ||
2841         display_matrix[1][1] != (1 << 16) ||
2842         display_matrix[2][2] != (1 << 30) ||
2843         display_matrix[0][1] || display_matrix[0][2] ||
2844         display_matrix[1][0] || display_matrix[1][2] ||
2845         display_matrix[2][0] || display_matrix[2][1]) {
2846         int i, j;
2847         double rotate;
2848
2849         av_freep(&sc->display_matrix);
2850         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
2851         if (!sc->display_matrix)
2852             return AVERROR(ENOMEM);
2853
2854         for (i = 0; i < 3; i++)
2855             for (j = 0; j < 3; j++)
2856                 sc->display_matrix[i * 3 + j] = display_matrix[j][i];
2857
2858         rotate = av_display_rotation_get(sc->display_matrix);
2859         if (!isnan(rotate)) {
2860             char rotate_buf[64];
2861             rotate = -rotate;
2862             if (rotate < 0) // for backward compatibility
2863                 rotate += 360;
2864             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
2865             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
2866         }
2867     }
2868
2869     // transform the display width/height according to the matrix
2870     // skip this if the rotation angle is 0 degrees
2871     // to keep the same scale, use [width height 1<<16]
2872     if (width && height && sc->display_matrix &&
2873         av_display_rotation_get(sc->display_matrix) != 0.0f) {
2874         for (i = 0; i < 2; i++)
2875             disp_transform[i] =
2876                 (int64_t)  width  * display_matrix[0][i] +
2877                 (int64_t)  height * display_matrix[1][i] +
2878                 ((int64_t) display_matrix[2][i] << 16);
2879
2880         //sample aspect ratio is new width/height divided by old width/height
2881         st->sample_aspect_ratio = av_d2q(
2882             ((double) disp_transform[0] * height) /
2883             ((double) disp_transform[1] * width), INT_MAX);
2884     }
2885     return 0;
2886 }
2887
2888 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2889 {
2890     MOVFragment *frag = &c->fragment;
2891     MOVTrackExt *trex = NULL;
2892     MOVFragmentIndex* index = NULL;
2893     int flags, track_id, i;
2894
2895     avio_r8(pb); /* version */
2896     flags = avio_rb24(pb);
2897
2898     track_id = avio_rb32(pb);
2899     if (!track_id)
2900         return AVERROR_INVALIDDATA;
2901     frag->track_id = track_id;
2902     for (i = 0; i < c->trex_count; i++)
2903         if (c->trex_data[i].track_id == frag->track_id) {
2904             trex = &c->trex_data[i];
2905             break;
2906         }
2907     if (!trex) {
2908         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
2909         return AVERROR_INVALIDDATA;
2910     }
2911     for (i = 0; i < c->fragment_index_count; i++) {
2912         MOVFragmentIndex* candidate = c->fragment_index_data[i];
2913         if (candidate->track_id == frag->track_id) {
2914             av_log(c->fc, AV_LOG_DEBUG,
2915                    "found fragment index for track %u\n", frag->track_id);
2916             index = candidate;
2917             break;
2918         }
2919     }
2920
2921     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
2922                              avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
2923                              frag->moof_offset : frag->implicit_offset;
2924     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
2925
2926     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
2927                      avio_rb32(pb) : trex->duration;
2928     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
2929                      avio_rb32(pb) : trex->size;
2930     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
2931                      avio_rb32(pb) : trex->flags;
2932     frag->time     = AV_NOPTS_VALUE;
2933     if (index) {
2934         int i, found = 0;
2935         for (i = index->current_item; i < index->item_count; i++) {
2936             if (frag->implicit_offset == index->items[i].moof_offset) {
2937                 av_log(c->fc, AV_LOG_DEBUG, "found fragment index entry "
2938                         "for track %u and moof_offset %"PRId64"\n",
2939                         frag->track_id, index->items[i].moof_offset);
2940                 frag->time = index->items[i].time;
2941                 index->current_item = i + 1;
2942                 found = 1;
2943             }
2944         }
2945         if (!found) {
2946             av_log(c->fc, AV_LOG_WARNING, "track %u has a fragment index "
2947                    "but it doesn't have an (in-order) entry for moof_offset "
2948                    "%"PRId64"\n", frag->track_id, frag->implicit_offset);
2949         }
2950     }
2951     av_dlog(c->fc, "frag flags 0x%x\n", frag->flags);
2952     return 0;
2953 }
2954
2955 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2956 {
2957     c->chapter_track = avio_rb32(pb);
2958     return 0;
2959 }
2960
2961 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2962 {
2963     MOVTrackExt *trex;
2964     int err;
2965
2966     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
2967         return AVERROR_INVALIDDATA;
2968     if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
2969                                  sizeof(*c->trex_data))) < 0) {
2970         c->trex_count = 0;
2971         return err;
2972     }
2973
2974     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
2975
2976     trex = &c->trex_data[c->trex_count++];
2977     avio_r8(pb); /* version */
2978     avio_rb24(pb); /* flags */
2979     trex->track_id = avio_rb32(pb);
2980     trex->stsd_id  = avio_rb32(pb);
2981     trex->duration = avio_rb32(pb);
2982     trex->size     = avio_rb32(pb);
2983     trex->flags    = avio_rb32(pb);
2984     return 0;
2985 }
2986
2987 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2988 {
2989     MOVFragment *frag = &c->fragment;
2990     AVStream *st = NULL;
2991     MOVStreamContext *sc;
2992     int version, i;
2993
2994     for (i = 0; i < c->fc->nb_streams; i++) {
2995         if (c->fc->streams[i]->id == frag->track_id) {
2996             st = c->fc->streams[i];
2997             break;
2998         }
2999     }
3000     if (!st) {
3001         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
3002         return AVERROR_INVALIDDATA;
3003     }
3004     sc = st->priv_data;
3005     if (sc->pseudo_stream_id + 1 != frag->stsd_id)
3006         return 0;
3007     version = avio_r8(pb);
3008     avio_rb24(pb); /* flags */
3009     if (version) {
3010         sc->track_end = avio_rb64(pb);
3011     } else {
3012         sc->track_end = avio_rb32(pb);
3013     }
3014     return 0;
3015 }
3016
3017 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3018 {
3019     MOVFragment *frag = &c->fragment;
3020     AVStream *st = NULL;
3021     MOVStreamContext *sc;
3022     MOVStts *ctts_data;
3023     uint64_t offset;
3024     int64_t dts;
3025     int data_offset = 0;
3026     unsigned entries, first_sample_flags = frag->flags;
3027     int flags, distance, i, found_keyframe = 0, err;
3028
3029     for (i = 0; i < c->fc->nb_streams; i++) {
3030         if (c->fc->streams[i]->id == frag->track_id) {
3031             st = c->fc->streams[i];
3032             break;
3033         }
3034     }
3035     if (!st) {
3036         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
3037         return AVERROR_INVALIDDATA;
3038     }
3039     sc = st->priv_data;
3040     if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
3041         return 0;
3042     avio_r8(pb); /* version */
3043     flags = avio_rb24(pb);
3044     entries = avio_rb32(pb);
3045     av_dlog(c->fc, "flags 0x%x entries %d\n", flags, entries);
3046
3047     /* Always assume the presence of composition time offsets.
3048      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
3049      *  1) in the initial movie, there are no samples.
3050      *  2) in the first movie fragment, there is only one sample without composition time offset.
3051      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
3052     if (!sc->ctts_count && sc->sample_count)
3053     {
3054         /* Complement ctts table if moov atom doesn't have ctts atom. */
3055         ctts_data = av_realloc(NULL, sizeof(*sc->ctts_data));
3056         if (!ctts_data)
3057             return AVERROR(ENOMEM);
3058         sc->ctts_data = ctts_data;
3059         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
3060         sc->ctts_data[sc->ctts_count].duration = 0;
3061         sc->ctts_count++;
3062     }
3063     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
3064         return AVERROR_INVALIDDATA;
3065     if ((err = av_reallocp_array(&sc->ctts_data, entries + sc->ctts_count,
3066                                  sizeof(*sc->ctts_data))) < 0) {
3067         sc->ctts_count = 0;
3068         return err;
3069     }
3070     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
3071     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
3072     dts    = sc->track_end - sc->time_offset;
3073     offset = frag->base_data_offset + data_offset;
3074     distance = 0;
3075     av_dlog(c->fc, "first sample flags 0x%x\n", first_sample_flags);
3076     for (i = 0; i < entries && !pb->eof_reached; i++) {
3077         unsigned sample_size = frag->size;
3078         int sample_flags = i ? frag->flags : first_sample_flags;
3079         unsigned sample_duration = frag->duration;
3080         int keyframe = 0;
3081
3082         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
3083         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
3084         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
3085         sc->ctts_data[sc->ctts_count].count = 1;
3086         sc->ctts_data[sc->ctts_count].duration = (flags & MOV_TRUN_SAMPLE_CTS) ?
3087                                                   avio_rb32(pb) : 0;
3088         mov_update_dts_shift(sc, sc->ctts_data[sc->ctts_count].duration);
3089         if (frag->time != AV_NOPTS_VALUE) {
3090             if (c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
3091                 int64_t pts = frag->time;
3092                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
3093                         " sc->dts_shift %d ctts.duration %d"
3094                         " sc->time_offset %"PRId64" flags & MOV_TRUN_SAMPLE_CTS %d\n", pts,
3095                         sc->dts_shift, sc->ctts_data[sc->ctts_count].duration,
3096                         sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
3097                 dts = pts - sc->dts_shift;
3098                 if (flags & MOV_TRUN_SAMPLE_CTS) {
3099                     dts -= sc->ctts_data[sc->ctts_count].duration;
3100                 } else {
3101                     dts -= sc->time_offset;
3102                 }
3103                 av_log(c->fc, AV_LOG_DEBUG, "calculated into dts %"PRId64"\n", dts);
3104             } else {
3105                 dts = frag->time;
3106                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
3107                         ", using it for dts\n", dts);
3108             }
3109             frag->time = AV_NOPTS_VALUE;
3110         }
3111         sc->ctts_count++;
3112         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
3113             keyframe = 1;
3114         else if (!found_keyframe)
3115             keyframe = found_keyframe =
3116                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
3117                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
3118         if (keyframe)
3119             distance = 0;
3120         av_add_index_entry(st, offset, dts, sample_size, distance,
3121                            keyframe ? AVINDEX_KEYFRAME : 0);
3122         av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
3123                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
3124                 offset, dts, sample_size, distance, keyframe);
3125         distance++;
3126         dts += sample_duration;
3127         offset += sample_size;
3128         sc->data_size += sample_size;
3129         sc->duration_for_fps += sample_duration;
3130         sc->nb_frames_for_fps ++;
3131     }
3132
3133     if (pb->eof_reached)
3134         return AVERROR_EOF;
3135
3136     frag->implicit_offset = offset;
3137     st->duration = sc->track_end = dts + sc->time_offset;
3138     return 0;
3139 }
3140
3141 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
3142 /* like the files created with Adobe Premiere 5.0, for samples see */
3143 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
3144 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3145 {
3146     int err;
3147
3148     if (atom.size < 8)
3149         return 0; /* continue */
3150     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
3151         avio_skip(pb, atom.size - 4);
3152         return 0;
3153     }
3154     atom.type = avio_rl32(pb);
3155     atom.size -= 8;
3156     if (atom.type != MKTAG('m','d','a','t')) {
3157         avio_skip(pb, atom.size);
3158         return 0;
3159     }
3160     err = mov_read_mdat(c, pb, atom);
3161     return err;
3162 }
3163
3164 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3165 {
3166 #if CONFIG_ZLIB
3167     AVIOContext ctx;
3168     uint8_t *cmov_data;
3169     uint8_t *moov_data; /* uncompressed data */
3170     long cmov_len, moov_len;
3171     int ret = -1;
3172
3173     avio_rb32(pb); /* dcom atom */
3174     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
3175         return AVERROR_INVALIDDATA;
3176     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
3177         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
3178         return AVERROR_INVALIDDATA;
3179     }
3180     avio_rb32(pb); /* cmvd atom */
3181     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
3182         return AVERROR_INVALIDDATA;
3183     moov_len = avio_rb32(pb); /* uncompressed size */
3184     cmov_len = atom.size - 6 * 4;
3185
3186     cmov_data = av_malloc(cmov_len);
3187     if (!cmov_data)
3188         return AVERROR(ENOMEM);
3189     moov_data = av_malloc(moov_len);
3190     if (!moov_data) {
3191         av_free(cmov_data);
3192         return AVERROR(ENOMEM);
3193     }
3194     avio_read(pb, cmov_data, cmov_len);
3195     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
3196         goto free_and_return;
3197     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
3198         goto free_and_return;
3199     atom.type = MKTAG('m','o','o','v');
3200     atom.size = moov_len;
3201     ret = mov_read_default(c, &ctx, atom);
3202 free_and_return:
3203     av_free(moov_data);
3204     av_free(cmov_data);
3205     return ret;
3206 #else
3207     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
3208     return AVERROR(ENOSYS);
3209 #endif
3210 }
3211
3212 /* edit list atom */
3213 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3214 {
3215     MOVStreamContext *sc;
3216     int i, edit_count, version;
3217
3218     if (c->fc->nb_streams < 1 || c->ignore_editlist)
3219         return 0;
3220     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
3221
3222     version = avio_r8(pb); /* version */
3223     avio_rb24(pb); /* flags */
3224     edit_count = avio_rb32(pb); /* entries */
3225
3226     if (!edit_count)
3227         return 0;
3228     if (sc->elst_data)
3229         av_log(c->fc, AV_LOG_WARNING, "Duplicated ELST atom\n");
3230     av_free(sc->elst_data);
3231     sc->elst_count = 0;
3232     sc->elst_data = av_malloc_array(edit_count, sizeof(*sc->elst_data));
3233     if (!sc->elst_data)
3234         return AVERROR(ENOMEM);
3235
3236     av_dlog(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
3237     for (i = 0; i < edit_count && !pb->eof_reached; i++) {
3238         MOVElst *e = &sc->elst_data[i];
3239
3240         if (version == 1) {
3241             e->duration = avio_rb64(pb);
3242             e->time     = avio_rb64(pb);
3243         } else {
3244             e->duration = avio_rb32(pb); /* segment duration */
3245             e->time     = (int32_t)avio_rb32(pb); /* media time */
3246         }
3247         e->rate = avio_rb32(pb) / 65536.0;
3248         av_dlog(c->fc, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
3249                 e->duration, e->time, e->rate);
3250     }
3251     sc->elst_count = i;
3252
3253     return 0;
3254 }
3255
3256 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3257 {
3258     MOVStreamContext *sc;
3259
3260     if (c->fc->nb_streams < 1)
3261         return AVERROR_INVALIDDATA;
3262     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
3263     sc->timecode_track = avio_rb32(pb);
3264     return 0;
3265 }
3266
3267 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3268 {
3269     int ret;
3270     uint8_t uuid[16];
3271     static const uint8_t uuid_isml_manifest[] = {
3272         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
3273         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
3274     };
3275
3276     if (atom.size < sizeof(uuid) || atom.size == INT64_MAX)
3277         return AVERROR_INVALIDDATA;
3278
3279     ret = avio_read(pb, uuid, sizeof(uuid));
3280     if (ret < 0) {
3281         return ret;
3282     } else if (ret != sizeof(uuid)) {
3283         return AVERROR_INVALIDDATA;
3284     }
3285     if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
3286         uint8_t *buffer, *ptr;
3287         char *endptr;
3288         size_t len = atom.size - sizeof(uuid);
3289
3290         if (len < 4) {
3291             return AVERROR_INVALIDDATA;
3292         }
3293         ret = avio_skip(pb, 4); // zeroes
3294         len -= 4;
3295
3296         buffer = av_mallocz(len + 1);
3297         if (!buffer) {
3298             return AVERROR(ENOMEM);
3299         }
3300         ret = avio_read(pb, buffer, len);
3301         if (ret < 0) {
3302             av_free(buffer);
3303             return ret;
3304         } else if (ret != len) {
3305             av_free(buffer);
3306             return AVERROR_INVALIDDATA;
3307         }
3308
3309         ptr = buffer;
3310         while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
3311             ptr += sizeof("systemBitrate=\"") - 1;
3312             c->bitrates_count++;
3313             c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
3314             if (!c->bitrates) {
3315                 c->bitrates_count = 0;
3316                 av_free(buffer);
3317                 return AVERROR(ENOMEM);
3318             }
3319             errno = 0;
3320             ret = strtol(ptr, &endptr, 10);
3321             if (ret < 0 || errno || *endptr != '"') {
3322                 c->bitrates[c->bitrates_count - 1] = 0;
3323             } else {
3324                 c->bitrates[c->bitrates_count - 1] = ret;
3325             }
3326         }
3327
3328         av_free(buffer);
3329     }
3330     return 0;
3331 }
3332
3333 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3334 {
3335     int ret;
3336     uint8_t content[16];
3337
3338     if (atom.size < 8)
3339         return 0;
3340
3341     ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
3342     if (ret < 0)
3343         return ret;
3344
3345     if (   !c->found_moov
3346         && !c->found_mdat
3347         && !memcmp(content, "Anevia\x1A\x1A", 8)
3348         && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
3349         c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
3350     }
3351
3352     return 0;
3353 }
3354
3355 static const MOVParseTableEntry mov_default_parse_table[] = {
3356 { MKTAG('A','C','L','R'), mov_read_avid },
3357 { MKTAG('A','P','R','G'), mov_read_avid },
3358 { MKTAG('A','A','L','P'), mov_read_avid },
3359 { MKTAG('A','R','E','S'), mov_read_ares },
3360 { MKTAG('a','v','s','s'), mov_read_avss },
3361 { MKTAG('c','h','p','l'), mov_read_chpl },
3362 { MKTAG('c','o','6','4'), mov_read_stco },
3363 { MKTAG('c','o','l','r'), mov_read_colr },
3364 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
3365 { MKTAG('d','i','n','f'), mov_read_default },
3366 { MKTAG('D','p','x','E'), mov_read_dpxe },
3367 { MKTAG('d','r','e','f'), mov_read_dref },
3368 { MKTAG('e','d','t','s'), mov_read_default },
3369 { MKTAG('e','l','s','t'), mov_read_elst },
3370 { MKTAG('e','n','d','a'), mov_read_enda },
3371 { MKTAG('f','i','e','l'), mov_read_fiel },
3372 { MKTAG('f','t','y','p'), mov_read_ftyp },
3373 { MKTAG('g','l','b','l'), mov_read_glbl },
3374 { MKTAG('h','d','l','r'), mov_read_hdlr },
3375 { MKTAG('i','l','s','t'), mov_read_ilst },
3376 { MKTAG('j','p','2','h'), mov_read_jp2h },
3377 { MKTAG('m','d','a','t'), mov_read_mdat },
3378 { MKTAG('m','d','h','d'), mov_read_mdhd },
3379 { MKTAG('m','d','i','a'), mov_read_default },
3380 { MKTAG('m','e','t','a'), mov_read_meta },
3381 { MKTAG('m','i','n','f'), mov_read_default },
3382 { MKTAG('m','o','o','f'), mov_read_moof },
3383 { MKTAG('m','o','o','v'), mov_read_moov },
3384 { MKTAG('m','v','e','x'), mov_read_default },
3385 { MKTAG('m','v','h','d'), mov_read_mvhd },
3386 { MKTAG('S','M','I',' '), mov_read_svq3 },
3387 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
3388 { MKTAG('a','v','c','C'), mov_read_glbl },
3389 { MKTAG('p','a','s','p'), mov_read_pasp },
3390 { MKTAG('s','t','b','l'), mov_read_default },
3391 { MKTAG('s','t','c','o'), mov_read_stco },
3392 { MKTAG('s','t','p','s'), mov_read_stps },
3393 { MKTAG('s','t','r','f'), mov_read_strf },
3394 { MKTAG('s','t','s','c'), mov_read_stsc },
3395 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
3396 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
3397 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
3398 { MKTAG('s','t','t','s'), mov_read_stts },
3399 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
3400 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
3401 { MKTAG('t','f','d','t'), mov_read_tfdt },
3402 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
3403 { MKTAG('t','r','a','k'), mov_read_trak },
3404 { MKTAG('t','r','a','f'), mov_read_default },
3405 { MKTAG('t','r','e','f'), mov_read_default },
3406 { MKTAG('t','m','c','d'), mov_read_tmcd },
3407 { MKTAG('c','h','a','p'), mov_read_chap },
3408 { MKTAG('t','r','e','x'), mov_read_trex },
3409 { MKTAG('t','r','u','n'), mov_read_trun },
3410 { MKTAG('u','d','t','a'), mov_read_default },
3411 { MKTAG('w','a','v','e'), mov_read_wave },
3412 { MKTAG('e','s','d','s'), mov_read_esds },
3413 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
3414 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
3415 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
3416 { MKTAG('w','f','e','x'), mov_read_wfex },
3417 { MKTAG('c','m','o','v'), mov_read_cmov },
3418 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
3419 { MKTAG('d','v','c','1'), mov_read_dvc1 },
3420 { MKTAG('s','b','g','p'), mov_read_sbgp },
3421 { MKTAG('h','v','c','C'), mov_read_glbl },
3422 { MKTAG('u','u','i','d'), mov_read_uuid },
3423 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
3424 { MKTAG('f','r','e','e'), mov_read_free },
3425 { MKTAG('-','-','-','-'), mov_read_custom },
3426 { 0, NULL }
3427 };
3428
3429 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3430 {
3431     int64_t total_size = 0;
3432     MOVAtom a;
3433     int i;
3434
3435     if (c->atom_depth > 10) {
3436         av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
3437         return AVERROR_INVALIDDATA;
3438     }
3439     c->atom_depth ++;
3440
3441     if (atom.size < 0)
3442         atom.size = INT64_MAX;
3443     while (total_size + 8 <= atom.size && !avio_feof(pb)) {
3444         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
3445         a.size = atom.size;
3446         a.type=0;
3447         if (atom.size >= 8) {
3448             a.size = avio_rb32(pb);
3449             a.type = avio_rl32(pb);
3450             if (a.type == MKTAG('f','r','e','e') &&
3451                 a.size >= 8 &&
3452                 c->moov_retry) {
3453                 uint8_t buf[8];
3454                 uint32_t *type = (uint32_t *)buf + 1;
3455                 avio_read(pb, buf, 8);
3456                 avio_seek(pb, -8, SEEK_CUR);
3457                 if (*type == MKTAG('m','v','h','d') ||
3458                     *type == MKTAG('c','m','o','v')) {
3459                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
3460                     a.type = MKTAG('m','o','o','v');
3461                 }
3462             }
3463             if (atom.type != MKTAG('r','o','o','t') &&
3464                 atom.type != MKTAG('m','o','o','v'))
3465             {
3466                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
3467                 {
3468                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
3469                     avio_skip(pb, -8);
3470                     c->atom_depth --;
3471                     return 0;
3472                 }
3473             }
3474             total_size += 8;
3475             if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
3476                 a.size = avio_rb64(pb) - 8;
3477                 total_size += 8;
3478             }
3479         }
3480         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
3481                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
3482         if (a.size == 0) {
3483             a.size = atom.size - total_size + 8;
3484         }
3485         a.size -= 8;
3486         if (a.size < 0)
3487             break;
3488         a.size = FFMIN(a.size, atom.size - total_size);
3489
3490         for (i = 0; mov_default_parse_table[i].type; i++)
3491             if (mov_default_parse_table[i].type == a.type) {
3492                 parse = mov_default_parse_table[i].parse;
3493                 break;
3494             }
3495
3496         // container is user data
3497         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
3498                        atom.type == MKTAG('i','l','s','t')))
3499             parse = mov_read_udta_string;
3500
3501         if (!parse) { /* skip leaf atoms data */
3502             avio_skip(pb, a.size);
3503         } else {
3504             int64_t start_pos = avio_tell(pb);
3505             int64_t left;
3506             int err = parse(c, pb, a);
3507             if (err < 0) {
3508                 c->atom_depth --;
3509                 return err;
3510             }
3511             if (c->found_moov && c->found_mdat &&
3512                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX) ||
3513                  start_pos + a.size == avio_size(pb))) {
3514                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX)
3515                     c->next_root_atom = start_pos + a.size;
3516                 c->atom_depth --;
3517                 return 0;
3518             }
3519             left = a.size - avio_tell(pb) + start_pos;
3520             if (left > 0) /* skip garbage at atom end */
3521                 avio_skip(pb, left);
3522             else if (left < 0) {
3523                 av_log(c->fc, AV_LOG_WARNING,
3524                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
3525                        (char*)&a.type, -left);
3526                 avio_seek(pb, left, SEEK_CUR);
3527             }
3528         }
3529
3530         total_size += a.size;
3531     }
3532
3533     if (total_size < atom.size && atom.size < 0x7ffff)
3534         avio_skip(pb, atom.size - total_size);
3535
3536     c->atom_depth --;
3537     return 0;
3538 }
3539
3540 static int mov_probe(AVProbeData *p)
3541 {
3542     int64_t offset;
3543     uint32_t tag;
3544     int score = 0;
3545     int moov_offset = -1;
3546
3547     /* check file header */
3548     offset = 0;
3549     for (;;) {
3550         /* ignore invalid offset */
3551         if ((offset + 8) > (unsigned int)p->buf_size)
3552             break;
3553         tag = AV_RL32(p->buf + offset + 4);
3554         switch(tag) {
3555         /* check for obvious tags */
3556         case MKTAG('m','o','o','v'):
3557             moov_offset = offset + 4;
3558         case MKTAG('m','d','a','t'):
3559         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
3560         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
3561         case MKTAG('f','t','y','p'):
3562             if (AV_RB32(p->buf+offset) < 8 &&
3563                 (AV_RB32(p->buf+offset) != 1 ||
3564                  offset + 12 > (unsigned int)p->buf_size ||
3565                  AV_RB64(p->buf+offset + 8) == 0)) {
3566                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3567             } else if (tag == MKTAG('f','t','y','p') &&
3568                        AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')) {
3569                 score = FFMAX(score, 5);
3570             } else {
3571                 score = AVPROBE_SCORE_MAX;
3572             }
3573             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3574             break;
3575         /* those are more common words, so rate then a bit less */
3576         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
3577         case MKTAG('w','i','d','e'):
3578         case MKTAG('f','r','e','e'):
3579         case MKTAG('j','u','n','k'):
3580         case MKTAG('p','i','c','t'):
3581             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
3582             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3583             break;
3584         case MKTAG(0x82,0x82,0x7f,0x7d):
3585         case MKTAG('s','k','i','p'):
3586         case MKTAG('u','u','i','d'):
3587         case MKTAG('p','r','f','l'):
3588             /* if we only find those cause probedata is too small at least rate them */
3589             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3590             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3591             break;
3592         default:
3593             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3594         }
3595     }
3596     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
3597         /* moov atom in the header - we should make sure that this is not a
3598          * MOV-packed MPEG-PS */
3599         offset = moov_offset;
3600
3601         while(offset < (p->buf_size - 16)){ /* Sufficient space */
3602                /* We found an actual hdlr atom */
3603             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
3604                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
3605                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
3606                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
3607                 /* We found a media handler reference atom describing an
3608                  * MPEG-PS-in-MOV, return a
3609                  * low score to force expanding the probe window until
3610                  * mpegps_probe finds what it needs */
3611                 return 5;
3612             }else
3613                 /* Keep looking */
3614                 offset+=2;
3615         }
3616     }
3617
3618     return score;
3619 }
3620
3621 // must be done after parsing all trak because there's no order requirement
3622 static void mov_read_chapters(AVFormatContext *s)
3623 {
3624     MOVContext *mov = s->priv_data;
3625     AVStream *st = NULL;
3626     MOVStreamContext *sc;
3627     int64_t cur_pos;
3628     int i;
3629
3630     for (i = 0; i < s->nb_streams; i++)
3631         if (s->streams[i]->id == mov->chapter_track) {
3632             st = s->streams[i];
3633             break;
3634         }
3635     if (!st) {
3636         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
3637         return;
3638     }
3639
3640     st->discard = AVDISCARD_ALL;
3641     sc = st->priv_data;
3642     cur_pos = avio_tell(sc->pb);
3643
3644     for (i = 0; i < st->nb_index_entries; i++) {
3645         AVIndexEntry *sample = &st->index_entries[i];
3646         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
3647         uint8_t *title;
3648         uint16_t ch;
3649         int len, title_len;
3650
3651         if (end < sample->timestamp) {
3652             av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
3653             end = AV_NOPTS_VALUE;
3654         }
3655
3656         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
3657             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
3658             goto finish;
3659         }
3660
3661         // the first two bytes are the length of the title
3662         len = avio_rb16(sc->pb);
3663         if (len > sample->size-2)
3664             continue;
3665         title_len = 2*len + 1;
3666         if (!(title = av_mallocz(title_len)))
3667             goto finish;
3668
3669         // The samples could theoretically be in any encoding if there's an encd
3670         // atom following, but in practice are only utf-8 or utf-16, distinguished
3671         // instead by the presence of a BOM
3672         if (!len) {
3673             title[0] = 0;
3674         } else {
3675             ch = avio_rb16(sc->pb);
3676             if (ch == 0xfeff)
3677                 avio_get_str16be(sc->pb, len, title, title_len);
3678             else if (ch == 0xfffe)
3679                 avio_get_str16le(sc->pb, len, title, title_len);
3680             else {
3681                 AV_WB16(title, ch);
3682                 if (len == 1 || len == 2)
3683                     title[len] = 0;
3684                 else
3685                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
3686             }
3687         }
3688
3689         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
3690         av_freep(&title);
3691     }
3692 finish:
3693     avio_seek(sc->pb, cur_pos, SEEK_SET);
3694 }
3695
3696 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
3697                                              uint32_t value, int flags)
3698 {
3699     AVTimecode tc;
3700     char buf[AV_TIMECODE_STR_SIZE];
3701     AVRational rate = {st->codec->time_base.den,
3702                        st->codec->time_base.num};
3703     int ret = av_timecode_init(&tc, rate, flags, 0, s);
3704     if (ret < 0)
3705         return ret;
3706     av_dict_set(&st->metadata, "timecode",
3707                 av_timecode_make_string(&tc, buf, value), 0);
3708     return 0;
3709 }
3710
3711 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
3712 {
3713     MOVStreamContext *sc = st->priv_data;
3714     int flags = 0;
3715     int64_t cur_pos = avio_tell(sc->pb);
3716     uint32_t value;
3717
3718     if (!st->nb_index_entries)
3719         return -1;
3720
3721     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
3722     value = avio_rb32(s->pb);
3723
3724     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
3725     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
3726     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
3727
3728     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
3729      * not the case) and thus assume "frame number format" instead of QT one.
3730      * No sample with tmcd track can be found with a QT timecode at the moment,
3731      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
3732      * format). */
3733     parse_timecode_in_framenum_format(s, st, value, flags);
3734
3735     avio_seek(sc->pb, cur_pos, SEEK_SET);
3736     return 0;
3737 }
3738
3739 static int mov_read_close(AVFormatContext *s)
3740 {
3741     MOVContext *mov = s->priv_data;
3742     int i, j;
3743
3744     for (i = 0; i < s->nb_streams; i++) {
3745         AVStream *st = s->streams[i];
3746         MOVStreamContext *sc = st->priv_data;
3747
3748         av_freep(&sc->ctts_data);
3749         for (j = 0; j < sc->drefs_count; j++) {
3750             av_freep(&sc->drefs[j].path);
3751             av_freep(&sc->drefs[j].dir);
3752         }
3753         av_freep(&sc->drefs);
3754
3755         sc->drefs_count = 0;
3756
3757         if (!sc->pb_is_copied)
3758             avio_closep(&sc->pb);
3759
3760         sc->pb = NULL;
3761         av_freep(&sc->chunk_offsets);
3762         av_freep(&sc->stsc_data);
3763         av_freep(&sc->sample_sizes);
3764         av_freep(&sc->keyframes);
3765         av_freep(&sc->stts_data);
3766         av_freep(&sc->stps_data);
3767         av_freep(&sc->elst_data);
3768         av_freep(&sc->rap_group);
3769         av_freep(&sc->display_matrix);
3770     }
3771
3772     if (mov->dv_demux) {
3773         avformat_free_context(mov->dv_fctx);
3774         mov->dv_fctx = NULL;
3775     }
3776
3777     av_freep(&mov->trex_data);
3778     av_freep(&mov->bitrates);
3779
3780     for (i = 0; i < mov->fragment_index_count; i++) {
3781         MOVFragmentIndex* index = mov->fragment_index_data[i];
3782         av_freep(&index->items);
3783         av_freep(&mov->fragment_index_data[i]);
3784     }
3785     av_freep(&mov->fragment_index_data);
3786
3787     return 0;
3788 }
3789
3790 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
3791 {
3792     int i;
3793
3794     for (i = 0; i < s->nb_streams; i++) {
3795         AVStream *st = s->streams[i];
3796         MOVStreamContext *sc = st->priv_data;
3797
3798         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
3799             sc->timecode_track == tmcd_id)
3800             return 1;
3801     }
3802     return 0;
3803 }
3804
3805 /* look for a tmcd track not referenced by any video track, and export it globally */
3806 static void export_orphan_timecode(AVFormatContext *s)
3807 {
3808     int i;
3809
3810     for (i = 0; i < s->nb_streams; i++) {
3811         AVStream *st = s->streams[i];
3812
3813         if (st->codec->codec_tag  == MKTAG('t','m','c','d') &&
3814             !tmcd_is_referenced(s, i + 1)) {
3815             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
3816             if (tcr) {
3817                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
3818                 break;
3819             }
3820         }
3821     }
3822 }
3823
3824 static int read_tfra(MOVContext *mov, AVIOContext *f)
3825 {
3826     MOVFragmentIndex* index = NULL;
3827     int version, fieldlength, i, j;
3828     int64_t pos = avio_tell(f);
3829     uint32_t size = avio_rb32(f);
3830     void *tmp;
3831
3832     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
3833         return 1;
3834     }
3835     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
3836     index = av_mallocz(sizeof(MOVFragmentIndex));
3837     if (!index) {
3838         return AVERROR(ENOMEM);
3839     }
3840
3841     tmp = av_realloc_array(mov->fragment_index_data,
3842                            mov->fragment_index_count + 1,
3843                            sizeof(MOVFragmentIndex*));
3844     if (!tmp) {
3845         av_freep(&index);
3846         return AVERROR(ENOMEM);
3847     }
3848     mov->fragment_index_data = tmp;
3849     mov->fragment_index_data[mov->fragment_index_count++] = index;
3850
3851     version = avio_r8(f);
3852     avio_rb24(f);
3853     index->track_id = avio_rb32(f);
3854     fieldlength = avio_rb32(f);
3855     index->item_count = avio_rb32(f);
3856     index->items = av_mallocz_array(
3857             index->item_count, sizeof(MOVFragmentIndexItem));
3858     if (!index->items) {
3859         index->item_count = 0;
3860         return AVERROR(ENOMEM);
3861     }
3862     for (i = 0; i < index->item_count; i++) {
3863         int64_t time, offset;
3864         if (version == 1) {
3865             time   = avio_rb64(f);
3866             offset = avio_rb64(f);
3867         } else {
3868             time   = avio_rb32(f);
3869             offset = avio_rb32(f);
3870         }
3871         index->items[i].time = time;
3872         index->items[i].moof_offset = offset;
3873         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
3874             avio_r8(f);
3875         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
3876             avio_r8(f);
3877         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
3878             avio_r8(f);
3879     }
3880
3881     avio_seek(f, pos + size, SEEK_SET);
3882     return 0;
3883 }
3884
3885 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
3886 {
3887     int64_t stream_size = avio_size(f);
3888     int64_t original_pos = avio_tell(f);
3889     int64_t seek_ret;
3890     int32_t mfra_size;
3891     int ret = -1;
3892     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
3893         ret = seek_ret;
3894         goto fail;
3895     }
3896     mfra_size = avio_rb32(f);
3897     if (mfra_size < 0 || mfra_size > stream_size) {
3898         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
3899         goto fail;
3900     }
3901     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
3902         ret = seek_ret;
3903         goto fail;
3904     }
3905     if (avio_rb32(f) != mfra_size) {
3906         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
3907         goto fail;
3908     }
3909     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
3910         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
3911         goto fail;
3912     }
3913     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
3914     do {
3915         ret = read_tfra(c, f);
3916         if (ret < 0)
3917             goto fail;
3918     } while (!ret);
3919     ret = 0;
3920 fail:
3921     seek_ret = avio_seek(f, original_pos, SEEK_SET);
3922     if (seek_ret < 0) {
3923         av_log(c->fc, AV_LOG_ERROR,
3924                "failed to seek back after looking for mfra\n");
3925         ret = seek_ret;
3926     }
3927     return ret;
3928 }
3929
3930 static int mov_read_header(AVFormatContext *s)
3931 {
3932     MOVContext *mov = s->priv_data;
3933     AVIOContext *pb = s->pb;
3934     int j, err;
3935     MOVAtom atom = { AV_RL32("root") };
3936     int i;
3937
3938     mov->fc = s;
3939     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
3940     if (pb->seekable)
3941         atom.size = avio_size(pb);
3942     else
3943         atom.size = INT64_MAX;
3944
3945     /* check MOV header */
3946     do {
3947     if (mov->moov_retry)
3948         avio_seek(pb, 0, SEEK_SET);
3949     if ((err = mov_read_default(mov, pb, atom)) < 0) {
3950         av_log(s, AV_LOG_ERROR, "error reading header\n");
3951         mov_read_close(s);
3952         return err;
3953     }
3954     } while (pb->seekable && !mov->found_moov && !mov->moov_retry++);
3955     if (!mov->found_moov) {
3956         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
3957         mov_read_close(s);
3958         return AVERROR_INVALIDDATA;
3959     }
3960     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
3961
3962     if (pb->seekable) {
3963         if (mov->chapter_track > 0)
3964             mov_read_chapters(s);
3965         for (i = 0; i < s->nb_streams; i++)
3966             if (s->streams[i]->codec->codec_tag == AV_RL32("tmcd"))
3967                 mov_read_timecode_track(s, s->streams[i]);
3968     }
3969
3970     /* copy timecode metadata from tmcd tracks to the related video streams */
3971     for (i = 0; i < s->nb_streams; i++) {
3972         AVStream *st = s->streams[i];
3973         MOVStreamContext *sc = st->priv_data;
3974         if (sc->timecode_track > 0) {
3975             AVDictionaryEntry *tcr;
3976             int tmcd_st_id = -1;
3977
3978             for (j = 0; j < s->nb_streams; j++)
3979                 if (s->streams[j]->id == sc->timecode_track)
3980                     tmcd_st_id = j;
3981
3982             if (tmcd_st_id < 0 || tmcd_st_id == i)
3983                 continue;
3984             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
3985             if (tcr)
3986                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
3987         }
3988     }
3989     export_orphan_timecode(s);
3990
3991     for (i = 0; i < s->nb_streams; i++) {
3992         AVStream *st = s->streams[i];
3993         MOVStreamContext *sc = st->priv_data;
3994         fix_timescale(mov, sc);
3995         if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) {
3996             st->skip_samples = sc->start_pad;
3997         }
3998         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
3999             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
4000                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
4001         if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
4002             if (st->codec->width <= 0 || st->codec->height <= 0) {
4003                 st->codec->width  = sc->width;
4004                 st->codec->height = sc->height;
4005             }
4006             if (st->codec->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
4007                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
4008                     return err;
4009             }
4010         }
4011     }
4012
4013     if (mov->trex_data) {
4014         for (i = 0; i < s->nb_streams; i++) {
4015             AVStream *st = s->streams[i];
4016             MOVStreamContext *sc = st->priv_data;
4017             if (st->duration > 0)
4018                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
4019         }
4020     }
4021
4022     if (mov->use_mfra_for > 0) {
4023         for (i = 0; i < s->nb_streams; i++) {
4024             AVStream *st = s->streams[i];
4025             MOVStreamContext *sc = st->priv_data;
4026             if (sc->duration_for_fps > 0) {
4027                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale /
4028                     sc->duration_for_fps;
4029             }
4030         }
4031     }
4032
4033     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
4034         if (mov->bitrates[i]) {
4035             s->streams[i]->codec->bit_rate = mov->bitrates[i];
4036         }
4037     }
4038
4039     ff_rfps_calculate(s);
4040
4041     for (i = 0; i < s->nb_streams; i++) {
4042         AVStream *st = s->streams[i];
4043         MOVStreamContext *sc = st->priv_data;
4044
4045         switch (st->codec->codec_type) {
4046         case AVMEDIA_TYPE_AUDIO:
4047             err = ff_replaygain_export(st, s->metadata);
4048             if (err < 0) {
4049                 mov_read_close(s);
4050                 return err;
4051             }
4052             break;
4053         case AVMEDIA_TYPE_VIDEO:
4054             if (sc->display_matrix) {
4055                 AVPacketSideData *sd, *tmp;
4056
4057                 tmp = av_realloc_array(st->side_data,
4058                                        st->nb_side_data + 1, sizeof(*tmp));
4059                 if (!tmp)
4060                     return AVERROR(ENOMEM);
4061
4062                 st->side_data = tmp;
4063                 st->nb_side_data++;
4064
4065                 sd = &st->side_data[st->nb_side_data - 1];
4066                 sd->type = AV_PKT_DATA_DISPLAYMATRIX;
4067                 sd->size = sizeof(int32_t) * 9;
4068                 sd->data = (uint8_t*)sc->display_matrix;
4069                 sc->display_matrix = NULL;
4070             }
4071             break;
4072         }
4073     }
4074
4075     return 0;
4076 }
4077
4078 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
4079 {
4080     AVIndexEntry *sample = NULL;
4081     int64_t best_dts = INT64_MAX;
4082     int i;
4083     for (i = 0; i < s->nb_streams; i++) {
4084         AVStream *avst = s->streams[i];
4085         MOVStreamContext *msc = avst->priv_data;
4086         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
4087             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
4088             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
4089             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
4090             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
4091                 (s->pb->seekable &&
4092                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
4093                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
4094                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
4095                 sample = current_sample;
4096                 best_dts = dts;
4097                 *st = avst;
4098             }
4099         }
4100     }
4101     return sample;
4102 }
4103
4104 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
4105 {
4106     MOVContext *mov = s->priv_data;
4107     MOVStreamContext *sc;
4108     AVIndexEntry *sample;
4109     AVStream *st = NULL;
4110     int ret;
4111     mov->fc = s;
4112  retry:
4113     sample = mov_find_next_sample(s, &st);
4114     if (!sample) {
4115         mov->found_mdat = 0;
4116         if (!mov->next_root_atom)
4117             return AVERROR_EOF;
4118         avio_seek(s->pb, mov->next_root_atom, SEEK_SET);
4119         mov->next_root_atom = 0;
4120         if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
4121             avio_feof(s->pb))
4122             return AVERROR_EOF;
4123         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
4124         goto retry;
4125     }
4126     sc = st->priv_data;
4127     /* must be done just before reading, to avoid infinite loop on sample */
4128     sc->current_sample++;
4129
4130     if (mov->next_root_atom) {
4131         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
4132         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
4133     }
4134
4135     if (st->discard != AVDISCARD_ALL) {
4136         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
4137             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
4138                    sc->ffindex, sample->pos);
4139             return AVERROR_INVALIDDATA;
4140         }
4141         ret = av_get_packet(sc->pb, pkt, sample->size);
4142         if (ret < 0)
4143             return ret;
4144         if (sc->has_palette) {
4145             uint8_t *pal;
4146
4147             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
4148             if (!pal) {
4149                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
4150             } else {
4151                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
4152                 sc->has_palette = 0;
4153             }
4154         }
4155 #if CONFIG_DV_DEMUXER
4156         if (mov->dv_demux && sc->dv_audio_container) {
4157             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
4158             av_freep(&pkt->data);
4159             pkt->size = 0;
4160             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
4161             if (ret < 0)
4162                 return ret;
4163         }
4164 #endif
4165     }
4166
4167     pkt->stream_index = sc->ffindex;
4168     pkt->dts = sample->timestamp;
4169     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
4170         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
4171         /* update ctts context */
4172         sc->ctts_sample++;
4173         if (sc->ctts_index < sc->ctts_count &&
4174             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
4175             sc->ctts_index++;
4176             sc->ctts_sample = 0;
4177         }
4178         if (sc->wrong_dts)
4179             pkt->dts = AV_NOPTS_VALUE;
4180     } else {
4181         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
4182             st->index_entries[sc->current_sample].timestamp : st->duration;
4183         pkt->duration = next_dts - pkt->dts;
4184         pkt->pts = pkt->dts;
4185     }
4186     if (st->discard == AVDISCARD_ALL)
4187         goto retry;
4188     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
4189     pkt->pos = sample->pos;
4190     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
4191             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
4192     return 0;
4193 }
4194
4195 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
4196 {
4197     MOVStreamContext *sc = st->priv_data;
4198     int sample, time_sample;
4199     int i;
4200
4201     sample = av_index_search_timestamp(st, timestamp, flags);
4202     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
4203     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
4204         sample = 0;
4205     if (sample < 0) /* not sure what to do */
4206         return AVERROR_INVALIDDATA;
4207     sc->current_sample = sample;
4208     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
4209     /* adjust ctts index */
4210     if (sc->ctts_data) {
4211         time_sample = 0;
4212         for (i = 0; i < sc->ctts_count; i++) {
4213             int next = time_sample + sc->ctts_data[i].count;
4214             if (next > sc->current_sample) {
4215                 sc->ctts_index = i;
4216                 sc->ctts_sample = sc->current_sample - time_sample;
4217                 break;
4218             }
4219             time_sample = next;
4220         }
4221     }
4222     return sample;
4223 }
4224
4225 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
4226 {
4227     AVStream *st;
4228     int64_t seek_timestamp, timestamp;
4229     int sample;
4230     int i;
4231
4232     if (stream_index >= s->nb_streams)
4233         return AVERROR_INVALIDDATA;
4234
4235     st = s->streams[stream_index];
4236     sample = mov_seek_stream(s, st, sample_time, flags);
4237     if (sample < 0)
4238         return sample;
4239
4240     /* adjust seek timestamp to found sample timestamp */
4241     seek_timestamp = st->index_entries[sample].timestamp;
4242
4243     for (i = 0; i < s->nb_streams; i++) {
4244         MOVStreamContext *sc = s->streams[i]->priv_data;
4245         st = s->streams[i];
4246         st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
4247
4248         if (stream_index == i)
4249             continue;
4250
4251         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
4252         mov_seek_stream(s, st, timestamp, flags);
4253     }
4254     return 0;
4255 }
4256
4257 #define OFFSET(x) offsetof(MOVContext, x)
4258 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
4259 static const AVOption mov_options[] = {
4260     {"use_absolute_path",
4261         "allow using absolute path when opening alias, this is a possible security issue",
4262         OFFSET(use_absolute_path), FF_OPT_TYPE_INT, {.i64 = 0},
4263         0, 1, FLAGS},
4264     {"ignore_editlist", "", OFFSET(ignore_editlist), FF_OPT_TYPE_INT, {.i64 = 0},
4265         0, 1, FLAGS},
4266     {"use_mfra_for",
4267         "use mfra for fragment timestamps",
4268         OFFSET(use_mfra_for), FF_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
4269         -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
4270         "use_mfra_for"},
4271     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
4272         FLAGS, "use_mfra_for" },
4273     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
4274         FLAGS, "use_mfra_for" },
4275     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
4276         FLAGS, "use_mfra_for" },
4277     { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
4278         AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
4279     { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
4280         AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
4281     { NULL },
4282 };
4283
4284 static const AVClass mov_class = {
4285     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
4286     .item_name  = av_default_item_name,
4287     .option     = mov_options,
4288     .version    = LIBAVUTIL_VERSION_INT,
4289 };
4290
4291 AVInputFormat ff_mov_demuxer = {
4292     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
4293     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
4294     .priv_class     = &mov_class,
4295     .priv_data_size = sizeof(MOVContext),
4296     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
4297     .read_probe     = mov_probe,
4298     .read_header    = mov_read_header,
4299     .read_packet    = mov_read_packet,
4300     .read_close     = mov_read_close,
4301     .read_seek      = mov_read_seek,
4302     .flags          = AVFMT_NO_BYTE_SEEK,
4303 };