]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
Merge commit '2dbd35b00c6433e587d5f44d5dbc8972ebbaa88e'
[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/display.h"
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/intfloat.h"
35 #include "libavutil/mathematics.h"
36 #include "libavutil/time_internal.h"
37 #include "libavutil/avstring.h"
38 #include "libavutil/dict.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_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1118 {
1119     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1120     if(ret == 0)
1121         ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1122     return ret;
1123 }
1124
1125 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1126 {
1127     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1128
1129     if (!ret && c->fc->nb_streams >= 1) {
1130         AVCodecContext *avctx = c->fc->streams[c->fc->nb_streams-1]->codec;
1131         if (avctx->extradata_size >= 40) {
1132             avctx->height = AV_RB16(&avctx->extradata[36]);
1133             avctx->width  = AV_RB16(&avctx->extradata[38]);
1134         }
1135     }
1136     return ret;
1137 }
1138
1139 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1140 {
1141     if (c->fc->nb_streams >= 1) {
1142         AVCodecContext *codec = c->fc->streams[c->fc->nb_streams-1]->codec;
1143         if (codec->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1144             codec->codec_id == AV_CODEC_ID_H264 &&
1145             atom.size > 11) {
1146             avio_skip(pb, 10);
1147             /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1148             if (avio_rb16(pb) == 0xd4d)
1149                 codec->width = 1440;
1150             return 0;
1151         }
1152     }
1153
1154     return mov_read_avid(c, pb, atom);
1155 }
1156
1157 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1158 {
1159     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1160 }
1161
1162 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1163 {
1164     AVStream *st;
1165
1166     if (c->fc->nb_streams < 1)
1167         return 0;
1168     st = c->fc->streams[c->fc->nb_streams-1];
1169
1170     if ((uint64_t)atom.size > (1<<30))
1171         return AVERROR_INVALIDDATA;
1172
1173     if (st->codec->codec_id == AV_CODEC_ID_QDM2 ||
1174         st->codec->codec_id == AV_CODEC_ID_QDMC ||
1175         st->codec->codec_id == AV_CODEC_ID_SPEEX) {
1176         // pass all frma atom to codec, needed at least for QDMC and QDM2
1177         av_freep(&st->codec->extradata);
1178         if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1179             return AVERROR(ENOMEM);
1180     } else if (atom.size > 8) { /* to read frma, esds atoms */
1181         int ret;
1182         if ((ret = mov_read_default(c, pb, atom)) < 0)
1183             return ret;
1184     } else
1185         avio_skip(pb, atom.size);
1186     return 0;
1187 }
1188
1189 /**
1190  * This function reads atom content and puts data in extradata without tag
1191  * nor size unlike mov_read_extradata.
1192  */
1193 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1194 {
1195     AVStream *st;
1196
1197     if (c->fc->nb_streams < 1)
1198         return 0;
1199     st = c->fc->streams[c->fc->nb_streams-1];
1200
1201     if ((uint64_t)atom.size > (1<<30))
1202         return AVERROR_INVALIDDATA;
1203
1204     if (atom.size >= 10) {
1205         // Broken files created by legacy versions of libavformat will
1206         // wrap a whole fiel atom inside of a glbl atom.
1207         unsigned size = avio_rb32(pb);
1208         unsigned type = avio_rl32(pb);
1209         avio_seek(pb, -8, SEEK_CUR);
1210         if (type == MKTAG('f','i','e','l') && size == atom.size)
1211             return mov_read_default(c, pb, atom);
1212     }
1213     if (st->codec->extradata_size > 1 && st->codec->extradata) {
1214         av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1215         return 0;
1216     }
1217     av_freep(&st->codec->extradata);
1218     if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1219         return AVERROR(ENOMEM);
1220
1221     return 0;
1222 }
1223
1224 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1225 {
1226     AVStream *st;
1227     uint8_t profile_level;
1228     int ret;
1229
1230     if (c->fc->nb_streams < 1)
1231         return 0;
1232     st = c->fc->streams[c->fc->nb_streams-1];
1233
1234     if (atom.size >= (1<<28) || atom.size < 7)
1235         return AVERROR_INVALIDDATA;
1236
1237     profile_level = avio_r8(pb);
1238     if ((profile_level & 0xf0) != 0xc0)
1239         return 0;
1240
1241     avio_seek(pb, 6, SEEK_CUR);
1242     av_freep(&st->codec->extradata);
1243     if ((ret = ff_get_extradata(st->codec, pb, atom.size - 7)) < 0)
1244         return ret;
1245
1246     return 0;
1247 }
1248
1249 /**
1250  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1251  * but can have extradata appended at the end after the 40 bytes belonging
1252  * to the struct.
1253  */
1254 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1255 {
1256     AVStream *st;
1257
1258     if (c->fc->nb_streams < 1)
1259         return 0;
1260     if (atom.size <= 40)
1261         return 0;
1262     st = c->fc->streams[c->fc->nb_streams-1];
1263
1264     if ((uint64_t)atom.size > (1<<30))
1265         return AVERROR_INVALIDDATA;
1266
1267     avio_skip(pb, 40);
1268     av_freep(&st->codec->extradata);
1269     if (ff_get_extradata(st->codec, pb, atom.size - 40) < 0)
1270         return AVERROR(ENOMEM);
1271     return 0;
1272 }
1273
1274 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1275 {
1276     AVStream *st;
1277     MOVStreamContext *sc;
1278     unsigned int i, entries;
1279
1280     if (c->fc->nb_streams < 1)
1281         return 0;
1282     st = c->fc->streams[c->fc->nb_streams-1];
1283     sc = st->priv_data;
1284
1285     avio_r8(pb); /* version */
1286     avio_rb24(pb); /* flags */
1287
1288     entries = avio_rb32(pb);
1289
1290     if (!entries)
1291         return 0;
1292
1293     if (sc->chunk_offsets)
1294         av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1295     av_free(sc->chunk_offsets);
1296     sc->chunk_count = 0;
1297     sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1298     if (!sc->chunk_offsets)
1299         return AVERROR(ENOMEM);
1300     sc->chunk_count = entries;
1301
1302     if      (atom.type == MKTAG('s','t','c','o'))
1303         for (i = 0; i < entries && !pb->eof_reached; i++)
1304             sc->chunk_offsets[i] = avio_rb32(pb);
1305     else if (atom.type == MKTAG('c','o','6','4'))
1306         for (i = 0; i < entries && !pb->eof_reached; i++)
1307             sc->chunk_offsets[i] = avio_rb64(pb);
1308     else
1309         return AVERROR_INVALIDDATA;
1310
1311     sc->chunk_count = i;
1312
1313     if (pb->eof_reached)
1314         return AVERROR_EOF;
1315
1316     return 0;
1317 }
1318
1319 /**
1320  * Compute codec id for 'lpcm' tag.
1321  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1322  */
1323 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1324 {
1325     /* lpcm flags:
1326      * 0x1 = float
1327      * 0x2 = big-endian
1328      * 0x4 = signed
1329      */
1330     return ff_get_pcm_codec_id(bps, flags & 1, flags & 2, flags & 4 ? -1 : 0);
1331 }
1332
1333 static int mov_codec_id(AVStream *st, uint32_t format)
1334 {
1335     int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1336
1337     if (id <= 0 &&
1338         ((format & 0xFFFF) == 'm' + ('s' << 8) ||
1339          (format & 0xFFFF) == 'T' + ('S' << 8)))
1340         id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
1341
1342     if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1343         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1344     } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO &&
1345                /* skip old asf mpeg4 tag */
1346                format && format != MKTAG('m','p','4','s')) {
1347         id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1348         if (id <= 0)
1349             id = ff_codec_get_id(ff_codec_bmp_tags, format);
1350         if (id > 0)
1351             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1352         else if (st->codec->codec_type == AVMEDIA_TYPE_DATA ||
1353                     (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1354                     st->codec->codec_id == AV_CODEC_ID_NONE)) {
1355             id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1356             if (id > 0)
1357                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1358         }
1359     }
1360
1361     st->codec->codec_tag = format;
1362
1363     return id;
1364 }
1365
1366 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
1367                                  AVStream *st, MOVStreamContext *sc)
1368 {
1369     uint8_t codec_name[32];
1370     unsigned int color_depth, len, j;
1371     int color_greyscale;
1372     int color_table_id;
1373
1374     avio_rb16(pb); /* version */
1375     avio_rb16(pb); /* revision level */
1376     avio_rb32(pb); /* vendor */
1377     avio_rb32(pb); /* temporal quality */
1378     avio_rb32(pb); /* spatial quality */
1379
1380     st->codec->width  = avio_rb16(pb); /* width */
1381     st->codec->height = avio_rb16(pb); /* height */
1382
1383     avio_rb32(pb); /* horiz resolution */
1384     avio_rb32(pb); /* vert resolution */
1385     avio_rb32(pb); /* data size, always 0 */
1386     avio_rb16(pb); /* frames per samples */
1387
1388     len = avio_r8(pb); /* codec name, pascal string */
1389     if (len > 31)
1390         len = 31;
1391     mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
1392     if (len < 31)
1393         avio_skip(pb, 31 - len);
1394
1395     if (codec_name[0])
1396         av_dict_set(&st->metadata, "encoder", codec_name, 0);
1397
1398     /* codec_tag YV12 triggers an UV swap in rawdec.c */
1399     if (!memcmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
1400         st->codec->codec_tag = MKTAG('I', '4', '2', '0');
1401         st->codec->width &= ~1;
1402         st->codec->height &= ~1;
1403     }
1404     /* Flash Media Server uses tag H263 with Sorenson Spark */
1405     if (st->codec->codec_tag == MKTAG('H','2','6','3') &&
1406         !memcmp(codec_name, "Sorenson H263", 13))
1407         st->codec->codec_id = AV_CODEC_ID_FLV1;
1408
1409     st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1410     color_table_id = avio_rb16(pb); /* colortable id */
1411     av_dlog(c->fc, "depth %d, ctab id %d\n",
1412             st->codec->bits_per_coded_sample, color_table_id);
1413     /* figure out the palette situation */
1414     color_depth     = st->codec->bits_per_coded_sample & 0x1F;
1415     color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1416     /* Do not create a greyscale palette for cinepak */
1417     if (color_greyscale && st->codec->codec_id == AV_CODEC_ID_CINEPAK)
1418         return;
1419
1420     /* if the depth is 2, 4, or 8 bpp, file is palettized */
1421     if ((color_depth == 2) || (color_depth == 4) || (color_depth == 8)) {
1422         /* for palette traversal */
1423         unsigned int color_start, color_count, color_end;
1424         unsigned char a, r, g, b;
1425
1426         if (color_greyscale) {
1427             int color_index, color_dec;
1428             /* compute the greyscale palette */
1429             st->codec->bits_per_coded_sample = color_depth;
1430             color_count = 1 << color_depth;
1431             color_index = 255;
1432             color_dec   = 256 / (color_count - 1);
1433             for (j = 0; j < color_count; j++) {
1434                 r = g = b = color_index;
1435                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1436                 color_index -= color_dec;
1437                 if (color_index < 0)
1438                     color_index = 0;
1439             }
1440         } else if (color_table_id) {
1441             const uint8_t *color_table;
1442             /* if flag bit 3 is set, use the default palette */
1443             color_count = 1 << color_depth;
1444             if (color_depth == 2)
1445                 color_table = ff_qt_default_palette_4;
1446             else if (color_depth == 4)
1447                 color_table = ff_qt_default_palette_16;
1448             else
1449                 color_table = ff_qt_default_palette_256;
1450
1451             for (j = 0; j < color_count; j++) {
1452                 r = color_table[j * 3 + 0];
1453                 g = color_table[j * 3 + 1];
1454                 b = color_table[j * 3 + 2];
1455                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1456             }
1457         } else {
1458             /* load the palette from the file */
1459             color_start = avio_rb32(pb);
1460             color_count = avio_rb16(pb);
1461             color_end   = avio_rb16(pb);
1462             if ((color_start <= 255) && (color_end <= 255)) {
1463                 for (j = color_start; j <= color_end; j++) {
1464                     /* each A, R, G, or B component is 16 bits;
1465                         * only use the top 8 bits */
1466                     a = avio_r8(pb);
1467                     avio_r8(pb);
1468                     r = avio_r8(pb);
1469                     avio_r8(pb);
1470                     g = avio_r8(pb);
1471                     avio_r8(pb);
1472                     b = avio_r8(pb);
1473                     avio_r8(pb);
1474                     sc->palette[j] = (a << 24 ) | (r << 16) | (g << 8) | (b);
1475                 }
1476             }
1477         }
1478         sc->has_palette = 1;
1479     }
1480 }
1481
1482 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
1483                                  AVStream *st, MOVStreamContext *sc)
1484 {
1485     int bits_per_sample, flags;
1486     uint16_t version = avio_rb16(pb);
1487     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
1488
1489     avio_rb16(pb); /* revision level */
1490     avio_rb32(pb); /* vendor */
1491
1492     st->codec->channels              = avio_rb16(pb); /* channel count */
1493     st->codec->bits_per_coded_sample = avio_rb16(pb); /* sample size */
1494     av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1495
1496     sc->audio_cid = avio_rb16(pb);
1497     avio_rb16(pb); /* packet size = 0 */
1498
1499     st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1500
1501     // Read QT version 1 fields. In version 0 these do not exist.
1502     av_dlog(c->fc, "version =%d, isom =%d\n", version, c->isom);
1503     if (!c->isom ||
1504         (compatible_brands && strstr(compatible_brands->value, "qt  "))) {
1505
1506         if (version == 1) {
1507             sc->samples_per_frame = avio_rb32(pb);
1508             avio_rb32(pb); /* bytes per packet */
1509             sc->bytes_per_frame = avio_rb32(pb);
1510             avio_rb32(pb); /* bytes per sample */
1511         } else if (version == 2) {
1512             avio_rb32(pb); /* sizeof struct only */
1513             st->codec->sample_rate = av_int2double(avio_rb64(pb));
1514             st->codec->channels    = avio_rb32(pb);
1515             avio_rb32(pb); /* always 0x7F000000 */
1516             st->codec->bits_per_coded_sample = avio_rb32(pb);
1517
1518             flags = avio_rb32(pb); /* lpcm format specific flag */
1519             sc->bytes_per_frame   = avio_rb32(pb);
1520             sc->samples_per_frame = avio_rb32(pb);
1521             if (st->codec->codec_tag == MKTAG('l','p','c','m'))
1522                 st->codec->codec_id =
1523                     ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample,
1524                                              flags);
1525         }
1526     }
1527
1528     switch (st->codec->codec_id) {
1529     case AV_CODEC_ID_PCM_S8:
1530     case AV_CODEC_ID_PCM_U8:
1531         if (st->codec->bits_per_coded_sample == 16)
1532             st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
1533         break;
1534     case AV_CODEC_ID_PCM_S16LE:
1535     case AV_CODEC_ID_PCM_S16BE:
1536         if (st->codec->bits_per_coded_sample == 8)
1537             st->codec->codec_id = AV_CODEC_ID_PCM_S8;
1538         else if (st->codec->bits_per_coded_sample == 24)
1539             st->codec->codec_id =
1540                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1541                 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1542         else if (st->codec->bits_per_coded_sample == 32)
1543              st->codec->codec_id =
1544                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1545                 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
1546         break;
1547     /* set values for old format before stsd version 1 appeared */
1548     case AV_CODEC_ID_MACE3:
1549         sc->samples_per_frame = 6;
1550         sc->bytes_per_frame   = 2 * st->codec->channels;
1551         break;
1552     case AV_CODEC_ID_MACE6:
1553         sc->samples_per_frame = 6;
1554         sc->bytes_per_frame   = 1 * st->codec->channels;
1555         break;
1556     case AV_CODEC_ID_ADPCM_IMA_QT:
1557         sc->samples_per_frame = 64;
1558         sc->bytes_per_frame   = 34 * st->codec->channels;
1559         break;
1560     case AV_CODEC_ID_GSM:
1561         sc->samples_per_frame = 160;
1562         sc->bytes_per_frame   = 33;
1563         break;
1564     default:
1565         break;
1566     }
1567
1568     bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1569     if (bits_per_sample) {
1570         st->codec->bits_per_coded_sample = bits_per_sample;
1571         sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1572     }
1573 }
1574
1575 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
1576                                     AVStream *st, MOVStreamContext *sc,
1577                                     int64_t size)
1578 {
1579     // ttxt stsd contains display flags, justification, background
1580     // color, fonts, and default styles, so fake an atom to read it
1581     MOVAtom fake_atom = { .size = size };
1582     // mp4s contains a regular esds atom
1583     if (st->codec->codec_tag != AV_RL32("mp4s"))
1584         mov_read_glbl(c, pb, fake_atom);
1585     st->codec->width  = sc->width;
1586     st->codec->height = sc->height;
1587 }
1588
1589 static uint32_t yuv_to_rgba(uint32_t ycbcr)
1590 {
1591     uint8_t r, g, b;
1592     int y, cb, cr;
1593
1594     y  = (ycbcr >> 16) & 0xFF;
1595     cr = (ycbcr >> 8)  & 0xFF;
1596     cb =  ycbcr        & 0xFF;
1597
1598     b = av_clip_uint8(1.164 * (y - 16)                      + 2.018 * (cb - 128));
1599     g = av_clip_uint8(1.164 * (y - 16) - 0.813 * (cr - 128) - 0.391 * (cb - 128));
1600     r = av_clip_uint8(1.164 * (y - 16) + 1.596 * (cr - 128));
1601
1602     return (r << 16) | (g << 8) | b;
1603 }
1604
1605 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
1606 {
1607     char buf[256] = {0};
1608     uint8_t *src = st->codec->extradata;
1609     int i;
1610
1611     if (st->codec->extradata_size != 64)
1612         return 0;
1613
1614     if (st->codec->width > 0 &&  st->codec->height > 0)
1615         snprintf(buf, sizeof(buf), "size: %dx%d\n",
1616                  st->codec->width, st->codec->height);
1617     av_strlcat(buf, "palette: ", sizeof(buf));
1618
1619     for (i = 0; i < 16; i++) {
1620         uint32_t yuv = AV_RB32(src + i * 4);
1621         uint32_t rgba = yuv_to_rgba(yuv);
1622
1623         av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
1624     }
1625
1626     if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
1627         return 0;
1628
1629     av_freep(&st->codec->extradata);
1630     st->codec->extradata_size = 0;
1631     st->codec->extradata = av_mallocz(strlen(buf) + FF_INPUT_BUFFER_PADDING_SIZE);
1632     if (!st->codec->extradata)
1633         return AVERROR(ENOMEM);
1634     st->codec->extradata_size = strlen(buf);
1635     memcpy(st->codec->extradata, buf, st->codec->extradata_size);
1636
1637     return 0;
1638 }
1639
1640 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
1641                                 AVStream *st, MOVStreamContext *sc,
1642                                 int64_t size)
1643 {
1644     if (st->codec->codec_tag == MKTAG('t','m','c','d')) {
1645         if ((int)size != size || ff_get_extradata(st->codec, pb, size) < 0)
1646             return AVERROR(ENOMEM);
1647         if (size > 16) {
1648             MOVStreamContext *tmcd_ctx = st->priv_data;
1649             int val;
1650             val = AV_RB32(st->codec->extradata + 4);
1651             tmcd_ctx->tmcd_flags = val;
1652             if (val & 1)
1653                 st->codec->flags2 |= CODEC_FLAG2_DROP_FRAME_TIMECODE;
1654             st->codec->time_base.den = st->codec->extradata[16]; /* number of frame */
1655             st->codec->time_base.num = 1;
1656             if (size > 30) {
1657                 uint32_t len = AV_RB32(st->codec->extradata + 18); /* name atom length */
1658                 uint32_t format = AV_RB32(st->codec->extradata + 22);
1659                 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
1660                     uint16_t str_size = AV_RB16(st->codec->extradata + 26); /* string length */
1661                     if (str_size > 0 && size >= (int)str_size + 26) {
1662                         char *reel_name = av_malloc(str_size + 1);
1663                         if (!reel_name)
1664                             return AVERROR(ENOMEM);
1665                         memcpy(reel_name, st->codec->extradata + 30, str_size);
1666                         reel_name[str_size] = 0; /* Add null terminator */
1667                         /* don't add reel_name if emtpy string */
1668                         if (*reel_name == 0) {
1669                             av_free(reel_name);
1670                         } else {
1671                             av_dict_set(&st->metadata, "reel_name", reel_name,  AV_DICT_DONT_STRDUP_VAL);
1672                         }
1673                     }
1674                 }
1675             }
1676         }
1677     } else {
1678         /* other codec type, just skip (rtp, mp4s ...) */
1679         avio_skip(pb, size);
1680     }
1681     return 0;
1682 }
1683
1684 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
1685                                    AVStream *st, MOVStreamContext *sc)
1686 {
1687     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1688         !st->codec->sample_rate && sc->time_scale > 1)
1689         st->codec->sample_rate = sc->time_scale;
1690
1691     /* special codec parameters handling */
1692     switch (st->codec->codec_id) {
1693 #if CONFIG_DV_DEMUXER
1694     case AV_CODEC_ID_DVAUDIO:
1695         c->dv_fctx  = avformat_alloc_context();
1696         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
1697         if (!c->dv_demux) {
1698             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1699             return AVERROR(ENOMEM);
1700         }
1701         sc->dv_audio_container = 1;
1702         st->codec->codec_id    = AV_CODEC_ID_PCM_S16LE;
1703         break;
1704 #endif
1705     /* no ifdef since parameters are always those */
1706     case AV_CODEC_ID_QCELP:
1707         st->codec->channels = 1;
1708         // force sample rate for qcelp when not stored in mov
1709         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1710             st->codec->sample_rate = 8000;
1711         // FIXME: Why is the following needed for some files?
1712         sc->samples_per_frame = 160;
1713         if (!sc->bytes_per_frame)
1714             sc->bytes_per_frame = 35;
1715         break;
1716     case AV_CODEC_ID_AMR_NB:
1717         st->codec->channels    = 1;
1718         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1719         st->codec->sample_rate = 8000;
1720         break;
1721     case AV_CODEC_ID_AMR_WB:
1722         st->codec->channels    = 1;
1723         st->codec->sample_rate = 16000;
1724         break;
1725     case AV_CODEC_ID_MP2:
1726     case AV_CODEC_ID_MP3:
1727         /* force type after stsd for m1a hdlr */
1728         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1729         st->need_parsing      = AVSTREAM_PARSE_FULL;
1730         break;
1731     case AV_CODEC_ID_GSM:
1732     case AV_CODEC_ID_ADPCM_MS:
1733     case AV_CODEC_ID_ADPCM_IMA_WAV:
1734     case AV_CODEC_ID_ILBC:
1735     case AV_CODEC_ID_MACE3:
1736     case AV_CODEC_ID_MACE6:
1737     case AV_CODEC_ID_QDM2:
1738         st->codec->block_align = sc->bytes_per_frame;
1739         break;
1740     case AV_CODEC_ID_ALAC:
1741         if (st->codec->extradata_size == 36) {
1742             st->codec->channels    = AV_RB8 (st->codec->extradata + 21);
1743             st->codec->sample_rate = AV_RB32(st->codec->extradata + 32);
1744         }
1745         break;
1746     case AV_CODEC_ID_AC3:
1747     case AV_CODEC_ID_EAC3:
1748     case AV_CODEC_ID_MPEG1VIDEO:
1749     case AV_CODEC_ID_VC1:
1750         st->need_parsing = AVSTREAM_PARSE_FULL;
1751         break;
1752     default:
1753         break;
1754     }
1755     return 0;
1756 }
1757
1758 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
1759                                   int codec_tag, int format,
1760                                   int64_t size)
1761 {
1762     int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1763
1764     if (codec_tag &&
1765          (codec_tag != format &&
1766           (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
1767                                  : codec_tag != MKTAG('j','p','e','g')))) {
1768         /* Multiple fourcc, we skip JPEG. This is not correct, we should
1769          * export it as a separate AVStream but this needs a few changes
1770          * in the MOV demuxer, patch welcome. */
1771
1772         av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
1773         avio_skip(pb, size);
1774         return 1;
1775     }
1776     if ( codec_tag == AV_RL32("avc1") ||
1777          codec_tag == AV_RL32("hvc1") ||
1778          codec_tag == AV_RL32("hev1")
1779     )
1780         av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 or H.265 might not play correctly.\n");
1781
1782     return 0;
1783 }
1784
1785 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
1786 {
1787     AVStream *st;
1788     MOVStreamContext *sc;
1789     int pseudo_stream_id;
1790
1791     if (c->fc->nb_streams < 1)
1792         return 0;
1793     st = c->fc->streams[c->fc->nb_streams-1];
1794     sc = st->priv_data;
1795
1796     for (pseudo_stream_id = 0;
1797          pseudo_stream_id < entries && !pb->eof_reached;
1798          pseudo_stream_id++) {
1799         //Parsing Sample description table
1800         enum AVCodecID id;
1801         int ret, dref_id = 1;
1802         MOVAtom a = { AV_RL32("stsd") };
1803         int64_t start_pos = avio_tell(pb);
1804         int64_t size = avio_rb32(pb); /* size */
1805         uint32_t format = avio_rl32(pb); /* data format */
1806
1807         if (size >= 16) {
1808             avio_rb32(pb); /* reserved */
1809             avio_rb16(pb); /* reserved */
1810             dref_id = avio_rb16(pb);
1811         }else if (size <= 7){
1812             av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRId64" in stsd\n", size);
1813             return AVERROR_INVALIDDATA;
1814         }
1815
1816         if (mov_skip_multiple_stsd(c, pb, st->codec->codec_tag, format,
1817                                    size - (avio_tell(pb) - start_pos)))
1818             continue;
1819
1820         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
1821         sc->dref_id= dref_id;
1822
1823         id = mov_codec_id(st, format);
1824
1825         av_dlog(c->fc, "size=%"PRId64" 4CC= %c%c%c%c codec_type=%d\n", size,
1826                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1827                 (format >> 24) & 0xff, st->codec->codec_type);
1828
1829         if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1830             st->codec->codec_id = id;
1831             mov_parse_stsd_video(c, pb, st, sc);
1832         } else if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1833             st->codec->codec_id = id;
1834             mov_parse_stsd_audio(c, pb, st, sc);
1835         } else if (st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1836             st->codec->codec_id = id;
1837             mov_parse_stsd_subtitle(c, pb, st, sc,
1838                                     size - (avio_tell(pb) - start_pos));
1839         } else {
1840             ret = mov_parse_stsd_data(c, pb, st, sc,
1841                                       size - (avio_tell(pb) - start_pos));
1842             if (ret < 0)
1843                 return ret;
1844         }
1845         /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
1846         a.size = size - (avio_tell(pb) - start_pos);
1847         if (a.size > 8) {
1848             if ((ret = mov_read_default(c, pb, a)) < 0)
1849                 return ret;
1850         } else if (a.size > 0)
1851             avio_skip(pb, a.size);
1852     }
1853
1854     if (pb->eof_reached)
1855         return AVERROR_EOF;
1856
1857     return mov_finalize_stsd_codec(c, pb, st, sc);
1858 }
1859
1860 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1861 {
1862     int entries;
1863
1864     avio_r8(pb); /* version */
1865     avio_rb24(pb); /* flags */
1866     entries = avio_rb32(pb);
1867
1868     return ff_mov_read_stsd_entries(c, pb, entries);
1869 }
1870
1871 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1872 {
1873     AVStream *st;
1874     MOVStreamContext *sc;
1875     unsigned int i, entries;
1876
1877     if (c->fc->nb_streams < 1)
1878         return 0;
1879     st = c->fc->streams[c->fc->nb_streams-1];
1880     sc = st->priv_data;
1881
1882     avio_r8(pb); /* version */
1883     avio_rb24(pb); /* flags */
1884
1885     entries = avio_rb32(pb);
1886
1887     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1888
1889     if (!entries)
1890         return 0;
1891     if (sc->stsc_data)
1892         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
1893     av_free(sc->stsc_data);
1894     sc->stsc_count = 0;
1895     sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
1896     if (!sc->stsc_data)
1897         return AVERROR(ENOMEM);
1898
1899     for (i = 0; i < entries && !pb->eof_reached; i++) {
1900         sc->stsc_data[i].first = avio_rb32(pb);
1901         sc->stsc_data[i].count = avio_rb32(pb);
1902         sc->stsc_data[i].id = avio_rb32(pb);
1903     }
1904
1905     sc->stsc_count = i;
1906
1907     if (pb->eof_reached)
1908         return AVERROR_EOF;
1909
1910     return 0;
1911 }
1912
1913 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1914 {
1915     AVStream *st;
1916     MOVStreamContext *sc;
1917     unsigned i, entries;
1918
1919     if (c->fc->nb_streams < 1)
1920         return 0;
1921     st = c->fc->streams[c->fc->nb_streams-1];
1922     sc = st->priv_data;
1923
1924     avio_rb32(pb); // version + flags
1925
1926     entries = avio_rb32(pb);
1927     if (sc->stps_data)
1928         av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
1929     av_free(sc->stps_data);
1930     sc->stps_count = 0;
1931     sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
1932     if (!sc->stps_data)
1933         return AVERROR(ENOMEM);
1934
1935     for (i = 0; i < entries && !pb->eof_reached; i++) {
1936         sc->stps_data[i] = avio_rb32(pb);
1937         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1938     }
1939
1940     sc->stps_count = i;
1941
1942     if (pb->eof_reached)
1943         return AVERROR_EOF;
1944
1945     return 0;
1946 }
1947
1948 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1949 {
1950     AVStream *st;
1951     MOVStreamContext *sc;
1952     unsigned int i, entries;
1953
1954     if (c->fc->nb_streams < 1)
1955         return 0;
1956     st = c->fc->streams[c->fc->nb_streams-1];
1957     sc = st->priv_data;
1958
1959     avio_r8(pb); /* version */
1960     avio_rb24(pb); /* flags */
1961
1962     entries = avio_rb32(pb);
1963
1964     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1965
1966     if (!entries)
1967     {
1968         sc->keyframe_absent = 1;
1969         if (!st->need_parsing && st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1970             st->need_parsing = AVSTREAM_PARSE_HEADERS;
1971         return 0;
1972     }
1973     if (sc->keyframes)
1974         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
1975     if (entries >= UINT_MAX / sizeof(int))
1976         return AVERROR_INVALIDDATA;
1977     av_freep(&sc->keyframes);
1978     sc->keyframe_count = 0;
1979     sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
1980     if (!sc->keyframes)
1981         return AVERROR(ENOMEM);
1982
1983     for (i = 0; i < entries && !pb->eof_reached; i++) {
1984         sc->keyframes[i] = avio_rb32(pb);
1985         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1986     }
1987
1988     sc->keyframe_count = i;
1989
1990     if (pb->eof_reached)
1991         return AVERROR_EOF;
1992
1993     return 0;
1994 }
1995
1996 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1997 {
1998     AVStream *st;
1999     MOVStreamContext *sc;
2000     unsigned int i, entries, sample_size, field_size, num_bytes;
2001     GetBitContext gb;
2002     unsigned char* buf;
2003
2004     if (c->fc->nb_streams < 1)
2005         return 0;
2006     st = c->fc->streams[c->fc->nb_streams-1];
2007     sc = st->priv_data;
2008
2009     avio_r8(pb); /* version */
2010     avio_rb24(pb); /* flags */
2011
2012     if (atom.type == MKTAG('s','t','s','z')) {
2013         sample_size = avio_rb32(pb);
2014         if (!sc->sample_size) /* do not overwrite value computed in stsd */
2015             sc->sample_size = sample_size;
2016         sc->stsz_sample_size = sample_size;
2017         field_size = 32;
2018     } else {
2019         sample_size = 0;
2020         avio_rb24(pb); /* reserved */
2021         field_size = avio_r8(pb);
2022     }
2023     entries = avio_rb32(pb);
2024
2025     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
2026
2027     sc->sample_count = entries;
2028     if (sample_size)
2029         return 0;
2030
2031     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2032         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
2033         return AVERROR_INVALIDDATA;
2034     }
2035
2036     if (!entries)
2037         return 0;
2038     if (entries >= (UINT_MAX - 4) / field_size)
2039         return AVERROR_INVALIDDATA;
2040     if (sc->sample_sizes)
2041         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2042     av_free(sc->sample_sizes);
2043     sc->sample_count = 0;
2044     sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2045     if (!sc->sample_sizes)
2046         return AVERROR(ENOMEM);
2047
2048     num_bytes = (entries*field_size+4)>>3;
2049
2050     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
2051     if (!buf) {
2052         av_freep(&sc->sample_sizes);
2053         return AVERROR(ENOMEM);
2054     }
2055
2056     if (avio_read(pb, buf, num_bytes) < num_bytes) {
2057         av_freep(&sc->sample_sizes);
2058         av_free(buf);
2059         return AVERROR_INVALIDDATA;
2060     }
2061
2062     init_get_bits(&gb, buf, 8*num_bytes);
2063
2064     for (i = 0; i < entries && !pb->eof_reached; i++) {
2065         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2066         sc->data_size += sc->sample_sizes[i];
2067     }
2068
2069     sc->sample_count = i;
2070
2071     if (pb->eof_reached)
2072         return AVERROR_EOF;
2073
2074     av_free(buf);
2075     return 0;
2076 }
2077
2078 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2079 {
2080     AVStream *st;
2081     MOVStreamContext *sc;
2082     unsigned int i, entries;
2083     int64_t duration=0;
2084     int64_t total_sample_count=0;
2085
2086     if (c->fc->nb_streams < 1)
2087         return 0;
2088     st = c->fc->streams[c->fc->nb_streams-1];
2089     sc = st->priv_data;
2090
2091     avio_r8(pb); /* version */
2092     avio_rb24(pb); /* flags */
2093     entries = avio_rb32(pb);
2094
2095     av_dlog(c->fc, "track[%i].stts.entries = %i\n",
2096             c->fc->nb_streams-1, entries);
2097
2098     if (sc->stts_data)
2099         av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2100     av_free(sc->stts_data);
2101     sc->stts_count = 0;
2102     sc->stts_data = av_malloc_array(entries, sizeof(*sc->stts_data));
2103     if (!sc->stts_data)
2104         return AVERROR(ENOMEM);
2105
2106     for (i = 0; i < entries && !pb->eof_reached; i++) {
2107         int sample_duration;
2108         int sample_count;
2109
2110         sample_count=avio_rb32(pb);
2111         sample_duration = avio_rb32(pb);
2112
2113         /* sample_duration < 0 is invalid based on the spec */
2114         if (sample_duration < 0) {
2115             av_log(c->fc, AV_LOG_ERROR, "Invalid SampleDelta %d in STTS, at %d st:%d\n",
2116                    sample_duration, i, c->fc->nb_streams-1);
2117             sample_duration = 1;
2118         }
2119         if (sample_count < 0) {
2120             av_log(c->fc, AV_LOG_ERROR, "Invalid sample_count=%d\n", sample_count);
2121             return AVERROR_INVALIDDATA;
2122         }
2123         sc->stts_data[i].count= sample_count;
2124         sc->stts_data[i].duration= sample_duration;
2125
2126         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",
2127                 sample_count, sample_duration);
2128
2129         if (   i+1 == entries
2130             && i
2131             && sample_count == 1
2132             && total_sample_count > 100
2133             && sample_duration/10 > duration / total_sample_count)
2134             sample_duration = duration / total_sample_count;
2135         duration+=(int64_t)sample_duration*sample_count;
2136         total_sample_count+=sample_count;
2137     }
2138
2139     sc->stts_count = i;
2140
2141     sc->duration_for_fps  += duration;
2142     sc->nb_frames_for_fps += total_sample_count;
2143
2144     if (pb->eof_reached)
2145         return AVERROR_EOF;
2146
2147     st->nb_frames= total_sample_count;
2148     if (duration)
2149         st->duration= duration;
2150     sc->track_end = duration;
2151     return 0;
2152 }
2153
2154 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2155 {
2156     if (duration < 0) {
2157         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2158     }
2159 }
2160
2161 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2162 {
2163     AVStream *st;
2164     MOVStreamContext *sc;
2165     unsigned int i, entries;
2166
2167     if (c->fc->nb_streams < 1)
2168         return 0;
2169     st = c->fc->streams[c->fc->nb_streams-1];
2170     sc = st->priv_data;
2171
2172     avio_r8(pb); /* version */
2173     avio_rb24(pb); /* flags */
2174     entries = avio_rb32(pb);
2175
2176     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
2177
2178     if (!entries)
2179         return 0;
2180     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2181         return AVERROR_INVALIDDATA;
2182     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
2183     if (!sc->ctts_data)
2184         return AVERROR(ENOMEM);
2185
2186     for (i = 0; i < entries && !pb->eof_reached; i++) {
2187         int count    =avio_rb32(pb);
2188         int duration =avio_rb32(pb);
2189
2190         sc->ctts_data[i].count   = count;
2191         sc->ctts_data[i].duration= duration;
2192
2193         av_dlog(c->fc, "count=%d, duration=%d\n",
2194                 count, duration);
2195
2196         if (FFABS(duration) > (1<<28) && i+2<entries) {
2197             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2198             av_freep(&sc->ctts_data);
2199             sc->ctts_count = 0;
2200             return 0;
2201         }
2202
2203         if (i+2<entries)
2204             mov_update_dts_shift(sc, duration);
2205     }
2206
2207     sc->ctts_count = i;
2208
2209     if (pb->eof_reached)
2210         return AVERROR_EOF;
2211
2212     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
2213
2214     return 0;
2215 }
2216
2217 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2218 {
2219     AVStream *st;
2220     MOVStreamContext *sc;
2221     unsigned int i, entries;
2222     uint8_t version;
2223     uint32_t grouping_type;
2224
2225     if (c->fc->nb_streams < 1)
2226         return 0;
2227     st = c->fc->streams[c->fc->nb_streams-1];
2228     sc = st->priv_data;
2229
2230     version = avio_r8(pb); /* version */
2231     avio_rb24(pb); /* flags */
2232     grouping_type = avio_rl32(pb);
2233     if (grouping_type != MKTAG( 'r','a','p',' '))
2234         return 0; /* only support 'rap ' grouping */
2235     if (version == 1)
2236         avio_rb32(pb); /* grouping_type_parameter */
2237
2238     entries = avio_rb32(pb);
2239     if (!entries)
2240         return 0;
2241     if (sc->rap_group)
2242         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
2243     av_free(sc->rap_group);
2244     sc->rap_group_count = 0;
2245     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
2246     if (!sc->rap_group)
2247         return AVERROR(ENOMEM);
2248
2249     for (i = 0; i < entries && !pb->eof_reached; i++) {
2250         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
2251         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
2252     }
2253
2254     sc->rap_group_count = i;
2255
2256     return pb->eof_reached ? AVERROR_EOF : 0;
2257 }
2258
2259 static void mov_build_index(MOVContext *mov, AVStream *st)
2260 {
2261     MOVStreamContext *sc = st->priv_data;
2262     int64_t current_offset;
2263     int64_t current_dts = 0;
2264     unsigned int stts_index = 0;
2265     unsigned int stsc_index = 0;
2266     unsigned int stss_index = 0;
2267     unsigned int stps_index = 0;
2268     unsigned int i, j;
2269     uint64_t stream_size = 0;
2270
2271     if (sc->elst_count) {
2272         int i, edit_start_index = 0, unsupported = 0;
2273         int64_t empty_duration = 0; // empty duration of the first edit list entry
2274         int64_t start_time = 0; // start time of the media
2275
2276         for (i = 0; i < sc->elst_count; i++) {
2277             const MOVElst *e = &sc->elst_data[i];
2278             if (i == 0 && e->time == -1) {
2279                 /* if empty, the first entry is the start time of the stream
2280                  * relative to the presentation itself */
2281                 empty_duration = e->duration;
2282                 edit_start_index = 1;
2283             } else if (i == edit_start_index && e->time >= 0) {
2284                 start_time = e->time;
2285             } else
2286                 unsupported = 1;
2287         }
2288         if (unsupported)
2289             av_log(mov->fc, AV_LOG_WARNING, "multiple edit list entries, "
2290                    "a/v desync might occur, patch welcome\n");
2291
2292         /* adjust first dts according to edit list */
2293         if ((empty_duration || start_time) && mov->time_scale > 0) {
2294             if (empty_duration)
2295                 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
2296             sc->time_offset = start_time - empty_duration;
2297             current_dts = -sc->time_offset;
2298             if (sc->ctts_count>0 && sc->stts_count>0 &&
2299                 sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
2300                 /* more than 16 frames delay, dts are likely wrong
2301                    this happens with files created by iMovie */
2302                 sc->wrong_dts = 1;
2303                 st->codec->has_b_frames = 1;
2304             }
2305         }
2306     }
2307
2308     /* only use old uncompressed audio chunk demuxing when stts specifies it */
2309     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
2310           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
2311         unsigned int current_sample = 0;
2312         unsigned int stts_sample = 0;
2313         unsigned int sample_size;
2314         unsigned int distance = 0;
2315         unsigned int rap_group_index = 0;
2316         unsigned int rap_group_sample = 0;
2317         int rap_group_present = sc->rap_group_count && sc->rap_group;
2318         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
2319
2320         current_dts -= sc->dts_shift;
2321
2322         if (!sc->sample_count || st->nb_index_entries)
2323             return;
2324         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2325             return;
2326         if (av_reallocp_array(&st->index_entries,
2327                               st->nb_index_entries + sc->sample_count,
2328                               sizeof(*st->index_entries)) < 0) {
2329             st->nb_index_entries = 0;
2330             return;
2331         }
2332         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
2333
2334         for (i = 0; i < sc->chunk_count; i++) {
2335             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
2336             current_offset = sc->chunk_offsets[i];
2337             while (stsc_index + 1 < sc->stsc_count &&
2338                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2339                 stsc_index++;
2340
2341             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
2342                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
2343                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
2344                 sc->stsz_sample_size = sc->sample_size;
2345             }
2346             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
2347                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
2348                 sc->stsz_sample_size = sc->sample_size;
2349             }
2350
2351             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
2352                 int keyframe = 0;
2353                 if (current_sample >= sc->sample_count) {
2354                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
2355                     return;
2356                 }
2357
2358                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
2359                     keyframe = 1;
2360                     if (stss_index + 1 < sc->keyframe_count)
2361                         stss_index++;
2362                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
2363                     keyframe = 1;
2364                     if (stps_index + 1 < sc->stps_count)
2365                         stps_index++;
2366                 }
2367                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
2368                     if (sc->rap_group[rap_group_index].index > 0)
2369                         keyframe = 1;
2370                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
2371                         rap_group_sample = 0;
2372                         rap_group_index++;
2373                     }
2374                 }
2375                 if (sc->keyframe_absent
2376                     && !sc->stps_count
2377                     && !rap_group_present
2378                     && (st->codec->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
2379                      keyframe = 1;
2380                 if (keyframe)
2381                     distance = 0;
2382                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
2383                 if (sc->pseudo_stream_id == -1 ||
2384                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
2385                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
2386                     e->pos = current_offset;
2387                     e->timestamp = current_dts;
2388                     e->size = sample_size;
2389                     e->min_distance = distance;
2390                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
2391                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2392                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
2393                             current_offset, current_dts, sample_size, distance, keyframe);
2394                     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
2395                         ff_rfps_add_frame(mov->fc, st, current_dts);
2396                 }
2397
2398                 current_offset += sample_size;
2399                 stream_size += sample_size;
2400                 current_dts += sc->stts_data[stts_index].duration;
2401                 distance++;
2402                 stts_sample++;
2403                 current_sample++;
2404                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
2405                     stts_sample = 0;
2406                     stts_index++;
2407                 }
2408             }
2409         }
2410         if (st->duration > 0)
2411             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
2412     } else {
2413         unsigned chunk_samples, total = 0;
2414
2415         // compute total chunk count
2416         for (i = 0; i < sc->stsc_count; i++) {
2417             unsigned count, chunk_count;
2418
2419             chunk_samples = sc->stsc_data[i].count;
2420             if (i != sc->stsc_count - 1 &&
2421                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
2422                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
2423                 return;
2424             }
2425
2426             if (sc->samples_per_frame >= 160) { // gsm
2427                 count = chunk_samples / sc->samples_per_frame;
2428             } else if (sc->samples_per_frame > 1) {
2429                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
2430                 count = (chunk_samples+samples-1) / samples;
2431             } else {
2432                 count = (chunk_samples+1023) / 1024;
2433             }
2434
2435             if (i < sc->stsc_count - 1)
2436                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
2437             else
2438                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
2439             total += chunk_count * count;
2440         }
2441
2442         av_dlog(mov->fc, "chunk count %d\n", total);
2443         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2444             return;
2445         if (av_reallocp_array(&st->index_entries,
2446                               st->nb_index_entries + total,
2447                               sizeof(*st->index_entries)) < 0) {
2448             st->nb_index_entries = 0;
2449             return;
2450         }
2451         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
2452
2453         // populate index
2454         for (i = 0; i < sc->chunk_count; i++) {
2455             current_offset = sc->chunk_offsets[i];
2456             if (stsc_index + 1 < sc->stsc_count &&
2457                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2458                 stsc_index++;
2459             chunk_samples = sc->stsc_data[stsc_index].count;
2460
2461             while (chunk_samples > 0) {
2462                 AVIndexEntry *e;
2463                 unsigned size, samples;
2464
2465                 if (sc->samples_per_frame >= 160) { // gsm
2466                     samples = sc->samples_per_frame;
2467                     size = sc->bytes_per_frame;
2468                 } else {
2469                     if (sc->samples_per_frame > 1) {
2470                         samples = FFMIN((1024 / sc->samples_per_frame)*
2471                                         sc->samples_per_frame, chunk_samples);
2472                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
2473                     } else {
2474                         samples = FFMIN(1024, chunk_samples);
2475                         size = samples * sc->sample_size;
2476                     }
2477                 }
2478
2479                 if (st->nb_index_entries >= total) {
2480                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
2481                     return;
2482                 }
2483                 e = &st->index_entries[st->nb_index_entries++];
2484                 e->pos = current_offset;
2485                 e->timestamp = current_dts;
2486                 e->size = size;
2487                 e->min_distance = 0;
2488                 e->flags = AVINDEX_KEYFRAME;
2489                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
2490                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
2491                         size, samples);
2492
2493                 current_offset += size;
2494                 current_dts += samples;
2495                 chunk_samples -= samples;
2496             }
2497         }
2498     }
2499 }
2500
2501 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref,
2502                          AVIOInterruptCB *int_cb, int use_absolute_path, AVFormatContext *fc)
2503 {
2504     /* try relative path, we do not try the absolute because it can leak information about our
2505        system to an attacker */
2506     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
2507         char filename[1024];
2508         const char *src_path;
2509         int i, l;
2510
2511         /* find a source dir */
2512         src_path = strrchr(src, '/');
2513         if (src_path)
2514             src_path++;
2515         else
2516             src_path = src;
2517
2518         /* find a next level down to target */
2519         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
2520             if (ref->path[l] == '/') {
2521                 if (i == ref->nlvl_to - 1)
2522                     break;
2523                 else
2524                     i++;
2525             }
2526
2527         /* compose filename if next level down to target was found */
2528         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
2529             memcpy(filename, src, src_path - src);
2530             filename[src_path - src] = 0;
2531
2532             for (i = 1; i < ref->nlvl_from; i++)
2533                 av_strlcat(filename, "../", 1024);
2534
2535             av_strlcat(filename, ref->path + l + 1, 1024);
2536
2537             if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL))
2538                 return 0;
2539         }
2540     } else if (use_absolute_path) {
2541         av_log(fc, AV_LOG_WARNING, "Using absolute path on user request, "
2542                "this is a possible security issue\n");
2543         if (!avio_open2(pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
2544             return 0;
2545     }
2546
2547     return AVERROR(ENOENT);
2548 }
2549
2550 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
2551 {
2552     if (sc->time_scale <= 0) {
2553         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
2554         sc->time_scale = c->time_scale;
2555         if (sc->time_scale <= 0)
2556             sc->time_scale = 1;
2557     }
2558 }
2559
2560 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2561 {
2562     AVStream *st;
2563     MOVStreamContext *sc;
2564     int ret;
2565
2566     st = avformat_new_stream(c->fc, NULL);
2567     if (!st) return AVERROR(ENOMEM);
2568     st->id = c->fc->nb_streams;
2569     sc = av_mallocz(sizeof(MOVStreamContext));
2570     if (!sc) return AVERROR(ENOMEM);
2571
2572     st->priv_data = sc;
2573     st->codec->codec_type = AVMEDIA_TYPE_DATA;
2574     sc->ffindex = st->index;
2575
2576     if ((ret = mov_read_default(c, pb, atom)) < 0)
2577         return ret;
2578
2579     /* sanity checks */
2580     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
2581                             (!sc->sample_size && !sc->sample_count))) {
2582         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
2583                st->index);
2584         return 0;
2585     }
2586
2587     fix_timescale(c, sc);
2588
2589     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
2590
2591     mov_build_index(c, st);
2592
2593     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
2594         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
2595         if (mov_open_dref(&sc->pb, c->fc->filename, dref, &c->fc->interrupt_callback,
2596             c->use_absolute_path, c->fc) < 0)
2597             av_log(c->fc, AV_LOG_ERROR,
2598                    "stream %d, error opening alias: path='%s', dir='%s', "
2599                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2600                    st->index, dref->path, dref->dir, dref->filename,
2601                    dref->volume, dref->nlvl_from, dref->nlvl_to);
2602     } else {
2603         sc->pb = c->fc->pb;
2604         sc->pb_is_copied = 1;
2605     }
2606
2607     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2608         if (!st->sample_aspect_ratio.num &&
2609             (st->codec->width != sc->width || st->codec->height != sc->height)) {
2610             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
2611                                              ((double)st->codec->width * sc->height), INT_MAX);
2612         }
2613
2614 #if FF_API_R_FRAME_RATE
2615         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
2616             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
2617                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
2618 #endif
2619     }
2620
2621     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
2622     if (!st->codec->extradata_size && st->codec->codec_id == AV_CODEC_ID_H264 &&
2623         TAG_IS_AVCI(st->codec->codec_tag)) {
2624         ret = ff_generate_avci_extradata(st);
2625         if (ret < 0)
2626             return ret;
2627     }
2628
2629     switch (st->codec->codec_id) {
2630 #if CONFIG_H261_DECODER
2631     case AV_CODEC_ID_H261:
2632 #endif
2633 #if CONFIG_H263_DECODER
2634     case AV_CODEC_ID_H263:
2635 #endif
2636 #if CONFIG_MPEG4_DECODER
2637     case AV_CODEC_ID_MPEG4:
2638 #endif
2639         st->codec->width = 0; /* let decoder init width/height */
2640         st->codec->height= 0;
2641         break;
2642     }
2643
2644     /* Do not need those anymore. */
2645     av_freep(&sc->chunk_offsets);
2646     av_freep(&sc->stsc_data);
2647     av_freep(&sc->sample_sizes);
2648     av_freep(&sc->keyframes);
2649     av_freep(&sc->stts_data);
2650     av_freep(&sc->stps_data);
2651     av_freep(&sc->elst_data);
2652     av_freep(&sc->rap_group);
2653
2654     return 0;
2655 }
2656
2657 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2658 {
2659     int ret;
2660     c->itunes_metadata = 1;
2661     ret = mov_read_default(c, pb, atom);
2662     c->itunes_metadata = 0;
2663     return ret;
2664 }
2665
2666 static int mov_read_custom_2plus(MOVContext *c, AVIOContext *pb, int size)
2667 {
2668     int64_t end = avio_tell(pb) + size;
2669     uint8_t *key = NULL, *val = NULL;
2670     int i;
2671     AVStream *st;
2672     MOVStreamContext *sc;
2673
2674     if (c->fc->nb_streams < 1)
2675         return 0;
2676     st = c->fc->streams[c->fc->nb_streams-1];
2677     sc = st->priv_data;
2678
2679     for (i = 0; i < 2; i++) {
2680         uint8_t **p;
2681         uint32_t len, tag;
2682
2683         if (end - avio_tell(pb) <= 12)
2684             break;
2685
2686         len = avio_rb32(pb);
2687         tag = avio_rl32(pb);
2688         avio_skip(pb, 4); // flags
2689
2690         if (len < 12 || len - 12 > end - avio_tell(pb))
2691             break;
2692         len -= 12;
2693
2694         if (tag == MKTAG('n', 'a', 'm', 'e'))
2695             p = &key;
2696         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
2697             avio_skip(pb, 4);
2698             len -= 4;
2699             p = &val;
2700         } else
2701             break;
2702
2703         *p = av_malloc(len + 1);
2704         if (!*p)
2705             break;
2706         avio_read(pb, *p, len);
2707         (*p)[len] = 0;
2708     }
2709
2710     if (key && val) {
2711         if (strcmp(key, "iTunSMPB") == 0) {
2712             int priming, remainder, samples;
2713             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
2714                 if(priming>0 && priming<16384)
2715                     sc->start_pad = priming;
2716             }
2717         }
2718         if (strcmp(key, "cdec") != 0) {
2719             av_dict_set(&c->fc->metadata, key, val,
2720                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
2721             key = val = NULL;
2722         }
2723     }
2724
2725     avio_seek(pb, end, SEEK_SET);
2726     av_freep(&key);
2727     av_freep(&val);
2728     return 0;
2729 }
2730
2731 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2732 {
2733     int64_t end = avio_tell(pb) + atom.size;
2734     uint32_t tag, len;
2735
2736     if (atom.size < 8)
2737         goto fail;
2738
2739     len = avio_rb32(pb);
2740     tag = avio_rl32(pb);
2741
2742     if (len > atom.size)
2743         goto fail;
2744
2745     if (tag == MKTAG('m', 'e', 'a', 'n') && len > 12) {
2746         uint8_t domain[128];
2747         int domain_len;
2748
2749         avio_skip(pb, 4); // flags
2750         len -= 12;
2751
2752         domain_len = avio_get_str(pb, len, domain, sizeof(domain));
2753         avio_skip(pb, len - domain_len);
2754         return mov_read_custom_2plus(c, pb, end - avio_tell(pb));
2755     }
2756
2757 fail:
2758     av_log(c->fc, AV_LOG_VERBOSE,
2759            "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
2760     return 0;
2761 }
2762
2763 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2764 {
2765     while (atom.size > 8) {
2766         uint32_t tag = avio_rl32(pb);
2767         atom.size -= 4;
2768         if (tag == MKTAG('h','d','l','r')) {
2769             avio_seek(pb, -8, SEEK_CUR);
2770             atom.size += 8;
2771             return mov_read_default(c, pb, atom);
2772         }
2773     }
2774     return 0;
2775 }
2776
2777 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2778 {
2779     int i;
2780     int width;
2781     int height;
2782     int64_t disp_transform[2];
2783     int display_matrix[3][3];
2784     AVStream *st;
2785     MOVStreamContext *sc;
2786     int version;
2787     int flags;
2788
2789     if (c->fc->nb_streams < 1)
2790         return 0;
2791     st = c->fc->streams[c->fc->nb_streams-1];
2792     sc = st->priv_data;
2793
2794     version = avio_r8(pb);
2795     flags = avio_rb24(pb);
2796     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
2797
2798     if (version == 1) {
2799         avio_rb64(pb);
2800         avio_rb64(pb);
2801     } else {
2802         avio_rb32(pb); /* creation time */
2803         avio_rb32(pb); /* modification time */
2804     }
2805     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
2806     avio_rb32(pb); /* reserved */
2807
2808     /* highlevel (considering edits) duration in movie timebase */
2809     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
2810     avio_rb32(pb); /* reserved */
2811     avio_rb32(pb); /* reserved */
2812
2813     avio_rb16(pb); /* layer */
2814     avio_rb16(pb); /* alternate group */
2815     avio_rb16(pb); /* volume */
2816     avio_rb16(pb); /* reserved */
2817
2818     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2819     // they're kept in fixed point format through all calculations
2820     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
2821     // side data, but the scale factor is not needed to calculate aspect ratio
2822     for (i = 0; i < 3; i++) {
2823         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
2824         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
2825         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
2826     }
2827
2828     width = avio_rb32(pb);       // 16.16 fixed point track width
2829     height = avio_rb32(pb);      // 16.16 fixed point track height
2830     sc->width = width >> 16;
2831     sc->height = height >> 16;
2832
2833     // save the matrix and add rotate metadata when it is not the default
2834     // identity
2835     if (display_matrix[0][0] != (1 << 16) ||
2836         display_matrix[1][1] != (1 << 16) ||
2837         display_matrix[2][2] != (1 << 30) ||
2838         display_matrix[0][1] || display_matrix[0][2] ||
2839         display_matrix[1][0] || display_matrix[1][2] ||
2840         display_matrix[2][0] || display_matrix[2][1]) {
2841         int i, j;
2842         double rotate;
2843
2844         av_freep(&sc->display_matrix);
2845         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
2846         if (!sc->display_matrix)
2847             return AVERROR(ENOMEM);
2848
2849         for (i = 0; i < 3; i++)
2850             for (j = 0; j < 3; j++)
2851                 sc->display_matrix[i * 3 + j] = display_matrix[j][i];
2852
2853         rotate = av_display_rotation_get(sc->display_matrix);
2854         if (!isnan(rotate)) {
2855             char rotate_buf[64];
2856             rotate = -rotate;
2857             if (rotate < 0) // for backward compatibility
2858                 rotate += 360;
2859             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
2860             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
2861         }
2862     }
2863
2864     // transform the display width/height according to the matrix
2865     // skip this if the display matrix is the default identity matrix
2866     // or if it is rotating the picture, ex iPhone 3GS
2867     // to keep the same scale, use [width height 1<<16]
2868     if (width && height &&
2869         ((display_matrix[0][0] != 65536  ||
2870           display_matrix[1][1] != 65536) &&
2871          !display_matrix[0][1] &&
2872          !display_matrix[1][0] &&
2873          !display_matrix[2][0] && !display_matrix[2][1])) {
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','r','e','f'), mov_read_dref },
3367 { MKTAG('e','d','t','s'), mov_read_default },
3368 { MKTAG('e','l','s','t'), mov_read_elst },
3369 { MKTAG('e','n','d','a'), mov_read_enda },
3370 { MKTAG('f','i','e','l'), mov_read_fiel },
3371 { MKTAG('f','t','y','p'), mov_read_ftyp },
3372 { MKTAG('g','l','b','l'), mov_read_glbl },
3373 { MKTAG('h','d','l','r'), mov_read_hdlr },
3374 { MKTAG('i','l','s','t'), mov_read_ilst },
3375 { MKTAG('j','p','2','h'), mov_read_jp2h },
3376 { MKTAG('m','d','a','t'), mov_read_mdat },
3377 { MKTAG('m','d','h','d'), mov_read_mdhd },
3378 { MKTAG('m','d','i','a'), mov_read_default },
3379 { MKTAG('m','e','t','a'), mov_read_meta },
3380 { MKTAG('m','i','n','f'), mov_read_default },
3381 { MKTAG('m','o','o','f'), mov_read_moof },
3382 { MKTAG('m','o','o','v'), mov_read_moov },
3383 { MKTAG('m','v','e','x'), mov_read_default },
3384 { MKTAG('m','v','h','d'), mov_read_mvhd },
3385 { MKTAG('S','M','I',' '), mov_read_svq3 },
3386 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
3387 { MKTAG('a','v','c','C'), mov_read_glbl },
3388 { MKTAG('p','a','s','p'), mov_read_pasp },
3389 { MKTAG('s','t','b','l'), mov_read_default },
3390 { MKTAG('s','t','c','o'), mov_read_stco },
3391 { MKTAG('s','t','p','s'), mov_read_stps },
3392 { MKTAG('s','t','r','f'), mov_read_strf },
3393 { MKTAG('s','t','s','c'), mov_read_stsc },
3394 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
3395 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
3396 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
3397 { MKTAG('s','t','t','s'), mov_read_stts },
3398 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
3399 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
3400 { MKTAG('t','f','d','t'), mov_read_tfdt },
3401 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
3402 { MKTAG('t','r','a','k'), mov_read_trak },
3403 { MKTAG('t','r','a','f'), mov_read_default },
3404 { MKTAG('t','r','e','f'), mov_read_default },
3405 { MKTAG('t','m','c','d'), mov_read_tmcd },
3406 { MKTAG('c','h','a','p'), mov_read_chap },
3407 { MKTAG('t','r','e','x'), mov_read_trex },
3408 { MKTAG('t','r','u','n'), mov_read_trun },
3409 { MKTAG('u','d','t','a'), mov_read_default },
3410 { MKTAG('w','a','v','e'), mov_read_wave },
3411 { MKTAG('e','s','d','s'), mov_read_esds },
3412 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
3413 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
3414 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
3415 { MKTAG('w','f','e','x'), mov_read_wfex },
3416 { MKTAG('c','m','o','v'), mov_read_cmov },
3417 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
3418 { MKTAG('d','v','c','1'), mov_read_dvc1 },
3419 { MKTAG('s','b','g','p'), mov_read_sbgp },
3420 { MKTAG('h','v','c','C'), mov_read_glbl },
3421 { MKTAG('u','u','i','d'), mov_read_uuid },
3422 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
3423 { MKTAG('f','r','e','e'), mov_read_free },
3424 { MKTAG('-','-','-','-'), mov_read_custom },
3425 { 0, NULL }
3426 };
3427
3428 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3429 {
3430     int64_t total_size = 0;
3431     MOVAtom a;
3432     int i;
3433
3434     if (c->atom_depth > 10) {
3435         av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
3436         return AVERROR_INVALIDDATA;
3437     }
3438     c->atom_depth ++;
3439
3440     if (atom.size < 0)
3441         atom.size = INT64_MAX;
3442     while (total_size + 8 <= atom.size && !avio_feof(pb)) {
3443         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
3444         a.size = atom.size;
3445         a.type=0;
3446         if (atom.size >= 8) {
3447             a.size = avio_rb32(pb);
3448             a.type = avio_rl32(pb);
3449             if (a.type == MKTAG('f','r','e','e') &&
3450                 a.size >= 8 &&
3451                 c->moov_retry) {
3452                 uint8_t buf[8];
3453                 uint32_t *type = (uint32_t *)buf + 1;
3454                 avio_read(pb, buf, 8);
3455                 avio_seek(pb, -8, SEEK_CUR);
3456                 if (*type == MKTAG('m','v','h','d') ||
3457                     *type == MKTAG('c','m','o','v')) {
3458                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
3459                     a.type = MKTAG('m','o','o','v');
3460                 }
3461             }
3462             if (atom.type != MKTAG('r','o','o','t') &&
3463                 atom.type != MKTAG('m','o','o','v'))
3464             {
3465                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
3466                 {
3467                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
3468                     avio_skip(pb, -8);
3469                     c->atom_depth --;
3470                     return 0;
3471                 }
3472             }
3473             total_size += 8;
3474             if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
3475                 a.size = avio_rb64(pb) - 8;
3476                 total_size += 8;
3477             }
3478         }
3479         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
3480                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
3481         if (a.size == 0) {
3482             a.size = atom.size - total_size + 8;
3483         }
3484         a.size -= 8;
3485         if (a.size < 0)
3486             break;
3487         a.size = FFMIN(a.size, atom.size - total_size);
3488
3489         for (i = 0; mov_default_parse_table[i].type; i++)
3490             if (mov_default_parse_table[i].type == a.type) {
3491                 parse = mov_default_parse_table[i].parse;
3492                 break;
3493             }
3494
3495         // container is user data
3496         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
3497                        atom.type == MKTAG('i','l','s','t')))
3498             parse = mov_read_udta_string;
3499
3500         if (!parse) { /* skip leaf atoms data */
3501             avio_skip(pb, a.size);
3502         } else {
3503             int64_t start_pos = avio_tell(pb);
3504             int64_t left;
3505             int err = parse(c, pb, a);
3506             if (err < 0) {
3507                 c->atom_depth --;
3508                 return err;
3509             }
3510             if (c->found_moov && c->found_mdat &&
3511                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX) ||
3512                  start_pos + a.size == avio_size(pb))) {
3513                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX)
3514                     c->next_root_atom = start_pos + a.size;
3515                 c->atom_depth --;
3516                 return 0;
3517             }
3518             left = a.size - avio_tell(pb) + start_pos;
3519             if (left > 0) /* skip garbage at atom end */
3520                 avio_skip(pb, left);
3521             else if (left < 0) {
3522                 av_log(c->fc, AV_LOG_WARNING,
3523                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
3524                        (char*)&a.type, -left);
3525                 avio_seek(pb, left, SEEK_CUR);
3526             }
3527         }
3528
3529         total_size += a.size;
3530     }
3531
3532     if (total_size < atom.size && atom.size < 0x7ffff)
3533         avio_skip(pb, atom.size - total_size);
3534
3535     c->atom_depth --;
3536     return 0;
3537 }
3538
3539 static int mov_probe(AVProbeData *p)
3540 {
3541     int64_t offset;
3542     uint32_t tag;
3543     int score = 0;
3544     int moov_offset = -1;
3545
3546     /* check file header */
3547     offset = 0;
3548     for (;;) {
3549         /* ignore invalid offset */
3550         if ((offset + 8) > (unsigned int)p->buf_size)
3551             break;
3552         tag = AV_RL32(p->buf + offset + 4);
3553         switch(tag) {
3554         /* check for obvious tags */
3555         case MKTAG('m','o','o','v'):
3556             moov_offset = offset + 4;
3557         case MKTAG('m','d','a','t'):
3558         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
3559         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
3560         case MKTAG('f','t','y','p'):
3561             if (AV_RB32(p->buf+offset) < 8 &&
3562                 (AV_RB32(p->buf+offset) != 1 ||
3563                  offset + 12 > (unsigned int)p->buf_size ||
3564                  AV_RB64(p->buf+offset + 8) == 0)) {
3565                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3566             } else if (tag == MKTAG('f','t','y','p') &&
3567                        AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')) {
3568                 score = FFMAX(score, 5);
3569             } else {
3570                 score = AVPROBE_SCORE_MAX;
3571             }
3572             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3573             break;
3574         /* those are more common words, so rate then a bit less */
3575         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
3576         case MKTAG('w','i','d','e'):
3577         case MKTAG('f','r','e','e'):
3578         case MKTAG('j','u','n','k'):
3579         case MKTAG('p','i','c','t'):
3580             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
3581             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3582             break;
3583         case MKTAG(0x82,0x82,0x7f,0x7d):
3584         case MKTAG('s','k','i','p'):
3585         case MKTAG('u','u','i','d'):
3586         case MKTAG('p','r','f','l'):
3587             /* if we only find those cause probedata is too small at least rate them */
3588             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3589             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3590             break;
3591         default:
3592             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3593         }
3594     }
3595     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
3596         /* moov atom in the header - we should make sure that this is not a
3597          * MOV-packed MPEG-PS */
3598         offset = moov_offset;
3599
3600         while(offset < (p->buf_size - 16)){ /* Sufficient space */
3601                /* We found an actual hdlr atom */
3602             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
3603                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
3604                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
3605                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
3606                 /* We found a media handler reference atom describing an
3607                  * MPEG-PS-in-MOV, return a
3608                  * low score to force expanding the probe window until
3609                  * mpegps_probe finds what it needs */
3610                 return 5;
3611             }else
3612                 /* Keep looking */
3613                 offset+=2;
3614         }
3615     }
3616
3617     return score;
3618 }
3619
3620 // must be done after parsing all trak because there's no order requirement
3621 static void mov_read_chapters(AVFormatContext *s)
3622 {
3623     MOVContext *mov = s->priv_data;
3624     AVStream *st = NULL;
3625     MOVStreamContext *sc;
3626     int64_t cur_pos;
3627     int i;
3628
3629     for (i = 0; i < s->nb_streams; i++)
3630         if (s->streams[i]->id == mov->chapter_track) {
3631             st = s->streams[i];
3632             break;
3633         }
3634     if (!st) {
3635         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
3636         return;
3637     }
3638
3639     st->discard = AVDISCARD_ALL;
3640     sc = st->priv_data;
3641     cur_pos = avio_tell(sc->pb);
3642
3643     for (i = 0; i < st->nb_index_entries; i++) {
3644         AVIndexEntry *sample = &st->index_entries[i];
3645         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
3646         uint8_t *title;
3647         uint16_t ch;
3648         int len, title_len;
3649
3650         if (end < sample->timestamp) {
3651             av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
3652             end = AV_NOPTS_VALUE;
3653         }
3654
3655         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
3656             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
3657             goto finish;
3658         }
3659
3660         // the first two bytes are the length of the title
3661         len = avio_rb16(sc->pb);
3662         if (len > sample->size-2)
3663             continue;
3664         title_len = 2*len + 1;
3665         if (!(title = av_mallocz(title_len)))
3666             goto finish;
3667
3668         // The samples could theoretically be in any encoding if there's an encd
3669         // atom following, but in practice are only utf-8 or utf-16, distinguished
3670         // instead by the presence of a BOM
3671         if (!len) {
3672             title[0] = 0;
3673         } else {
3674             ch = avio_rb16(sc->pb);
3675             if (ch == 0xfeff)
3676                 avio_get_str16be(sc->pb, len, title, title_len);
3677             else if (ch == 0xfffe)
3678                 avio_get_str16le(sc->pb, len, title, title_len);
3679             else {
3680                 AV_WB16(title, ch);
3681                 if (len == 1 || len == 2)
3682                     title[len] = 0;
3683                 else
3684                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
3685             }
3686         }
3687
3688         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
3689         av_freep(&title);
3690     }
3691 finish:
3692     avio_seek(sc->pb, cur_pos, SEEK_SET);
3693 }
3694
3695 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
3696                                              uint32_t value, int flags)
3697 {
3698     AVTimecode tc;
3699     char buf[AV_TIMECODE_STR_SIZE];
3700     AVRational rate = {st->codec->time_base.den,
3701                        st->codec->time_base.num};
3702     int ret = av_timecode_init(&tc, rate, flags, 0, s);
3703     if (ret < 0)
3704         return ret;
3705     av_dict_set(&st->metadata, "timecode",
3706                 av_timecode_make_string(&tc, buf, value), 0);
3707     return 0;
3708 }
3709
3710 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
3711 {
3712     MOVStreamContext *sc = st->priv_data;
3713     int flags = 0;
3714     int64_t cur_pos = avio_tell(sc->pb);
3715     uint32_t value;
3716
3717     if (!st->nb_index_entries)
3718         return -1;
3719
3720     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
3721     value = avio_rb32(s->pb);
3722
3723     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
3724     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
3725     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
3726
3727     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
3728      * not the case) and thus assume "frame number format" instead of QT one.
3729      * No sample with tmcd track can be found with a QT timecode at the moment,
3730      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
3731      * format). */
3732     parse_timecode_in_framenum_format(s, st, value, flags);
3733
3734     avio_seek(sc->pb, cur_pos, SEEK_SET);
3735     return 0;
3736 }
3737
3738 static int mov_read_close(AVFormatContext *s)
3739 {
3740     MOVContext *mov = s->priv_data;
3741     int i, j;
3742
3743     for (i = 0; i < s->nb_streams; i++) {
3744         AVStream *st = s->streams[i];
3745         MOVStreamContext *sc = st->priv_data;
3746
3747         av_freep(&sc->ctts_data);
3748         for (j = 0; j < sc->drefs_count; j++) {
3749             av_freep(&sc->drefs[j].path);
3750             av_freep(&sc->drefs[j].dir);
3751         }
3752         av_freep(&sc->drefs);
3753
3754         sc->drefs_count = 0;
3755
3756         if (!sc->pb_is_copied)
3757             avio_close(sc->pb);
3758
3759         sc->pb = NULL;
3760         av_freep(&sc->chunk_offsets);
3761         av_freep(&sc->stsc_data);
3762         av_freep(&sc->sample_sizes);
3763         av_freep(&sc->keyframes);
3764         av_freep(&sc->stts_data);
3765         av_freep(&sc->stps_data);
3766         av_freep(&sc->elst_data);
3767         av_freep(&sc->rap_group);
3768         av_freep(&sc->display_matrix);
3769     }
3770
3771     if (mov->dv_demux) {
3772         avformat_free_context(mov->dv_fctx);
3773         mov->dv_fctx = NULL;
3774     }
3775
3776     av_freep(&mov->trex_data);
3777     av_freep(&mov->bitrates);
3778
3779     for (i = 0; i < mov->fragment_index_count; i++) {
3780         MOVFragmentIndex* index = mov->fragment_index_data[i];
3781         av_freep(&index->items);
3782         av_freep(&mov->fragment_index_data[i]);
3783     }
3784     av_freep(&mov->fragment_index_data);
3785
3786     return 0;
3787 }
3788
3789 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
3790 {
3791     int i;
3792
3793     for (i = 0; i < s->nb_streams; i++) {
3794         AVStream *st = s->streams[i];
3795         MOVStreamContext *sc = st->priv_data;
3796
3797         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
3798             sc->timecode_track == tmcd_id)
3799             return 1;
3800     }
3801     return 0;
3802 }
3803
3804 /* look for a tmcd track not referenced by any video track, and export it globally */
3805 static void export_orphan_timecode(AVFormatContext *s)
3806 {
3807     int i;
3808
3809     for (i = 0; i < s->nb_streams; i++) {
3810         AVStream *st = s->streams[i];
3811
3812         if (st->codec->codec_tag  == MKTAG('t','m','c','d') &&
3813             !tmcd_is_referenced(s, i + 1)) {
3814             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
3815             if (tcr) {
3816                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
3817                 break;
3818             }
3819         }
3820     }
3821 }
3822
3823 static int read_tfra(MOVContext *mov, AVIOContext *f)
3824 {
3825     MOVFragmentIndex* index = NULL;
3826     int version, fieldlength, i, j;
3827     int64_t pos = avio_tell(f);
3828     uint32_t size = avio_rb32(f);
3829     void *tmp;
3830
3831     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
3832         return 1;
3833     }
3834     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
3835     index = av_mallocz(sizeof(MOVFragmentIndex));
3836     if (!index) {
3837         return AVERROR(ENOMEM);
3838     }
3839
3840     tmp = av_realloc_array(mov->fragment_index_data,
3841                            mov->fragment_index_count + 1,
3842                            sizeof(MOVFragmentIndex*));
3843     if (!tmp) {
3844         av_freep(&index);
3845         return AVERROR(ENOMEM);
3846     }
3847     mov->fragment_index_data = tmp;
3848     mov->fragment_index_data[mov->fragment_index_count++] = index;
3849
3850     version = avio_r8(f);
3851     avio_rb24(f);
3852     index->track_id = avio_rb32(f);
3853     fieldlength = avio_rb32(f);
3854     index->item_count = avio_rb32(f);
3855     index->items = av_mallocz_array(
3856             index->item_count, sizeof(MOVFragmentIndexItem));
3857     if (!index->items) {
3858         index->item_count = 0;
3859         return AVERROR(ENOMEM);
3860     }
3861     for (i = 0; i < index->item_count; i++) {
3862         int64_t time, offset;
3863         if (version == 1) {
3864             time   = avio_rb64(f);
3865             offset = avio_rb64(f);
3866         } else {
3867             time   = avio_rb32(f);
3868             offset = avio_rb32(f);
3869         }
3870         index->items[i].time = time;
3871         index->items[i].moof_offset = offset;
3872         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
3873             avio_r8(f);
3874         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
3875             avio_r8(f);
3876         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
3877             avio_r8(f);
3878     }
3879
3880     avio_seek(f, pos + size, SEEK_SET);
3881     return 0;
3882 }
3883
3884 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
3885 {
3886     int64_t stream_size = avio_size(f);
3887     int64_t original_pos = avio_tell(f);
3888     int64_t seek_ret;
3889     int32_t mfra_size;
3890     int ret = -1;
3891     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
3892         ret = seek_ret;
3893         goto fail;
3894     }
3895     mfra_size = avio_rb32(f);
3896     if (mfra_size < 0 || mfra_size > stream_size) {
3897         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
3898         goto fail;
3899     }
3900     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
3901         ret = seek_ret;
3902         goto fail;
3903     }
3904     if (avio_rb32(f) != mfra_size) {
3905         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
3906         goto fail;
3907     }
3908     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
3909         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
3910         goto fail;
3911     }
3912     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
3913     do {
3914         ret = read_tfra(c, f);
3915         if (ret < 0)
3916             goto fail;
3917     } while (!ret);
3918     ret = 0;
3919 fail:
3920     seek_ret = avio_seek(f, original_pos, SEEK_SET);
3921     if (seek_ret < 0) {
3922         av_log(c->fc, AV_LOG_ERROR,
3923                "failed to seek back after looking for mfra\n");
3924         ret = seek_ret;
3925     }
3926     return ret;
3927 }
3928
3929 static int mov_read_header(AVFormatContext *s)
3930 {
3931     MOVContext *mov = s->priv_data;
3932     AVIOContext *pb = s->pb;
3933     int j, err;
3934     MOVAtom atom = { AV_RL32("root") };
3935     int i;
3936
3937     mov->fc = s;
3938     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
3939     if (pb->seekable)
3940         atom.size = avio_size(pb);
3941     else
3942         atom.size = INT64_MAX;
3943
3944     /* check MOV header */
3945     do {
3946     if (mov->moov_retry)
3947         avio_seek(pb, 0, SEEK_SET);
3948     if ((err = mov_read_default(mov, pb, atom)) < 0) {
3949         av_log(s, AV_LOG_ERROR, "error reading header\n");
3950         mov_read_close(s);
3951         return err;
3952     }
3953     } while (pb->seekable && !mov->found_moov && !mov->moov_retry++);
3954     if (!mov->found_moov) {
3955         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
3956         mov_read_close(s);
3957         return AVERROR_INVALIDDATA;
3958     }
3959     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
3960
3961     if (pb->seekable) {
3962         if (mov->chapter_track > 0)
3963             mov_read_chapters(s);
3964         for (i = 0; i < s->nb_streams; i++)
3965             if (s->streams[i]->codec->codec_tag == AV_RL32("tmcd"))
3966                 mov_read_timecode_track(s, s->streams[i]);
3967     }
3968
3969     /* copy timecode metadata from tmcd tracks to the related video streams */
3970     for (i = 0; i < s->nb_streams; i++) {
3971         AVStream *st = s->streams[i];
3972         MOVStreamContext *sc = st->priv_data;
3973         if (sc->timecode_track > 0) {
3974             AVDictionaryEntry *tcr;
3975             int tmcd_st_id = -1;
3976
3977             for (j = 0; j < s->nb_streams; j++)
3978                 if (s->streams[j]->id == sc->timecode_track)
3979                     tmcd_st_id = j;
3980
3981             if (tmcd_st_id < 0 || tmcd_st_id == i)
3982                 continue;
3983             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
3984             if (tcr)
3985                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
3986         }
3987     }
3988     export_orphan_timecode(s);
3989
3990     for (i = 0; i < s->nb_streams; i++) {
3991         AVStream *st = s->streams[i];
3992         MOVStreamContext *sc = st->priv_data;
3993         fix_timescale(mov, sc);
3994         if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) {
3995             st->skip_samples = sc->start_pad;
3996         }
3997         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
3998             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
3999                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
4000         if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
4001             if (st->codec->width <= 0 || st->codec->height <= 0) {
4002                 st->codec->width  = sc->width;
4003                 st->codec->height = sc->height;
4004             }
4005             if (st->codec->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
4006                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
4007                     return err;
4008             }
4009         }
4010     }
4011
4012     if (mov->trex_data) {
4013         for (i = 0; i < s->nb_streams; i++) {
4014             AVStream *st = s->streams[i];
4015             MOVStreamContext *sc = st->priv_data;
4016             if (st->duration > 0)
4017                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
4018         }
4019     }
4020
4021     if (mov->use_mfra_for > 0) {
4022         for (i = 0; i < s->nb_streams; i++) {
4023             AVStream *st = s->streams[i];
4024             MOVStreamContext *sc = st->priv_data;
4025             if (sc->duration_for_fps > 0) {
4026                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale /
4027                     sc->duration_for_fps;
4028             }
4029         }
4030     }
4031
4032     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
4033         if (mov->bitrates[i]) {
4034             s->streams[i]->codec->bit_rate = mov->bitrates[i];
4035         }
4036     }
4037
4038     ff_rfps_calculate(s);
4039
4040     for (i = 0; i < s->nb_streams; i++) {
4041         AVStream *st = s->streams[i];
4042         MOVStreamContext *sc = st->priv_data;
4043
4044         switch (st->codec->codec_type) {
4045         case AVMEDIA_TYPE_AUDIO:
4046             err = ff_replaygain_export(st, s->metadata);
4047             if (err < 0) {
4048                 mov_read_close(s);
4049                 return err;
4050             }
4051             break;
4052         case AVMEDIA_TYPE_VIDEO:
4053             if (sc->display_matrix) {
4054                 AVPacketSideData *sd, *tmp;
4055
4056                 tmp = av_realloc_array(st->side_data,
4057                                        st->nb_side_data + 1, sizeof(*tmp));
4058                 if (!tmp)
4059                     return AVERROR(ENOMEM);
4060
4061                 st->side_data = tmp;
4062                 st->nb_side_data++;
4063
4064                 sd = &st->side_data[st->nb_side_data - 1];
4065                 sd->type = AV_PKT_DATA_DISPLAYMATRIX;
4066                 sd->size = sizeof(int32_t) * 9;
4067                 sd->data = (uint8_t*)sc->display_matrix;
4068                 sc->display_matrix = NULL;
4069             }
4070             break;
4071         }
4072     }
4073
4074     return 0;
4075 }
4076
4077 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
4078 {
4079     AVIndexEntry *sample = NULL;
4080     int64_t best_dts = INT64_MAX;
4081     int i;
4082     for (i = 0; i < s->nb_streams; i++) {
4083         AVStream *avst = s->streams[i];
4084         MOVStreamContext *msc = avst->priv_data;
4085         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
4086             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
4087             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
4088             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
4089             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
4090                 (s->pb->seekable &&
4091                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
4092                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
4093                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
4094                 sample = current_sample;
4095                 best_dts = dts;
4096                 *st = avst;
4097             }
4098         }
4099     }
4100     return sample;
4101 }
4102
4103 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
4104 {
4105     MOVContext *mov = s->priv_data;
4106     MOVStreamContext *sc;
4107     AVIndexEntry *sample;
4108     AVStream *st = NULL;
4109     int ret;
4110     mov->fc = s;
4111  retry:
4112     sample = mov_find_next_sample(s, &st);
4113     if (!sample) {
4114         mov->found_mdat = 0;
4115         if (!mov->next_root_atom)
4116             return AVERROR_EOF;
4117         avio_seek(s->pb, mov->next_root_atom, SEEK_SET);
4118         mov->next_root_atom = 0;
4119         if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
4120             avio_feof(s->pb))
4121             return AVERROR_EOF;
4122         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
4123         goto retry;
4124     }
4125     sc = st->priv_data;
4126     /* must be done just before reading, to avoid infinite loop on sample */
4127     sc->current_sample++;
4128
4129     if (mov->next_root_atom) {
4130         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
4131         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
4132     }
4133
4134     if (st->discard != AVDISCARD_ALL) {
4135         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
4136             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
4137                    sc->ffindex, sample->pos);
4138             return AVERROR_INVALIDDATA;
4139         }
4140         ret = av_get_packet(sc->pb, pkt, sample->size);
4141         if (ret < 0)
4142             return ret;
4143         if (sc->has_palette) {
4144             uint8_t *pal;
4145
4146             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
4147             if (!pal) {
4148                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
4149             } else {
4150                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
4151                 sc->has_palette = 0;
4152             }
4153         }
4154 #if CONFIG_DV_DEMUXER
4155         if (mov->dv_demux && sc->dv_audio_container) {
4156             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
4157             av_freep(&pkt->data);
4158             pkt->size = 0;
4159             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
4160             if (ret < 0)
4161                 return ret;
4162         }
4163 #endif
4164     }
4165
4166     pkt->stream_index = sc->ffindex;
4167     pkt->dts = sample->timestamp;
4168     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
4169         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
4170         /* update ctts context */
4171         sc->ctts_sample++;
4172         if (sc->ctts_index < sc->ctts_count &&
4173             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
4174             sc->ctts_index++;
4175             sc->ctts_sample = 0;
4176         }
4177         if (sc->wrong_dts)
4178             pkt->dts = AV_NOPTS_VALUE;
4179     } else {
4180         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
4181             st->index_entries[sc->current_sample].timestamp : st->duration;
4182         pkt->duration = next_dts - pkt->dts;
4183         pkt->pts = pkt->dts;
4184     }
4185     if (st->discard == AVDISCARD_ALL)
4186         goto retry;
4187     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
4188     pkt->pos = sample->pos;
4189     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
4190             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
4191     return 0;
4192 }
4193
4194 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
4195 {
4196     MOVStreamContext *sc = st->priv_data;
4197     int sample, time_sample;
4198     int i;
4199
4200     sample = av_index_search_timestamp(st, timestamp, flags);
4201     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
4202     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
4203         sample = 0;
4204     if (sample < 0) /* not sure what to do */
4205         return AVERROR_INVALIDDATA;
4206     sc->current_sample = sample;
4207     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
4208     /* adjust ctts index */
4209     if (sc->ctts_data) {
4210         time_sample = 0;
4211         for (i = 0; i < sc->ctts_count; i++) {
4212             int next = time_sample + sc->ctts_data[i].count;
4213             if (next > sc->current_sample) {
4214                 sc->ctts_index = i;
4215                 sc->ctts_sample = sc->current_sample - time_sample;
4216                 break;
4217             }
4218             time_sample = next;
4219         }
4220     }
4221     return sample;
4222 }
4223
4224 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
4225 {
4226     AVStream *st;
4227     int64_t seek_timestamp, timestamp;
4228     int sample;
4229     int i;
4230
4231     if (stream_index >= s->nb_streams)
4232         return AVERROR_INVALIDDATA;
4233
4234     st = s->streams[stream_index];
4235     sample = mov_seek_stream(s, st, sample_time, flags);
4236     if (sample < 0)
4237         return sample;
4238
4239     /* adjust seek timestamp to found sample timestamp */
4240     seek_timestamp = st->index_entries[sample].timestamp;
4241
4242     for (i = 0; i < s->nb_streams; i++) {
4243         MOVStreamContext *sc = s->streams[i]->priv_data;
4244         st = s->streams[i];
4245         st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
4246
4247         if (stream_index == i)
4248             continue;
4249
4250         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
4251         mov_seek_stream(s, st, timestamp, flags);
4252     }
4253     return 0;
4254 }
4255
4256 #define OFFSET(x) offsetof(MOVContext, x)
4257 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
4258 static const AVOption mov_options[] = {
4259     {"use_absolute_path",
4260         "allow using absolute path when opening alias, this is a possible security issue",
4261         OFFSET(use_absolute_path), FF_OPT_TYPE_INT, {.i64 = 0},
4262         0, 1, FLAGS},
4263     {"ignore_editlist", "", OFFSET(ignore_editlist), FF_OPT_TYPE_INT, {.i64 = 0},
4264         0, 1, FLAGS},
4265     {"use_mfra_for",
4266         "use mfra for fragment timestamps",
4267         OFFSET(use_mfra_for), FF_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
4268         -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
4269         "use_mfra_for"},
4270     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
4271         FLAGS, "use_mfra_for" },
4272     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
4273         FLAGS, "use_mfra_for" },
4274     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
4275         FLAGS, "use_mfra_for" },
4276     { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
4277         AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
4278     { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
4279         AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags = FLAGS },
4280     { NULL },
4281 };
4282
4283 static const AVClass mov_class = {
4284     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
4285     .item_name  = av_default_item_name,
4286     .option     = mov_options,
4287     .version    = LIBAVUTIL_VERSION_INT,
4288 };
4289
4290 AVInputFormat ff_mov_demuxer = {
4291     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
4292     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
4293     .priv_class     = &mov_class,
4294     .priv_data_size = sizeof(MOVContext),
4295     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
4296     .read_probe     = mov_probe,
4297     .read_header    = mov_read_header,
4298     .read_packet    = mov_read_packet,
4299     .read_close     = mov_read_close,
4300     .read_seek      = mov_read_seek,
4301     .flags          = AVFMT_NO_BYTE_SEEK,
4302 };