]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
avformat/movenc: implicitly enable negative CTS offsets for ismv
[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/internal.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/avassert.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/dict.h"
40 #include "libavutil/display.h"
41 #include "libavutil/opt.h"
42 #include "libavutil/aes.h"
43 #include "libavutil/aes_ctr.h"
44 #include "libavutil/pixdesc.h"
45 #include "libavutil/sha.h"
46 #include "libavutil/spherical.h"
47 #include "libavutil/stereo3d.h"
48 #include "libavutil/timecode.h"
49 #include "libavcodec/ac3tab.h"
50 #include "libavcodec/flac.h"
51 #include "libavcodec/mpegaudiodecheader.h"
52 #include "avformat.h"
53 #include "internal.h"
54 #include "avio_internal.h"
55 #include "riff.h"
56 #include "isom.h"
57 #include "libavcodec/get_bits.h"
58 #include "id3v1.h"
59 #include "mov_chan.h"
60 #include "replaygain.h"
61
62 #if CONFIG_ZLIB
63 #include <zlib.h>
64 #endif
65
66 #include "qtpalette.h"
67
68 /* those functions parse an atom */
69 /* links atom IDs to parse functions */
70 typedef struct MOVParseTableEntry {
71     uint32_t type;
72     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
73 } MOVParseTableEntry;
74
75 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
76 static int mov_read_mfra(MOVContext *c, AVIOContext *f);
77 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
78                               int count, int duration);
79
80 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
81                                              unsigned len, const char *key)
82 {
83     char buf[16];
84
85     short current, total = 0;
86     avio_rb16(pb); // unknown
87     current = avio_rb16(pb);
88     if (len >= 6)
89         total = avio_rb16(pb);
90     if (!total)
91         snprintf(buf, sizeof(buf), "%d", current);
92     else
93         snprintf(buf, sizeof(buf), "%d/%d", current, total);
94     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
95     av_dict_set(&c->fc->metadata, key, buf, 0);
96
97     return 0;
98 }
99
100 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
101                                             unsigned len, const char *key)
102 {
103     /* bypass padding bytes */
104     avio_r8(pb);
105     avio_r8(pb);
106     avio_r8(pb);
107
108     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
109     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
110
111     return 0;
112 }
113
114 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
115                                         unsigned len, const char *key)
116 {
117     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
118     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
119
120     return 0;
121 }
122
123 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
124                              unsigned len, const char *key)
125 {
126     short genre;
127
128     avio_r8(pb); // unknown
129
130     genre = avio_r8(pb);
131     if (genre < 1 || genre > ID3v1_GENRE_MAX)
132         return 0;
133     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
134     av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);
135
136     return 0;
137 }
138
139 static const uint32_t mac_to_unicode[128] = {
140     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
141     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
142     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
143     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
144     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
145     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
146     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
147     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
148     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
149     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
150     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
151     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
152     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
153     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
154     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
155     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
156 };
157
158 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
159                                char *dst, int dstlen)
160 {
161     char *p = dst;
162     char *end = dst+dstlen-1;
163     int i;
164
165     for (i = 0; i < len; i++) {
166         uint8_t t, c = avio_r8(pb);
167
168         if (p >= end)
169             continue;
170
171         if (c < 0x80)
172             *p++ = c;
173         else if (p < end)
174             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
175     }
176     *p = 0;
177     return p - dst;
178 }
179
180 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
181 {
182     AVPacket pkt;
183     AVStream *st;
184     MOVStreamContext *sc;
185     enum AVCodecID id;
186     int ret;
187
188     switch (type) {
189     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
190     case 0xe:  id = AV_CODEC_ID_PNG;   break;
191     case 0x1b: id = AV_CODEC_ID_BMP;   break;
192     default:
193         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
194         avio_skip(pb, len);
195         return 0;
196     }
197
198     st = avformat_new_stream(c->fc, NULL);
199     if (!st)
200         return AVERROR(ENOMEM);
201     sc = av_mallocz(sizeof(*sc));
202     if (!sc)
203         return AVERROR(ENOMEM);
204     st->priv_data = sc;
205
206     ret = av_get_packet(pb, &pkt, len);
207     if (ret < 0)
208         return ret;
209
210     if (pkt.size >= 8 && id != AV_CODEC_ID_BMP) {
211         if (AV_RB64(pkt.data) == 0x89504e470d0a1a0a) {
212             id = AV_CODEC_ID_PNG;
213         } else {
214             id = AV_CODEC_ID_MJPEG;
215         }
216     }
217
218     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
219
220     st->attached_pic              = pkt;
221     st->attached_pic.stream_index = st->index;
222     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
223
224     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
225     st->codecpar->codec_id   = id;
226
227     return 0;
228 }
229
230 // 3GPP TS 26.244
231 static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
232 {
233     char language[4] = { 0 };
234     char buf[200], place[100];
235     uint16_t langcode = 0;
236     double longitude, latitude, altitude;
237     const char *key = "location";
238
239     if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4) {
240         av_log(c->fc, AV_LOG_ERROR, "loci too short\n");
241         return AVERROR_INVALIDDATA;
242     }
243
244     avio_skip(pb, 4); // version+flags
245     langcode = avio_rb16(pb);
246     ff_mov_lang_to_iso639(langcode, language);
247     len -= 6;
248
249     len -= avio_get_str(pb, len, place, sizeof(place));
250     if (len < 1) {
251         av_log(c->fc, AV_LOG_ERROR, "place name too long\n");
252         return AVERROR_INVALIDDATA;
253     }
254     avio_skip(pb, 1); // role
255     len -= 1;
256
257     if (len < 12) {
258         av_log(c->fc, AV_LOG_ERROR,
259                "loci too short (%u bytes left, need at least %d)\n", len, 12);
260         return AVERROR_INVALIDDATA;
261     }
262     longitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
263     latitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
264     altitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
265
266     // Try to output in the same format as the ?xyz field
267     snprintf(buf, sizeof(buf), "%+08.4f%+09.4f",  latitude, longitude);
268     if (altitude)
269         av_strlcatf(buf, sizeof(buf), "%+f", altitude);
270     av_strlcatf(buf, sizeof(buf), "/%s", place);
271
272     if (*language && strcmp(language, "und")) {
273         char key2[16];
274         snprintf(key2, sizeof(key2), "%s-%s", key, language);
275         av_dict_set(&c->fc->metadata, key2, buf, 0);
276     }
277     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
278     return av_dict_set(&c->fc->metadata, key, buf, 0);
279 }
280
281 static int mov_metadata_hmmt(MOVContext *c, AVIOContext *pb, unsigned len)
282 {
283     int i, n_hmmt;
284
285     if (len < 2)
286         return 0;
287     if (c->ignore_chapters)
288         return 0;
289
290     n_hmmt = avio_rb32(pb);
291     for (i = 0; i < n_hmmt && !pb->eof_reached; i++) {
292         int moment_time = avio_rb32(pb);
293         avpriv_new_chapter(c->fc, i, av_make_q(1, 1000), moment_time, AV_NOPTS_VALUE, NULL);
294     }
295     return 0;
296 }
297
298 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
299 {
300     char tmp_key[5];
301     char key2[32], language[4] = {0};
302     char *str = NULL;
303     const char *key = NULL;
304     uint16_t langcode = 0;
305     uint32_t data_type = 0, str_size, str_size_alloc;
306     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
307     int raw = 0;
308     int num = 0;
309
310     switch (atom.type) {
311     case MKTAG( '@','P','R','M'): key = "premiere_version"; raw = 1; break;
312     case MKTAG( '@','P','R','Q'): key = "quicktime_version"; raw = 1; break;
313     case MKTAG( 'X','M','P','_'):
314         if (c->export_xmp) { key = "xmp"; raw = 1; } break;
315     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
316     case MKTAG( 'a','k','I','D'): key = "account_type";
317         parse = mov_metadata_int8_no_padding; break;
318     case MKTAG( 'a','p','I','D'): key = "account_id"; break;
319     case MKTAG( 'c','a','t','g'): key = "category"; break;
320     case MKTAG( 'c','p','i','l'): key = "compilation";
321         parse = mov_metadata_int8_no_padding; break;
322     case MKTAG( 'c','p','r','t'): key = "copyright"; break;
323     case MKTAG( 'd','e','s','c'): key = "description"; break;
324     case MKTAG( 'd','i','s','k'): key = "disc";
325         parse = mov_metadata_track_or_disc_number; break;
326     case MKTAG( 'e','g','i','d'): key = "episode_uid";
327         parse = mov_metadata_int8_no_padding; break;
328     case MKTAG( 'F','I','R','M'): key = "firmware"; raw = 1; break;
329     case MKTAG( 'g','n','r','e'): key = "genre";
330         parse = mov_metadata_gnre; break;
331     case MKTAG( 'h','d','v','d'): key = "hd_video";
332         parse = mov_metadata_int8_no_padding; break;
333     case MKTAG( 'H','M','M','T'):
334         return mov_metadata_hmmt(c, pb, atom.size);
335     case MKTAG( 'k','e','y','w'): key = "keywords";  break;
336     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
337     case MKTAG( 'l','o','c','i'):
338         return mov_metadata_loci(c, pb, atom.size);
339     case MKTAG( 'm','a','n','u'): key = "make"; break;
340     case MKTAG( 'm','o','d','l'): key = "model"; break;
341     case MKTAG( 'p','c','s','t'): key = "podcast";
342         parse = mov_metadata_int8_no_padding; break;
343     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
344         parse = mov_metadata_int8_no_padding; break;
345     case MKTAG( 'p','u','r','d'): key = "purchase_date"; break;
346     case MKTAG( 'r','t','n','g'): key = "rating";
347         parse = mov_metadata_int8_no_padding; break;
348     case MKTAG( 's','o','a','a'): key = "sort_album_artist"; break;
349     case MKTAG( 's','o','a','l'): key = "sort_album";   break;
350     case MKTAG( 's','o','a','r'): key = "sort_artist";  break;
351     case MKTAG( 's','o','c','o'): key = "sort_composer"; break;
352     case MKTAG( 's','o','n','m'): key = "sort_name";    break;
353     case MKTAG( 's','o','s','n'): key = "sort_show";    break;
354     case MKTAG( 's','t','i','k'): key = "media_type";
355         parse = mov_metadata_int8_no_padding; break;
356     case MKTAG( 't','r','k','n'): key = "track";
357         parse = mov_metadata_track_or_disc_number; break;
358     case MKTAG( 't','v','e','n'): key = "episode_id"; break;
359     case MKTAG( 't','v','e','s'): key = "episode_sort";
360         parse = mov_metadata_int8_bypass_padding; break;
361     case MKTAG( 't','v','n','n'): key = "network";   break;
362     case MKTAG( 't','v','s','h'): key = "show";      break;
363     case MKTAG( 't','v','s','n'): key = "season_number";
364         parse = mov_metadata_int8_bypass_padding; break;
365     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
366     case MKTAG(0xa9,'P','R','D'): key = "producer";  break;
367     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
368     case MKTAG(0xa9,'a','u','t'): key = "artist";    break;
369     case MKTAG(0xa9,'c','h','p'): key = "chapter";   break;
370     case MKTAG(0xa9,'c','m','t'): key = "comment";   break;
371     case MKTAG(0xa9,'c','o','m'): key = "composer";  break;
372     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
373     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
374     case MKTAG(0xa9,'d','i','r'): key = "director";  break;
375     case MKTAG(0xa9,'d','i','s'): key = "disclaimer"; break;
376     case MKTAG(0xa9,'e','d','1'): key = "edit_date"; break;
377     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
378     case MKTAG(0xa9,'f','m','t'): key = "original_format"; break;
379     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
380     case MKTAG(0xa9,'g','r','p'): key = "grouping";  break;
381     case MKTAG(0xa9,'h','s','t'): key = "host_computer"; break;
382     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
383     case MKTAG(0xa9,'l','y','r'): key = "lyrics";    break;
384     case MKTAG(0xa9,'m','a','k'): key = "make";      break;
385     case MKTAG(0xa9,'m','o','d'): key = "model";     break;
386     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
387     case MKTAG(0xa9,'o','p','e'): key = "original_artist"; break;
388     case MKTAG(0xa9,'p','r','d'): key = "producer";  break;
389     case MKTAG(0xa9,'p','r','f'): key = "performers"; break;
390     case MKTAG(0xa9,'r','e','q'): key = "playback_requirements"; break;
391     case MKTAG(0xa9,'s','r','c'): key = "original_source"; break;
392     case MKTAG(0xa9,'s','t','3'): key = "subtitle";  break;
393     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
394     case MKTAG(0xa9,'t','o','o'): key = "encoder";   break;
395     case MKTAG(0xa9,'t','r','k'): key = "track";     break;
396     case MKTAG(0xa9,'u','r','l'): key = "URL";       break;
397     case MKTAG(0xa9,'w','r','n'): key = "warning";   break;
398     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
399     case MKTAG(0xa9,'x','y','z'): key = "location";  break;
400     }
401 retry:
402     if (c->itunes_metadata && atom.size > 8) {
403         int data_size = avio_rb32(pb);
404         int tag = avio_rl32(pb);
405         if (tag == MKTAG('d','a','t','a') && data_size <= atom.size) {
406             data_type = avio_rb32(pb); // type
407             avio_rb32(pb); // unknown
408             str_size = data_size - 16;
409             atom.size -= 16;
410
411             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
412                 int ret = mov_read_covr(c, pb, data_type, str_size);
413                 if (ret < 0) {
414                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
415                     return ret;
416                 }
417                 atom.size -= str_size;
418                 if (atom.size > 8)
419                     goto retry;
420                 return ret;
421             } else if (!key && c->found_hdlr_mdta && c->meta_keys) {
422                 uint32_t index = AV_RB32(&atom.type);
423                 if (index < c->meta_keys_count && index > 0) {
424                     key = c->meta_keys[index];
425                 } else {
426                     av_log(c->fc, AV_LOG_WARNING,
427                            "The index of 'data' is out of range: %"PRId32" < 1 or >= %d.\n",
428                            index, c->meta_keys_count);
429                 }
430             }
431         } else return 0;
432     } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) {
433         str_size = avio_rb16(pb); // string length
434         if (str_size > atom.size) {
435             raw = 1;
436             avio_seek(pb, -2, SEEK_CUR);
437             av_log(c->fc, AV_LOG_WARNING, "UDTA parsing failed retrying raw\n");
438             goto retry;
439         }
440         langcode = avio_rb16(pb);
441         ff_mov_lang_to_iso639(langcode, language);
442         atom.size -= 4;
443     } else
444         str_size = atom.size;
445
446     if (c->export_all && !key) {
447         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
448         key = tmp_key;
449     }
450
451     if (!key)
452         return 0;
453     if (atom.size < 0 || str_size >= INT_MAX/2)
454         return AVERROR_INVALIDDATA;
455
456     // Allocates enough space if data_type is a int32 or float32 number, otherwise
457     // worst-case requirement for output string in case of utf8 coded input
458     num = (data_type >= 21 && data_type <= 23);
459     str_size_alloc = (num ? 512 : (raw ? str_size : str_size * 2)) + 1;
460     str = av_mallocz(str_size_alloc);
461     if (!str)
462         return AVERROR(ENOMEM);
463
464     if (parse)
465         parse(c, pb, str_size, key);
466     else {
467         if (!raw && (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff)))) { // MAC Encoded
468             mov_read_mac_string(c, pb, str_size, str, str_size_alloc);
469         } else if (data_type == 21) { // BE signed integer, variable size
470             int val = 0;
471             if (str_size == 1)
472                 val = (int8_t)avio_r8(pb);
473             else if (str_size == 2)
474                 val = (int16_t)avio_rb16(pb);
475             else if (str_size == 3)
476                 val = ((int32_t)(avio_rb24(pb)<<8))>>8;
477             else if (str_size == 4)
478                 val = (int32_t)avio_rb32(pb);
479             if (snprintf(str, str_size_alloc, "%d", val) >= str_size_alloc) {
480                 av_log(c->fc, AV_LOG_ERROR,
481                        "Failed to store the number (%d) in string.\n", val);
482                 av_free(str);
483                 return AVERROR_INVALIDDATA;
484             }
485         } else if (data_type == 22) { // BE unsigned integer, variable size
486             unsigned int val = 0;
487             if (str_size == 1)
488                 val = avio_r8(pb);
489             else if (str_size == 2)
490                 val = avio_rb16(pb);
491             else if (str_size == 3)
492                 val = avio_rb24(pb);
493             else if (str_size == 4)
494                 val = avio_rb32(pb);
495             if (snprintf(str, str_size_alloc, "%u", val) >= str_size_alloc) {
496                 av_log(c->fc, AV_LOG_ERROR,
497                        "Failed to store the number (%u) in string.\n", val);
498                 av_free(str);
499                 return AVERROR_INVALIDDATA;
500             }
501         } else if (data_type == 23 && str_size >= 4) {  // BE float32
502             float val = av_int2float(avio_rb32(pb));
503             if (snprintf(str, str_size_alloc, "%f", val) >= str_size_alloc) {
504                 av_log(c->fc, AV_LOG_ERROR,
505                        "Failed to store the float32 number (%f) in string.\n", val);
506                 av_free(str);
507                 return AVERROR_INVALIDDATA;
508             }
509         } else {
510             int ret = ffio_read_size(pb, str, str_size);
511             if (ret < 0) {
512                 av_free(str);
513                 return ret;
514             }
515             str[str_size] = 0;
516         }
517         c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
518         av_dict_set(&c->fc->metadata, key, str, 0);
519         if (*language && strcmp(language, "und")) {
520             snprintf(key2, sizeof(key2), "%s-%s", key, language);
521             av_dict_set(&c->fc->metadata, key2, str, 0);
522         }
523         if (!strcmp(key, "encoder")) {
524             int major, minor, micro;
525             if (sscanf(str, "HandBrake %d.%d.%d", &major, &minor, &micro) == 3) {
526                 c->handbrake_version = 1000000*major + 1000*minor + micro;
527             }
528         }
529     }
530
531     av_freep(&str);
532     return 0;
533 }
534
535 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
536 {
537     int64_t start;
538     int i, nb_chapters, str_len, version;
539     char str[256+1];
540     int ret;
541
542     if (c->ignore_chapters)
543         return 0;
544
545     if ((atom.size -= 5) < 0)
546         return 0;
547
548     version = avio_r8(pb);
549     avio_rb24(pb);
550     if (version)
551         avio_rb32(pb); // ???
552     nb_chapters = avio_r8(pb);
553
554     for (i = 0; i < nb_chapters; i++) {
555         if (atom.size < 9)
556             return 0;
557
558         start = avio_rb64(pb);
559         str_len = avio_r8(pb);
560
561         if ((atom.size -= 9+str_len) < 0)
562             return 0;
563
564         ret = ffio_read_size(pb, str, str_len);
565         if (ret < 0)
566             return ret;
567         str[str_len] = 0;
568         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
569     }
570     return 0;
571 }
572
573 #define MIN_DATA_ENTRY_BOX_SIZE 12
574 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
575 {
576     AVStream *st;
577     MOVStreamContext *sc;
578     int entries, i, j;
579
580     if (c->fc->nb_streams < 1)
581         return 0;
582     st = c->fc->streams[c->fc->nb_streams-1];
583     sc = st->priv_data;
584
585     avio_rb32(pb); // version + flags
586     entries = avio_rb32(pb);
587     if (!entries ||
588         entries >  (atom.size - 1) / MIN_DATA_ENTRY_BOX_SIZE + 1 ||
589         entries >= UINT_MAX / sizeof(*sc->drefs))
590         return AVERROR_INVALIDDATA;
591     sc->drefs_count = 0;
592     av_free(sc->drefs);
593     sc->drefs_count = 0;
594     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
595     if (!sc->drefs)
596         return AVERROR(ENOMEM);
597     sc->drefs_count = entries;
598
599     for (i = 0; i < entries; i++) {
600         MOVDref *dref = &sc->drefs[i];
601         uint32_t size = avio_rb32(pb);
602         int64_t next = avio_tell(pb) + size - 4;
603
604         if (size < 12)
605             return AVERROR_INVALIDDATA;
606
607         dref->type = avio_rl32(pb);
608         avio_rb32(pb); // version + flags
609
610         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
611             /* macintosh alias record */
612             uint16_t volume_len, len;
613             int16_t type;
614             int ret;
615
616             avio_skip(pb, 10);
617
618             volume_len = avio_r8(pb);
619             volume_len = FFMIN(volume_len, 27);
620             ret = ffio_read_size(pb, dref->volume, 27);
621             if (ret < 0)
622                 return ret;
623             dref->volume[volume_len] = 0;
624             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
625
626             avio_skip(pb, 12);
627
628             len = avio_r8(pb);
629             len = FFMIN(len, 63);
630             ret = ffio_read_size(pb, dref->filename, 63);
631             if (ret < 0)
632                 return ret;
633             dref->filename[len] = 0;
634             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
635
636             avio_skip(pb, 16);
637
638             /* read next level up_from_alias/down_to_target */
639             dref->nlvl_from = avio_rb16(pb);
640             dref->nlvl_to   = avio_rb16(pb);
641             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
642                    dref->nlvl_from, dref->nlvl_to);
643
644             avio_skip(pb, 16);
645
646             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
647                 if(avio_feof(pb))
648                     return AVERROR_EOF;
649                 type = avio_rb16(pb);
650                 len = avio_rb16(pb);
651                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
652                 if (len&1)
653                     len += 1;
654                 if (type == 2) { // absolute path
655                     av_free(dref->path);
656                     dref->path = av_mallocz(len+1);
657                     if (!dref->path)
658                         return AVERROR(ENOMEM);
659
660                     ret = ffio_read_size(pb, dref->path, len);
661                     if (ret < 0) {
662                         av_freep(&dref->path);
663                         return ret;
664                     }
665                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
666                         len -= volume_len;
667                         memmove(dref->path, dref->path+volume_len, len);
668                         dref->path[len] = 0;
669                     }
670                     // trim string of any ending zeros
671                     for (j = len - 1; j >= 0; j--) {
672                         if (dref->path[j] == 0)
673                             len--;
674                         else
675                             break;
676                     }
677                     for (j = 0; j < len; j++)
678                         if (dref->path[j] == ':' || dref->path[j] == 0)
679                             dref->path[j] = '/';
680                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
681                 } else if (type == 0) { // directory name
682                     av_free(dref->dir);
683                     dref->dir = av_malloc(len+1);
684                     if (!dref->dir)
685                         return AVERROR(ENOMEM);
686
687                     ret = ffio_read_size(pb, dref->dir, len);
688                     if (ret < 0) {
689                         av_freep(&dref->dir);
690                         return ret;
691                     }
692                     dref->dir[len] = 0;
693                     for (j = 0; j < len; j++)
694                         if (dref->dir[j] == ':')
695                             dref->dir[j] = '/';
696                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
697                 } else
698                     avio_skip(pb, len);
699             }
700         } else {
701             av_log(c->fc, AV_LOG_DEBUG, "Unknown dref type 0x%08"PRIx32" size %"PRIu32"\n",
702                    dref->type, size);
703             entries--;
704             i--;
705         }
706         avio_seek(pb, next, SEEK_SET);
707     }
708     return 0;
709 }
710
711 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
712 {
713     AVStream *st;
714     uint32_t type;
715     uint32_t ctype;
716     int64_t title_size;
717     char *title_str;
718     int ret;
719
720     avio_r8(pb); /* version */
721     avio_rb24(pb); /* flags */
722
723     /* component type */
724     ctype = avio_rl32(pb);
725     type = avio_rl32(pb); /* component subtype */
726
727     av_log(c->fc, AV_LOG_TRACE, "ctype=%s\n", av_fourcc2str(ctype));
728     av_log(c->fc, AV_LOG_TRACE, "stype=%s\n", av_fourcc2str(type));
729
730     if (c->trak_index < 0) {  // meta not inside a trak
731         if (type == MKTAG('m','d','t','a')) {
732             c->found_hdlr_mdta = 1;
733         }
734         return 0;
735     }
736
737     st = c->fc->streams[c->fc->nb_streams-1];
738
739     if     (type == MKTAG('v','i','d','e'))
740         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
741     else if (type == MKTAG('s','o','u','n'))
742         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
743     else if (type == MKTAG('m','1','a',' '))
744         st->codecpar->codec_id = AV_CODEC_ID_MP2;
745     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
746         st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
747
748     avio_rb32(pb); /* component  manufacture */
749     avio_rb32(pb); /* component flags */
750     avio_rb32(pb); /* component flags mask */
751
752     title_size = atom.size - 24;
753     if (title_size > 0) {
754         if (title_size > FFMIN(INT_MAX, SIZE_MAX-1))
755             return AVERROR_INVALIDDATA;
756         title_str = av_malloc(title_size + 1); /* Add null terminator */
757         if (!title_str)
758             return AVERROR(ENOMEM);
759
760         ret = ffio_read_size(pb, title_str, title_size);
761         if (ret < 0) {
762             av_freep(&title_str);
763             return ret;
764         }
765         title_str[title_size] = 0;
766         if (title_str[0]) {
767             int off = (!c->isom && title_str[0] == title_size - 1);
768             // flag added so as to not set stream handler name if already set from mdia->hdlr
769             av_dict_set(&st->metadata, "handler_name", title_str + off, AV_DICT_DONT_OVERWRITE);
770         }
771         av_freep(&title_str);
772     }
773
774     return 0;
775 }
776
777 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
778 {
779     return ff_mov_read_esds(c->fc, pb);
780 }
781
782 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
783 {
784     AVStream *st;
785     enum AVAudioServiceType *ast;
786     int ac3info, acmod, lfeon, bsmod;
787
788     if (c->fc->nb_streams < 1)
789         return 0;
790     st = c->fc->streams[c->fc->nb_streams-1];
791
792     ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
793                                                             sizeof(*ast));
794     if (!ast)
795         return AVERROR(ENOMEM);
796
797     ac3info = avio_rb24(pb);
798     bsmod = (ac3info >> 14) & 0x7;
799     acmod = (ac3info >> 11) & 0x7;
800     lfeon = (ac3info >> 10) & 0x1;
801     st->codecpar->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
802     st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
803     if (lfeon)
804         st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
805     *ast = bsmod;
806     if (st->codecpar->channels > 1 && bsmod == 0x7)
807         *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
808
809 #if FF_API_LAVF_AVCTX
810     FF_DISABLE_DEPRECATION_WARNINGS
811     st->codec->audio_service_type = *ast;
812     FF_ENABLE_DEPRECATION_WARNINGS
813 #endif
814
815     return 0;
816 }
817
818 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
819 {
820     AVStream *st;
821     enum AVAudioServiceType *ast;
822     int eac3info, acmod, lfeon, bsmod;
823
824     if (c->fc->nb_streams < 1)
825         return 0;
826     st = c->fc->streams[c->fc->nb_streams-1];
827
828     ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
829                                                             sizeof(*ast));
830     if (!ast)
831         return AVERROR(ENOMEM);
832
833     /* No need to parse fields for additional independent substreams and its
834      * associated dependent substreams since libavcodec's E-AC-3 decoder
835      * does not support them yet. */
836     avio_rb16(pb); /* data_rate and num_ind_sub */
837     eac3info = avio_rb24(pb);
838     bsmod = (eac3info >> 12) & 0x1f;
839     acmod = (eac3info >>  9) & 0x7;
840     lfeon = (eac3info >>  8) & 0x1;
841     st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
842     if (lfeon)
843         st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
844     st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
845     *ast = bsmod;
846     if (st->codecpar->channels > 1 && bsmod == 0x7)
847         *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
848
849 #if FF_API_LAVF_AVCTX
850     FF_DISABLE_DEPRECATION_WARNINGS
851     st->codec->audio_service_type = *ast;
852     FF_ENABLE_DEPRECATION_WARNINGS
853 #endif
854
855     return 0;
856 }
857
858 static int mov_read_ddts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
859 {
860     const uint32_t ddts_size = 20;
861     AVStream *st = NULL;
862     uint8_t *buf = NULL;
863     uint32_t frame_duration_code = 0;
864     uint32_t channel_layout_code = 0;
865     GetBitContext gb;
866
867     buf = av_malloc(ddts_size + AV_INPUT_BUFFER_PADDING_SIZE);
868     if (!buf) {
869         return AVERROR(ENOMEM);
870     }
871     if (avio_read(pb, buf, ddts_size) < ddts_size) {
872         av_free(buf);
873         return AVERROR_INVALIDDATA;
874     }
875
876     init_get_bits(&gb, buf, 8*ddts_size);
877
878     if (c->fc->nb_streams < 1) {
879         av_free(buf);
880         return 0;
881     }
882     st = c->fc->streams[c->fc->nb_streams-1];
883
884     st->codecpar->sample_rate = get_bits_long(&gb, 32);
885     if (st->codecpar->sample_rate <= 0) {
886         av_log(c->fc, AV_LOG_ERROR, "Invalid sample rate %d\n", st->codecpar->sample_rate);
887         av_free(buf);
888         return AVERROR_INVALIDDATA;
889     }
890     skip_bits_long(&gb, 32); /* max bitrate */
891     st->codecpar->bit_rate = get_bits_long(&gb, 32);
892     st->codecpar->bits_per_coded_sample = get_bits(&gb, 8);
893     frame_duration_code = get_bits(&gb, 2);
894     skip_bits(&gb, 30); /* various fields */
895     channel_layout_code = get_bits(&gb, 16);
896
897     st->codecpar->frame_size =
898             (frame_duration_code == 0) ? 512 :
899             (frame_duration_code == 1) ? 1024 :
900             (frame_duration_code == 2) ? 2048 :
901             (frame_duration_code == 3) ? 4096 : 0;
902
903     if (channel_layout_code > 0xff) {
904         av_log(c->fc, AV_LOG_WARNING, "Unsupported DTS audio channel layout");
905     }
906     st->codecpar->channel_layout =
907             ((channel_layout_code & 0x1) ? AV_CH_FRONT_CENTER : 0) |
908             ((channel_layout_code & 0x2) ? AV_CH_FRONT_LEFT : 0) |
909             ((channel_layout_code & 0x2) ? AV_CH_FRONT_RIGHT : 0) |
910             ((channel_layout_code & 0x4) ? AV_CH_SIDE_LEFT : 0) |
911             ((channel_layout_code & 0x4) ? AV_CH_SIDE_RIGHT : 0) |
912             ((channel_layout_code & 0x8) ? AV_CH_LOW_FREQUENCY : 0);
913
914     st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
915     av_free(buf);
916
917     return 0;
918 }
919
920 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
921 {
922     AVStream *st;
923
924     if (c->fc->nb_streams < 1)
925         return 0;
926     st = c->fc->streams[c->fc->nb_streams-1];
927
928     if (atom.size < 16)
929         return 0;
930
931     /* skip version and flags */
932     avio_skip(pb, 4);
933
934     ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
935
936     return 0;
937 }
938
939 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
940 {
941     AVStream *st;
942     int ret;
943
944     if (c->fc->nb_streams < 1)
945         return 0;
946     st = c->fc->streams[c->fc->nb_streams-1];
947
948     if ((ret = ff_get_wav_header(c->fc, pb, st->codecpar, atom.size, 0)) < 0)
949         av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
950
951     return ret;
952 }
953
954 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
955 {
956     const int num = avio_rb32(pb);
957     const int den = avio_rb32(pb);
958     AVStream *st;
959
960     if (c->fc->nb_streams < 1)
961         return 0;
962     st = c->fc->streams[c->fc->nb_streams-1];
963
964     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
965         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
966         av_log(c->fc, AV_LOG_WARNING,
967                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
968                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
969                num, den);
970     } else if (den != 0) {
971         av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den,
972                   num, den, 32767);
973     }
974     return 0;
975 }
976
977 /* this atom contains actual media data */
978 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
979 {
980     if (atom.size == 0) /* wrong one (MP4) */
981         return 0;
982     c->found_mdat=1;
983     return 0; /* now go for moov */
984 }
985
986 #define DRM_BLOB_SIZE 56
987
988 static int mov_read_adrm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
989 {
990     uint8_t intermediate_key[20];
991     uint8_t intermediate_iv[20];
992     uint8_t input[64];
993     uint8_t output[64];
994     uint8_t file_checksum[20];
995     uint8_t calculated_checksum[20];
996     struct AVSHA *sha;
997     int i;
998     int ret = 0;
999     uint8_t *activation_bytes = c->activation_bytes;
1000     uint8_t *fixed_key = c->audible_fixed_key;
1001
1002     c->aax_mode = 1;
1003
1004     sha = av_sha_alloc();
1005     if (!sha)
1006         return AVERROR(ENOMEM);
1007     c->aes_decrypt = av_aes_alloc();
1008     if (!c->aes_decrypt) {
1009         ret = AVERROR(ENOMEM);
1010         goto fail;
1011     }
1012
1013     /* drm blob processing */
1014     avio_read(pb, output, 8); // go to offset 8, absolute position 0x251
1015     avio_read(pb, input, DRM_BLOB_SIZE);
1016     avio_read(pb, output, 4); // go to offset 4, absolute position 0x28d
1017     avio_read(pb, file_checksum, 20);
1018
1019     av_log(c->fc, AV_LOG_INFO, "[aax] file checksum == "); // required by external tools
1020     for (i = 0; i < 20; i++)
1021         av_log(c->fc, AV_LOG_INFO, "%02x", file_checksum[i]);
1022     av_log(c->fc, AV_LOG_INFO, "\n");
1023
1024     /* verify activation data */
1025     if (!activation_bytes) {
1026         av_log(c->fc, AV_LOG_WARNING, "[aax] activation_bytes option is missing!\n");
1027         ret = 0;  /* allow ffprobe to continue working on .aax files */
1028         goto fail;
1029     }
1030     if (c->activation_bytes_size != 4) {
1031         av_log(c->fc, AV_LOG_FATAL, "[aax] activation_bytes value needs to be 4 bytes!\n");
1032         ret = AVERROR(EINVAL);
1033         goto fail;
1034     }
1035
1036     /* verify fixed key */
1037     if (c->audible_fixed_key_size != 16) {
1038         av_log(c->fc, AV_LOG_FATAL, "[aax] audible_fixed_key value needs to be 16 bytes!\n");
1039         ret = AVERROR(EINVAL);
1040         goto fail;
1041     }
1042
1043     /* AAX (and AAX+) key derivation */
1044     av_sha_init(sha, 160);
1045     av_sha_update(sha, fixed_key, 16);
1046     av_sha_update(sha, activation_bytes, 4);
1047     av_sha_final(sha, intermediate_key);
1048     av_sha_init(sha, 160);
1049     av_sha_update(sha, fixed_key, 16);
1050     av_sha_update(sha, intermediate_key, 20);
1051     av_sha_update(sha, activation_bytes, 4);
1052     av_sha_final(sha, intermediate_iv);
1053     av_sha_init(sha, 160);
1054     av_sha_update(sha, intermediate_key, 16);
1055     av_sha_update(sha, intermediate_iv, 16);
1056     av_sha_final(sha, calculated_checksum);
1057     if (memcmp(calculated_checksum, file_checksum, 20)) { // critical error
1058         av_log(c->fc, AV_LOG_ERROR, "[aax] mismatch in checksums!\n");
1059         ret = AVERROR_INVALIDDATA;
1060         goto fail;
1061     }
1062     av_aes_init(c->aes_decrypt, intermediate_key, 128, 1);
1063     av_aes_crypt(c->aes_decrypt, output, input, DRM_BLOB_SIZE >> 4, intermediate_iv, 1);
1064     for (i = 0; i < 4; i++) {
1065         // file data (in output) is stored in big-endian mode
1066         if (activation_bytes[i] != output[3 - i]) { // critical error
1067             av_log(c->fc, AV_LOG_ERROR, "[aax] error in drm blob decryption!\n");
1068             ret = AVERROR_INVALIDDATA;
1069             goto fail;
1070         }
1071     }
1072     memcpy(c->file_key, output + 8, 16);
1073     memcpy(input, output + 26, 16);
1074     av_sha_init(sha, 160);
1075     av_sha_update(sha, input, 16);
1076     av_sha_update(sha, c->file_key, 16);
1077     av_sha_update(sha, fixed_key, 16);
1078     av_sha_final(sha, c->file_iv);
1079
1080 fail:
1081     av_free(sha);
1082
1083     return ret;
1084 }
1085
1086 // Audible AAX (and AAX+) bytestream decryption
1087 static int aax_filter(uint8_t *input, int size, MOVContext *c)
1088 {
1089     int blocks = 0;
1090     unsigned char iv[16];
1091
1092     memcpy(iv, c->file_iv, 16); // iv is overwritten
1093     blocks = size >> 4; // trailing bytes are not encrypted!
1094     av_aes_init(c->aes_decrypt, c->file_key, 128, 1);
1095     av_aes_crypt(c->aes_decrypt, input, input, blocks, iv, 1);
1096
1097     return 0;
1098 }
1099
1100 /* read major brand, minor version and compatible brands and store them as metadata */
1101 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1102 {
1103     uint32_t minor_ver;
1104     int comp_brand_size;
1105     char* comp_brands_str;
1106     uint8_t type[5] = {0};
1107     int ret = ffio_read_size(pb, type, 4);
1108     if (ret < 0)
1109         return ret;
1110
1111     if (strcmp(type, "qt  "))
1112         c->isom = 1;
1113     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
1114     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
1115     minor_ver = avio_rb32(pb); /* minor version */
1116     av_dict_set_int(&c->fc->metadata, "minor_version", minor_ver, 0);
1117
1118     comp_brand_size = atom.size - 8;
1119     if (comp_brand_size < 0)
1120         return AVERROR_INVALIDDATA;
1121     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
1122     if (!comp_brands_str)
1123         return AVERROR(ENOMEM);
1124
1125     ret = ffio_read_size(pb, comp_brands_str, comp_brand_size);
1126     if (ret < 0) {
1127         av_freep(&comp_brands_str);
1128         return ret;
1129     }
1130     comp_brands_str[comp_brand_size] = 0;
1131     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
1132     av_freep(&comp_brands_str);
1133
1134     return 0;
1135 }
1136
1137 /* this atom should contain all header atoms */
1138 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1139 {
1140     int ret;
1141
1142     if (c->found_moov) {
1143         av_log(c->fc, AV_LOG_WARNING, "Found duplicated MOOV Atom. Skipped it\n");
1144         avio_skip(pb, atom.size);
1145         return 0;
1146     }
1147
1148     if ((ret = mov_read_default(c, pb, atom)) < 0)
1149         return ret;
1150     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
1151     /* so we don't parse the whole file if over a network */
1152     c->found_moov=1;
1153     return 0; /* now go for mdat */
1154 }
1155
1156 static MOVFragmentStreamInfo * get_frag_stream_info(
1157     MOVFragmentIndex *frag_index,
1158     int index,
1159     int id)
1160 {
1161     int i;
1162     MOVFragmentIndexItem * item;
1163
1164     if (index < 0 || index >= frag_index->nb_items)
1165         return NULL;
1166     item = &frag_index->item[index];
1167     for (i = 0; i < item->nb_stream_info; i++)
1168         if (item->stream_info[i].id == id)
1169             return &item->stream_info[i];
1170
1171     // This shouldn't happen
1172     return NULL;
1173 }
1174
1175 static void set_frag_stream(MOVFragmentIndex *frag_index, int id)
1176 {
1177     int i;
1178     MOVFragmentIndexItem * item;
1179
1180     if (frag_index->current < 0 ||
1181         frag_index->current >= frag_index->nb_items)
1182         return;
1183
1184     item = &frag_index->item[frag_index->current];
1185     for (i = 0; i < item->nb_stream_info; i++)
1186         if (item->stream_info[i].id == id) {
1187             item->current = i;
1188             return;
1189         }
1190
1191     // id not found.  This shouldn't happen.
1192     item->current = -1;
1193 }
1194
1195 static MOVFragmentStreamInfo * get_current_frag_stream_info(
1196     MOVFragmentIndex *frag_index)
1197 {
1198     MOVFragmentIndexItem *item;
1199     if (frag_index->current < 0 ||
1200         frag_index->current >= frag_index->nb_items)
1201         return NULL;
1202
1203     item = &frag_index->item[frag_index->current];
1204     if (item->current >= 0 && item->current < item->nb_stream_info)
1205         return &item->stream_info[item->current];
1206
1207     // This shouldn't happen
1208     return NULL;
1209 }
1210
1211 static int search_frag_moof_offset(MOVFragmentIndex *frag_index, int64_t offset)
1212 {
1213     int a, b, m;
1214     int64_t moof_offset;
1215
1216     // Optimize for appending new entries
1217     if (!frag_index->nb_items ||
1218         frag_index->item[frag_index->nb_items - 1].moof_offset < offset)
1219         return frag_index->nb_items;
1220
1221     a = -1;
1222     b = frag_index->nb_items;
1223
1224     while (b - a > 1) {
1225         m = (a + b) >> 1;
1226         moof_offset = frag_index->item[m].moof_offset;
1227         if (moof_offset >= offset)
1228             b = m;
1229         if (moof_offset <= offset)
1230             a = m;
1231     }
1232     return b;
1233 }
1234
1235 static int64_t get_stream_info_time(MOVFragmentStreamInfo * frag_stream_info)
1236 {
1237
1238     if (frag_stream_info) {
1239         if (frag_stream_info->sidx_pts != AV_NOPTS_VALUE)
1240             return frag_stream_info->sidx_pts;
1241         if (frag_stream_info->first_tfra_pts != AV_NOPTS_VALUE)
1242             return frag_stream_info->first_tfra_pts;
1243         if (frag_stream_info->tfdt_dts != AV_NOPTS_VALUE)
1244             return frag_stream_info->tfdt_dts;
1245     }
1246     return AV_NOPTS_VALUE;
1247 }
1248
1249 static int64_t get_frag_time(MOVFragmentIndex *frag_index,
1250                              int index, int track_id)
1251 {
1252     MOVFragmentStreamInfo * frag_stream_info;
1253     int64_t timestamp;
1254     int i;
1255
1256     if (track_id >= 0) {
1257         frag_stream_info = get_frag_stream_info(frag_index, index, track_id);
1258         return frag_stream_info->sidx_pts;
1259     }
1260
1261     for (i = 0; i < frag_index->item[index].nb_stream_info; i++) {
1262         frag_stream_info = &frag_index->item[index].stream_info[i];
1263         timestamp = get_stream_info_time(frag_stream_info);
1264         if (timestamp != AV_NOPTS_VALUE)
1265             return timestamp;
1266     }
1267     return AV_NOPTS_VALUE;
1268 }
1269
1270 static int search_frag_timestamp(MOVFragmentIndex *frag_index,
1271                                  AVStream *st, int64_t timestamp)
1272 {
1273     int a, b, m;
1274     int64_t frag_time;
1275     int id = -1;
1276
1277     if (st) {
1278         // If the stream is referenced by any sidx, limit the search
1279         // to fragments that referenced this stream in the sidx
1280         MOVStreamContext *sc = st->priv_data;
1281         if (sc->has_sidx)
1282             id = st->id;
1283     }
1284
1285     a = -1;
1286     b = frag_index->nb_items;
1287
1288     while (b - a > 1) {
1289         m = (a + b) >> 1;
1290         frag_time = get_frag_time(frag_index, m, id);
1291         if (frag_time != AV_NOPTS_VALUE) {
1292             if (frag_time >= timestamp)
1293                 b = m;
1294             if (frag_time <= timestamp)
1295                 a = m;
1296         }
1297     }
1298     return a;
1299 }
1300
1301 static int update_frag_index(MOVContext *c, int64_t offset)
1302 {
1303     int index, i;
1304     MOVFragmentIndexItem * item;
1305     MOVFragmentStreamInfo * frag_stream_info;
1306
1307     // If moof_offset already exists in frag_index, return index to it
1308     index = search_frag_moof_offset(&c->frag_index, offset);
1309     if (index < c->frag_index.nb_items &&
1310         c->frag_index.item[index].moof_offset == offset)
1311         return index;
1312
1313     // offset is not yet in frag index.
1314     // Insert new item at index (sorted by moof offset)
1315     item = av_fast_realloc(c->frag_index.item,
1316                            &c->frag_index.allocated_size,
1317                            (c->frag_index.nb_items + 1) *
1318                            sizeof(*c->frag_index.item));
1319     if(!item)
1320         return -1;
1321     c->frag_index.item = item;
1322
1323     frag_stream_info = av_realloc_array(NULL, c->fc->nb_streams,
1324                                         sizeof(*item->stream_info));
1325     if (!frag_stream_info)
1326         return -1;
1327
1328     for (i = 0; i < c->fc->nb_streams; i++) {
1329         frag_stream_info[i].id = c->fc->streams[i]->id;
1330         frag_stream_info[i].sidx_pts = AV_NOPTS_VALUE;
1331         frag_stream_info[i].tfdt_dts = AV_NOPTS_VALUE;
1332         frag_stream_info[i].first_tfra_pts = AV_NOPTS_VALUE;
1333         frag_stream_info[i].index_entry = -1;
1334         frag_stream_info[i].encryption_index = NULL;
1335     }
1336
1337     if (index < c->frag_index.nb_items)
1338         memmove(c->frag_index.item + index + 1, c->frag_index.item + index,
1339                 (c->frag_index.nb_items - index) * sizeof(*c->frag_index.item));
1340
1341     item = &c->frag_index.item[index];
1342     item->headers_read = 0;
1343     item->current = 0;
1344     item->nb_stream_info = c->fc->nb_streams;
1345     item->moof_offset = offset;
1346     item->stream_info = frag_stream_info;
1347     c->frag_index.nb_items++;
1348
1349     return index;
1350 }
1351
1352 static void fix_frag_index_entries(MOVFragmentIndex *frag_index, int index,
1353                                    int id, int entries)
1354 {
1355     int i;
1356     MOVFragmentStreamInfo * frag_stream_info;
1357
1358     if (index < 0)
1359         return;
1360     for (i = index; i < frag_index->nb_items; i++) {
1361         frag_stream_info = get_frag_stream_info(frag_index, i, id);
1362         if (frag_stream_info && frag_stream_info->index_entry >= 0)
1363             frag_stream_info->index_entry += entries;
1364     }
1365 }
1366
1367 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1368 {
1369     if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
1370         c->has_looked_for_mfra = 1;
1371         if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
1372             int ret;
1373             av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
1374                     "for a mfra\n");
1375             if ((ret = mov_read_mfra(c, pb)) < 0) {
1376                 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
1377                         "read the mfra (may be a live ismv)\n");
1378             }
1379         } else {
1380             av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but stream is not "
1381                     "seekable, can not look for mfra\n");
1382         }
1383     }
1384     c->fragment.moof_offset = c->fragment.implicit_offset = avio_tell(pb) - 8;
1385     av_log(c->fc, AV_LOG_TRACE, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
1386     c->frag_index.current = update_frag_index(c, c->fragment.moof_offset);
1387     return mov_read_default(c, pb, atom);
1388 }
1389
1390 static void mov_metadata_creation_time(AVDictionary **metadata, int64_t time)
1391 {
1392     if (time) {
1393         if(time >= 2082844800)
1394             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
1395
1396         if ((int64_t)(time * 1000000ULL) / 1000000 != time) {
1397             av_log(NULL, AV_LOG_DEBUG, "creation_time is not representable\n");
1398             return;
1399         }
1400
1401         avpriv_dict_set_timestamp(metadata, "creation_time", time * 1000000);
1402     }
1403 }
1404
1405 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1406 {
1407     AVStream *st;
1408     MOVStreamContext *sc;
1409     int version;
1410     char language[4] = {0};
1411     unsigned lang;
1412     int64_t creation_time;
1413
1414     if (c->fc->nb_streams < 1)
1415         return 0;
1416     st = c->fc->streams[c->fc->nb_streams-1];
1417     sc = st->priv_data;
1418
1419     if (sc->time_scale) {
1420         av_log(c->fc, AV_LOG_ERROR, "Multiple mdhd?\n");
1421         return AVERROR_INVALIDDATA;
1422     }
1423
1424     version = avio_r8(pb);
1425     if (version > 1) {
1426         avpriv_request_sample(c->fc, "Version %d", version);
1427         return AVERROR_PATCHWELCOME;
1428     }
1429     avio_rb24(pb); /* flags */
1430     if (version == 1) {
1431         creation_time = avio_rb64(pb);
1432         avio_rb64(pb);
1433     } else {
1434         creation_time = avio_rb32(pb);
1435         avio_rb32(pb); /* modification time */
1436     }
1437     mov_metadata_creation_time(&st->metadata, creation_time);
1438
1439     sc->time_scale = avio_rb32(pb);
1440     if (sc->time_scale <= 0) {
1441         av_log(c->fc, AV_LOG_ERROR, "Invalid mdhd time scale %d, defaulting to 1\n", sc->time_scale);
1442         sc->time_scale = 1;
1443     }
1444     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1445
1446     lang = avio_rb16(pb); /* language */
1447     if (ff_mov_lang_to_iso639(lang, language))
1448         av_dict_set(&st->metadata, "language", language, 0);
1449     avio_rb16(pb); /* quality */
1450
1451     return 0;
1452 }
1453
1454 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1455 {
1456     int i;
1457     int64_t creation_time;
1458     int version = avio_r8(pb); /* version */
1459     avio_rb24(pb); /* flags */
1460
1461     if (version == 1) {
1462         creation_time = avio_rb64(pb);
1463         avio_rb64(pb);
1464     } else {
1465         creation_time = avio_rb32(pb);
1466         avio_rb32(pb); /* modification time */
1467     }
1468     mov_metadata_creation_time(&c->fc->metadata, creation_time);
1469     c->time_scale = avio_rb32(pb); /* time scale */
1470     if (c->time_scale <= 0) {
1471         av_log(c->fc, AV_LOG_ERROR, "Invalid mvhd time scale %d, defaulting to 1\n", c->time_scale);
1472         c->time_scale = 1;
1473     }
1474     av_log(c->fc, AV_LOG_TRACE, "time scale = %i\n", c->time_scale);
1475
1476     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1477     // set the AVCodecContext duration because the duration of individual tracks
1478     // may be inaccurate
1479     if (c->time_scale > 0 && !c->trex_data)
1480         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
1481     avio_rb32(pb); /* preferred scale */
1482
1483     avio_rb16(pb); /* preferred volume */
1484
1485     avio_skip(pb, 10); /* reserved */
1486
1487     /* movie display matrix, store it in main context and use it later on */
1488     for (i = 0; i < 3; i++) {
1489         c->movie_display_matrix[i][0] = avio_rb32(pb); // 16.16 fixed point
1490         c->movie_display_matrix[i][1] = avio_rb32(pb); // 16.16 fixed point
1491         c->movie_display_matrix[i][2] = avio_rb32(pb); //  2.30 fixed point
1492     }
1493
1494     avio_rb32(pb); /* preview time */
1495     avio_rb32(pb); /* preview duration */
1496     avio_rb32(pb); /* poster time */
1497     avio_rb32(pb); /* selection time */
1498     avio_rb32(pb); /* selection duration */
1499     avio_rb32(pb); /* current time */
1500     avio_rb32(pb); /* next track ID */
1501
1502     return 0;
1503 }
1504
1505 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1506 {
1507     AVStream *st;
1508     int little_endian;
1509
1510     if (c->fc->nb_streams < 1)
1511         return 0;
1512     st = c->fc->streams[c->fc->nb_streams-1];
1513
1514     little_endian = avio_rb16(pb) & 0xFF;
1515     av_log(c->fc, AV_LOG_TRACE, "enda %d\n", little_endian);
1516     if (little_endian == 1) {
1517         switch (st->codecpar->codec_id) {
1518         case AV_CODEC_ID_PCM_S24BE:
1519             st->codecpar->codec_id = AV_CODEC_ID_PCM_S24LE;
1520             break;
1521         case AV_CODEC_ID_PCM_S32BE:
1522             st->codecpar->codec_id = AV_CODEC_ID_PCM_S32LE;
1523             break;
1524         case AV_CODEC_ID_PCM_F32BE:
1525             st->codecpar->codec_id = AV_CODEC_ID_PCM_F32LE;
1526             break;
1527         case AV_CODEC_ID_PCM_F64BE:
1528             st->codecpar->codec_id = AV_CODEC_ID_PCM_F64LE;
1529             break;
1530         default:
1531             break;
1532         }
1533     }
1534     return 0;
1535 }
1536
1537 static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1538 {
1539     AVStream *st;
1540     char color_parameter_type[5] = { 0 };
1541     uint16_t color_primaries, color_trc, color_matrix;
1542     int ret;
1543
1544     if (c->fc->nb_streams < 1)
1545         return 0;
1546     st = c->fc->streams[c->fc->nb_streams - 1];
1547
1548     ret = ffio_read_size(pb, color_parameter_type, 4);
1549     if (ret < 0)
1550         return ret;
1551     if (strncmp(color_parameter_type, "nclx", 4) &&
1552         strncmp(color_parameter_type, "nclc", 4)) {
1553         av_log(c->fc, AV_LOG_WARNING, "unsupported color_parameter_type %s\n",
1554                color_parameter_type);
1555         return 0;
1556     }
1557
1558     color_primaries = avio_rb16(pb);
1559     color_trc = avio_rb16(pb);
1560     color_matrix = avio_rb16(pb);
1561
1562     av_log(c->fc, AV_LOG_TRACE,
1563            "%s: pri %d trc %d matrix %d",
1564            color_parameter_type, color_primaries, color_trc, color_matrix);
1565
1566     if (!strncmp(color_parameter_type, "nclx", 4)) {
1567         uint8_t color_range = avio_r8(pb) >> 7;
1568         av_log(c->fc, AV_LOG_TRACE, " full %"PRIu8"", color_range);
1569         if (color_range)
1570             st->codecpar->color_range = AVCOL_RANGE_JPEG;
1571         else
1572             st->codecpar->color_range = AVCOL_RANGE_MPEG;
1573     }
1574
1575     if (!av_color_primaries_name(color_primaries))
1576         color_primaries = AVCOL_PRI_UNSPECIFIED;
1577     if (!av_color_transfer_name(color_trc))
1578         color_trc = AVCOL_TRC_UNSPECIFIED;
1579     if (!av_color_space_name(color_matrix))
1580         color_matrix = AVCOL_SPC_UNSPECIFIED;
1581
1582     st->codecpar->color_primaries = color_primaries;
1583     st->codecpar->color_trc       = color_trc;
1584     st->codecpar->color_space     = color_matrix;
1585     av_log(c->fc, AV_LOG_TRACE, "\n");
1586
1587     return 0;
1588 }
1589
1590 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1591 {
1592     AVStream *st;
1593     unsigned mov_field_order;
1594     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
1595
1596     if (c->fc->nb_streams < 1) // will happen with jp2 files
1597         return 0;
1598     st = c->fc->streams[c->fc->nb_streams-1];
1599     if (atom.size < 2)
1600         return AVERROR_INVALIDDATA;
1601     mov_field_order = avio_rb16(pb);
1602     if ((mov_field_order & 0xFF00) == 0x0100)
1603         decoded_field_order = AV_FIELD_PROGRESSIVE;
1604     else if ((mov_field_order & 0xFF00) == 0x0200) {
1605         switch (mov_field_order & 0xFF) {
1606         case 0x01: decoded_field_order = AV_FIELD_TT;
1607                    break;
1608         case 0x06: decoded_field_order = AV_FIELD_BB;
1609                    break;
1610         case 0x09: decoded_field_order = AV_FIELD_TB;
1611                    break;
1612         case 0x0E: decoded_field_order = AV_FIELD_BT;
1613                    break;
1614         }
1615     }
1616     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
1617         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
1618     }
1619     st->codecpar->field_order = decoded_field_order;
1620
1621     return 0;
1622 }
1623
1624 static int mov_realloc_extradata(AVCodecParameters *par, MOVAtom atom)
1625 {
1626     int err = 0;
1627     uint64_t size = (uint64_t)par->extradata_size + atom.size + 8 + AV_INPUT_BUFFER_PADDING_SIZE;
1628     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
1629         return AVERROR_INVALIDDATA;
1630     if ((err = av_reallocp(&par->extradata, size)) < 0) {
1631         par->extradata_size = 0;
1632         return err;
1633     }
1634     par->extradata_size = size - AV_INPUT_BUFFER_PADDING_SIZE;
1635     return 0;
1636 }
1637
1638 /* Read a whole atom into the extradata return the size of the atom read, possibly truncated if != atom.size */
1639 static int64_t mov_read_atom_into_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1640                                         AVCodecParameters *par, uint8_t *buf)
1641 {
1642     int64_t result = atom.size;
1643     int err;
1644
1645     AV_WB32(buf    , atom.size + 8);
1646     AV_WL32(buf + 4, atom.type);
1647     err = ffio_read_size(pb, buf + 8, atom.size);
1648     if (err < 0) {
1649         par->extradata_size -= atom.size;
1650         return err;
1651     } else if (err < atom.size) {
1652         av_log(c->fc, AV_LOG_WARNING, "truncated extradata\n");
1653         par->extradata_size -= atom.size - err;
1654         result = err;
1655     }
1656     memset(buf + 8 + err, 0, AV_INPUT_BUFFER_PADDING_SIZE);
1657     return result;
1658 }
1659
1660 /* FIXME modify QDM2/SVQ3/H.264 decoders to take full atom as extradata */
1661 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1662                               enum AVCodecID codec_id)
1663 {
1664     AVStream *st;
1665     uint64_t original_size;
1666     int err;
1667
1668     if (c->fc->nb_streams < 1) // will happen with jp2 files
1669         return 0;
1670     st = c->fc->streams[c->fc->nb_streams-1];
1671
1672     if (st->codecpar->codec_id != codec_id)
1673         return 0; /* unexpected codec_id - don't mess with extradata */
1674
1675     original_size = st->codecpar->extradata_size;
1676     err = mov_realloc_extradata(st->codecpar, atom);
1677     if (err)
1678         return err;
1679
1680     err =  mov_read_atom_into_extradata(c, pb, atom, st->codecpar,  st->codecpar->extradata + original_size);
1681     if (err < 0)
1682         return err;
1683     return 0; // Note: this is the original behavior to ignore truncation.
1684 }
1685
1686 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
1687 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1688 {
1689     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
1690 }
1691
1692 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1693 {
1694     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
1695 }
1696
1697 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1698 {
1699     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
1700 }
1701
1702 static int mov_read_dpxe(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1703 {
1704     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_R10K);
1705 }
1706
1707 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1708 {
1709     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1710     if(ret == 0)
1711         ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1712     return ret;
1713 }
1714
1715 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1716 {
1717     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1718
1719     if (!ret && c->fc->nb_streams >= 1) {
1720         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1721         if (par->extradata_size >= 40) {
1722             par->height = AV_RB16(&par->extradata[36]);
1723             par->width  = AV_RB16(&par->extradata[38]);
1724         }
1725     }
1726     return ret;
1727 }
1728
1729 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1730 {
1731     if (c->fc->nb_streams >= 1) {
1732         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1733         if (par->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1734             par->codec_id == AV_CODEC_ID_H264 &&
1735             atom.size > 11) {
1736             int cid;
1737             avio_skip(pb, 10);
1738             cid = avio_rb16(pb);
1739             /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1740             if (cid == 0xd4d || cid == 0xd4e)
1741                 par->width = 1440;
1742             return 0;
1743         } else if ((par->codec_tag == MKTAG('A', 'V', 'd', '1') ||
1744                     par->codec_tag == MKTAG('A', 'V', 'j', '2') ||
1745                     par->codec_tag == MKTAG('A', 'V', 'd', 'n')) &&
1746                    atom.size >= 24) {
1747             int num, den;
1748             avio_skip(pb, 12);
1749             num = avio_rb32(pb);
1750             den = avio_rb32(pb);
1751             if (num <= 0 || den <= 0)
1752                 return 0;
1753             switch (avio_rb32(pb)) {
1754             case 2:
1755                 if (den >= INT_MAX / 2)
1756                     return 0;
1757                 den *= 2;
1758             case 1:
1759                 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.num = num;
1760                 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.den = den;
1761             default:
1762                 return 0;
1763             }
1764         }
1765     }
1766
1767     return mov_read_avid(c, pb, atom);
1768 }
1769
1770 static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1771 {
1772     int ret = 0;
1773     int length = 0;
1774     uint64_t original_size;
1775     if (c->fc->nb_streams >= 1) {
1776         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1777         if (par->codec_id == AV_CODEC_ID_H264)
1778             return 0;
1779         if (atom.size == 16) {
1780             original_size = par->extradata_size;
1781             ret = mov_realloc_extradata(par, atom);
1782             if (!ret) {
1783                 length =  mov_read_atom_into_extradata(c, pb, atom, par, par->extradata + original_size);
1784                 if (length == atom.size) {
1785                     const uint8_t range_value = par->extradata[original_size + 19];
1786                     switch (range_value) {
1787                     case 1:
1788                         par->color_range = AVCOL_RANGE_MPEG;
1789                         break;
1790                     case 2:
1791                         par->color_range = AVCOL_RANGE_JPEG;
1792                         break;
1793                     default:
1794                         av_log(c, AV_LOG_WARNING, "ignored unknown aclr value (%d)\n", range_value);
1795                         break;
1796                     }
1797                     ff_dlog(c, "color_range: %d\n", par->color_range);
1798                 } else {
1799                   /* For some reason the whole atom was not added to the extradata */
1800                   av_log(c, AV_LOG_ERROR, "aclr not decoded - incomplete atom\n");
1801                 }
1802             } else {
1803                 av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
1804             }
1805         } else {
1806             av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
1807         }
1808     }
1809
1810     return ret;
1811 }
1812
1813 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1814 {
1815     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1816 }
1817
1818 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1819 {
1820     AVStream *st;
1821     int ret;
1822
1823     if (c->fc->nb_streams < 1)
1824         return 0;
1825     st = c->fc->streams[c->fc->nb_streams-1];
1826
1827     if ((uint64_t)atom.size > (1<<30))
1828         return AVERROR_INVALIDDATA;
1829
1830     if (st->codecpar->codec_id == AV_CODEC_ID_QDM2 ||
1831         st->codecpar->codec_id == AV_CODEC_ID_QDMC ||
1832         st->codecpar->codec_id == AV_CODEC_ID_SPEEX) {
1833         // pass all frma atom to codec, needed at least for QDMC and QDM2
1834         av_freep(&st->codecpar->extradata);
1835         ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1836         if (ret < 0)
1837             return ret;
1838     } else if (atom.size > 8) { /* to read frma, esds atoms */
1839         if (st->codecpar->codec_id == AV_CODEC_ID_ALAC && atom.size >= 24) {
1840             uint64_t buffer;
1841             ret = ffio_ensure_seekback(pb, 8);
1842             if (ret < 0)
1843                 return ret;
1844             buffer = avio_rb64(pb);
1845             atom.size -= 8;
1846             if (  (buffer & 0xFFFFFFFF) == MKBETAG('f','r','m','a')
1847                 && buffer >> 32 <= atom.size
1848                 && buffer >> 32 >= 8) {
1849                 avio_skip(pb, -8);
1850                 atom.size += 8;
1851             } else if (!st->codecpar->extradata_size) {
1852 #define ALAC_EXTRADATA_SIZE 36
1853                 st->codecpar->extradata = av_mallocz(ALAC_EXTRADATA_SIZE + AV_INPUT_BUFFER_PADDING_SIZE);
1854                 if (!st->codecpar->extradata)
1855                     return AVERROR(ENOMEM);
1856                 st->codecpar->extradata_size = ALAC_EXTRADATA_SIZE;
1857                 AV_WB32(st->codecpar->extradata    , ALAC_EXTRADATA_SIZE);
1858                 AV_WB32(st->codecpar->extradata + 4, MKTAG('a','l','a','c'));
1859                 AV_WB64(st->codecpar->extradata + 12, buffer);
1860                 avio_read(pb, st->codecpar->extradata + 20, 16);
1861                 avio_skip(pb, atom.size - 24);
1862                 return 0;
1863             }
1864         }
1865         if ((ret = mov_read_default(c, pb, atom)) < 0)
1866             return ret;
1867     } else
1868         avio_skip(pb, atom.size);
1869     return 0;
1870 }
1871
1872 /**
1873  * This function reads atom content and puts data in extradata without tag
1874  * nor size unlike mov_read_extradata.
1875  */
1876 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1877 {
1878     AVStream *st;
1879     int ret;
1880
1881     if (c->fc->nb_streams < 1)
1882         return 0;
1883     st = c->fc->streams[c->fc->nb_streams-1];
1884
1885     if ((uint64_t)atom.size > (1<<30))
1886         return AVERROR_INVALIDDATA;
1887
1888     if (atom.size >= 10) {
1889         // Broken files created by legacy versions of libavformat will
1890         // wrap a whole fiel atom inside of a glbl atom.
1891         unsigned size = avio_rb32(pb);
1892         unsigned type = avio_rl32(pb);
1893         avio_seek(pb, -8, SEEK_CUR);
1894         if (type == MKTAG('f','i','e','l') && size == atom.size)
1895             return mov_read_default(c, pb, atom);
1896     }
1897     if (st->codecpar->extradata_size > 1 && st->codecpar->extradata) {
1898         av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1899         return 0;
1900     }
1901     av_freep(&st->codecpar->extradata);
1902     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1903     if (ret < 0)
1904         return ret;
1905     if (atom.type == MKTAG('h','v','c','C') && st->codecpar->codec_tag == MKTAG('d','v','h','1'))
1906         st->codecpar->codec_id = AV_CODEC_ID_HEVC;
1907
1908     return 0;
1909 }
1910
1911 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1912 {
1913     AVStream *st;
1914     uint8_t profile_level;
1915     int ret;
1916
1917     if (c->fc->nb_streams < 1)
1918         return 0;
1919     st = c->fc->streams[c->fc->nb_streams-1];
1920
1921     if (atom.size >= (1<<28) || atom.size < 7)
1922         return AVERROR_INVALIDDATA;
1923
1924     profile_level = avio_r8(pb);
1925     if ((profile_level & 0xf0) != 0xc0)
1926         return 0;
1927
1928     avio_seek(pb, 6, SEEK_CUR);
1929     av_freep(&st->codecpar->extradata);
1930     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 7);
1931     if (ret < 0)
1932         return ret;
1933
1934     return 0;
1935 }
1936
1937 /**
1938  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1939  * but can have extradata appended at the end after the 40 bytes belonging
1940  * to the struct.
1941  */
1942 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1943 {
1944     AVStream *st;
1945     int ret;
1946
1947     if (c->fc->nb_streams < 1)
1948         return 0;
1949     if (atom.size <= 40)
1950         return 0;
1951     st = c->fc->streams[c->fc->nb_streams-1];
1952
1953     if ((uint64_t)atom.size > (1<<30))
1954         return AVERROR_INVALIDDATA;
1955
1956     avio_skip(pb, 40);
1957     av_freep(&st->codecpar->extradata);
1958     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 40);
1959     if (ret < 0)
1960         return ret;
1961
1962     return 0;
1963 }
1964
1965 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1966 {
1967     AVStream *st;
1968     MOVStreamContext *sc;
1969     unsigned int i, entries;
1970
1971     if (c->fc->nb_streams < 1)
1972         return 0;
1973     st = c->fc->streams[c->fc->nb_streams-1];
1974     sc = st->priv_data;
1975
1976     avio_r8(pb); /* version */
1977     avio_rb24(pb); /* flags */
1978
1979     entries = avio_rb32(pb);
1980
1981     if (!entries)
1982         return 0;
1983
1984     if (sc->chunk_offsets)
1985         av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1986     av_free(sc->chunk_offsets);
1987     sc->chunk_count = 0;
1988     sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1989     if (!sc->chunk_offsets)
1990         return AVERROR(ENOMEM);
1991     sc->chunk_count = entries;
1992
1993     if      (atom.type == MKTAG('s','t','c','o'))
1994         for (i = 0; i < entries && !pb->eof_reached; i++)
1995             sc->chunk_offsets[i] = avio_rb32(pb);
1996     else if (atom.type == MKTAG('c','o','6','4'))
1997         for (i = 0; i < entries && !pb->eof_reached; i++)
1998             sc->chunk_offsets[i] = avio_rb64(pb);
1999     else
2000         return AVERROR_INVALIDDATA;
2001
2002     sc->chunk_count = i;
2003
2004     if (pb->eof_reached) {
2005         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STCO atom\n");
2006         return AVERROR_EOF;
2007     }
2008
2009     return 0;
2010 }
2011
2012 static int mov_codec_id(AVStream *st, uint32_t format)
2013 {
2014     int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
2015
2016     if (id <= 0 &&
2017         ((format & 0xFFFF) == 'm' + ('s' << 8) ||
2018          (format & 0xFFFF) == 'T' + ('S' << 8)))
2019         id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
2020
2021     if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
2022         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
2023     } else if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO &&
2024                /* skip old ASF MPEG-4 tag */
2025                format && format != MKTAG('m','p','4','s')) {
2026         id = ff_codec_get_id(ff_codec_movvideo_tags, format);
2027         if (id <= 0)
2028             id = ff_codec_get_id(ff_codec_bmp_tags, format);
2029         if (id > 0)
2030             st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
2031         else if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA ||
2032                     (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE &&
2033                     st->codecpar->codec_id == AV_CODEC_ID_NONE)) {
2034             id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
2035             if (id > 0)
2036                 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2037         }
2038     }
2039
2040     st->codecpar->codec_tag = format;
2041
2042     return id;
2043 }
2044
2045 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
2046                                  AVStream *st, MOVStreamContext *sc)
2047 {
2048     uint8_t codec_name[32] = { 0 };
2049     int64_t stsd_start;
2050     unsigned int len;
2051
2052     /* The first 16 bytes of the video sample description are already
2053      * read in ff_mov_read_stsd_entries() */
2054     stsd_start = avio_tell(pb) - 16;
2055
2056     avio_rb16(pb); /* version */
2057     avio_rb16(pb); /* revision level */
2058     avio_rb32(pb); /* vendor */
2059     avio_rb32(pb); /* temporal quality */
2060     avio_rb32(pb); /* spatial quality */
2061
2062     st->codecpar->width  = avio_rb16(pb); /* width */
2063     st->codecpar->height = avio_rb16(pb); /* height */
2064
2065     avio_rb32(pb); /* horiz resolution */
2066     avio_rb32(pb); /* vert resolution */
2067     avio_rb32(pb); /* data size, always 0 */
2068     avio_rb16(pb); /* frames per samples */
2069
2070     len = avio_r8(pb); /* codec name, pascal string */
2071     if (len > 31)
2072         len = 31;
2073     mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
2074     if (len < 31)
2075         avio_skip(pb, 31 - len);
2076
2077     if (codec_name[0])
2078         av_dict_set(&st->metadata, "encoder", codec_name, 0);
2079
2080     /* codec_tag YV12 triggers an UV swap in rawdec.c */
2081     if (!strncmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
2082         st->codecpar->codec_tag = MKTAG('I', '4', '2', '0');
2083         st->codecpar->width &= ~1;
2084         st->codecpar->height &= ~1;
2085     }
2086     /* Flash Media Server uses tag H.263 with Sorenson Spark */
2087     if (st->codecpar->codec_tag == MKTAG('H','2','6','3') &&
2088         !strncmp(codec_name, "Sorenson H263", 13))
2089         st->codecpar->codec_id = AV_CODEC_ID_FLV1;
2090
2091     st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* depth */
2092
2093     avio_seek(pb, stsd_start, SEEK_SET);
2094
2095     if (ff_get_qtpalette(st->codecpar->codec_id, pb, sc->palette)) {
2096         st->codecpar->bits_per_coded_sample &= 0x1F;
2097         sc->has_palette = 1;
2098     }
2099 }
2100
2101 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
2102                                  AVStream *st, MOVStreamContext *sc)
2103 {
2104     int bits_per_sample, flags;
2105     uint16_t version = avio_rb16(pb);
2106     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
2107
2108     avio_rb16(pb); /* revision level */
2109     avio_rb32(pb); /* vendor */
2110
2111     st->codecpar->channels              = avio_rb16(pb); /* channel count */
2112     st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* sample size */
2113     av_log(c->fc, AV_LOG_TRACE, "audio channels %d\n", st->codecpar->channels);
2114
2115     sc->audio_cid = avio_rb16(pb);
2116     avio_rb16(pb); /* packet size = 0 */
2117
2118     st->codecpar->sample_rate = ((avio_rb32(pb) >> 16));
2119
2120     // Read QT version 1 fields. In version 0 these do not exist.
2121     av_log(c->fc, AV_LOG_TRACE, "version =%d, isom =%d\n", version, c->isom);
2122     if (!c->isom ||
2123         (compatible_brands && strstr(compatible_brands->value, "qt  "))) {
2124
2125         if (version == 1) {
2126             sc->samples_per_frame = avio_rb32(pb);
2127             avio_rb32(pb); /* bytes per packet */
2128             sc->bytes_per_frame = avio_rb32(pb);
2129             avio_rb32(pb); /* bytes per sample */
2130         } else if (version == 2) {
2131             avio_rb32(pb); /* sizeof struct only */
2132             st->codecpar->sample_rate = av_int2double(avio_rb64(pb));
2133             st->codecpar->channels    = avio_rb32(pb);
2134             avio_rb32(pb); /* always 0x7F000000 */
2135             st->codecpar->bits_per_coded_sample = avio_rb32(pb);
2136
2137             flags = avio_rb32(pb); /* lpcm format specific flag */
2138             sc->bytes_per_frame   = avio_rb32(pb);
2139             sc->samples_per_frame = avio_rb32(pb);
2140             if (st->codecpar->codec_tag == MKTAG('l','p','c','m'))
2141                 st->codecpar->codec_id =
2142                     ff_mov_get_lpcm_codec_id(st->codecpar->bits_per_coded_sample,
2143                                              flags);
2144         }
2145         if (version == 0 || (version == 1 && sc->audio_cid != -2)) {
2146             /* can't correctly handle variable sized packet as audio unit */
2147             switch (st->codecpar->codec_id) {
2148             case AV_CODEC_ID_MP2:
2149             case AV_CODEC_ID_MP3:
2150                 st->need_parsing = AVSTREAM_PARSE_FULL;
2151                 break;
2152             }
2153         }
2154     }
2155
2156     if (sc->format == 0) {
2157         if (st->codecpar->bits_per_coded_sample == 8)
2158             st->codecpar->codec_id = mov_codec_id(st, MKTAG('r','a','w',' '));
2159         else if (st->codecpar->bits_per_coded_sample == 16)
2160             st->codecpar->codec_id = mov_codec_id(st, MKTAG('t','w','o','s'));
2161     }
2162
2163     switch (st->codecpar->codec_id) {
2164     case AV_CODEC_ID_PCM_S8:
2165     case AV_CODEC_ID_PCM_U8:
2166         if (st->codecpar->bits_per_coded_sample == 16)
2167             st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE;
2168         break;
2169     case AV_CODEC_ID_PCM_S16LE:
2170     case AV_CODEC_ID_PCM_S16BE:
2171         if (st->codecpar->bits_per_coded_sample == 8)
2172             st->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
2173         else if (st->codecpar->bits_per_coded_sample == 24)
2174             st->codecpar->codec_id =
2175                 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
2176                 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
2177         else if (st->codecpar->bits_per_coded_sample == 32)
2178              st->codecpar->codec_id =
2179                 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
2180                 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
2181         break;
2182     /* set values for old format before stsd version 1 appeared */
2183     case AV_CODEC_ID_MACE3:
2184         sc->samples_per_frame = 6;
2185         sc->bytes_per_frame   = 2 * st->codecpar->channels;
2186         break;
2187     case AV_CODEC_ID_MACE6:
2188         sc->samples_per_frame = 6;
2189         sc->bytes_per_frame   = 1 * st->codecpar->channels;
2190         break;
2191     case AV_CODEC_ID_ADPCM_IMA_QT:
2192         sc->samples_per_frame = 64;
2193         sc->bytes_per_frame   = 34 * st->codecpar->channels;
2194         break;
2195     case AV_CODEC_ID_GSM:
2196         sc->samples_per_frame = 160;
2197         sc->bytes_per_frame   = 33;
2198         break;
2199     default:
2200         break;
2201     }
2202
2203     bits_per_sample = av_get_bits_per_sample(st->codecpar->codec_id);
2204     if (bits_per_sample) {
2205         st->codecpar->bits_per_coded_sample = bits_per_sample;
2206         sc->sample_size = (bits_per_sample >> 3) * st->codecpar->channels;
2207     }
2208 }
2209
2210 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
2211                                     AVStream *st, MOVStreamContext *sc,
2212                                     int64_t size)
2213 {
2214     // ttxt stsd contains display flags, justification, background
2215     // color, fonts, and default styles, so fake an atom to read it
2216     MOVAtom fake_atom = { .size = size };
2217     // mp4s contains a regular esds atom
2218     if (st->codecpar->codec_tag != AV_RL32("mp4s"))
2219         mov_read_glbl(c, pb, fake_atom);
2220     st->codecpar->width  = sc->width;
2221     st->codecpar->height = sc->height;
2222 }
2223
2224 static uint32_t yuv_to_rgba(uint32_t ycbcr)
2225 {
2226     uint8_t r, g, b;
2227     int y, cb, cr;
2228
2229     y  = (ycbcr >> 16) & 0xFF;
2230     cr = (ycbcr >> 8)  & 0xFF;
2231     cb =  ycbcr        & 0xFF;
2232
2233     b = av_clip_uint8((1164 * (y - 16)                     + 2018 * (cb - 128)) / 1000);
2234     g = av_clip_uint8((1164 * (y - 16) -  813 * (cr - 128) -  391 * (cb - 128)) / 1000);
2235     r = av_clip_uint8((1164 * (y - 16) + 1596 * (cr - 128)                    ) / 1000);
2236
2237     return (r << 16) | (g << 8) | b;
2238 }
2239
2240 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
2241 {
2242     char buf[256] = {0};
2243     uint8_t *src = st->codecpar->extradata;
2244     int i;
2245
2246     if (st->codecpar->extradata_size != 64)
2247         return 0;
2248
2249     if (st->codecpar->width > 0 &&  st->codecpar->height > 0)
2250         snprintf(buf, sizeof(buf), "size: %dx%d\n",
2251                  st->codecpar->width, st->codecpar->height);
2252     av_strlcat(buf, "palette: ", sizeof(buf));
2253
2254     for (i = 0; i < 16; i++) {
2255         uint32_t yuv = AV_RB32(src + i * 4);
2256         uint32_t rgba = yuv_to_rgba(yuv);
2257
2258         av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
2259     }
2260
2261     if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
2262         return 0;
2263
2264     av_freep(&st->codecpar->extradata);
2265     st->codecpar->extradata_size = 0;
2266     st->codecpar->extradata = av_mallocz(strlen(buf) + AV_INPUT_BUFFER_PADDING_SIZE);
2267     if (!st->codecpar->extradata)
2268         return AVERROR(ENOMEM);
2269     st->codecpar->extradata_size = strlen(buf);
2270     memcpy(st->codecpar->extradata, buf, st->codecpar->extradata_size);
2271
2272     return 0;
2273 }
2274
2275 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
2276                                 AVStream *st, MOVStreamContext *sc,
2277                                 int64_t size)
2278 {
2279     int ret;
2280
2281     if (st->codecpar->codec_tag == MKTAG('t','m','c','d')) {
2282         if ((int)size != size)
2283             return AVERROR(ENOMEM);
2284
2285         ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
2286         if (ret < 0)
2287             return ret;
2288         if (size > 16) {
2289             MOVStreamContext *tmcd_ctx = st->priv_data;
2290             int val;
2291             val = AV_RB32(st->codecpar->extradata + 4);
2292             tmcd_ctx->tmcd_flags = val;
2293             st->avg_frame_rate.num = st->codecpar->extradata[16]; /* number of frame */
2294             st->avg_frame_rate.den = 1;
2295 #if FF_API_LAVF_AVCTX
2296 FF_DISABLE_DEPRECATION_WARNINGS
2297             st->codec->time_base = av_inv_q(st->avg_frame_rate);
2298 FF_ENABLE_DEPRECATION_WARNINGS
2299 #endif
2300             /* adjust for per frame dur in counter mode */
2301             if (tmcd_ctx->tmcd_flags & 0x0008) {
2302                 int timescale = AV_RB32(st->codecpar->extradata + 8);
2303                 int framedur = AV_RB32(st->codecpar->extradata + 12);
2304                 st->avg_frame_rate.num *= timescale;
2305                 st->avg_frame_rate.den *= framedur;
2306 #if FF_API_LAVF_AVCTX
2307 FF_DISABLE_DEPRECATION_WARNINGS
2308                 st->codec->time_base.den *= timescale;
2309                 st->codec->time_base.num *= framedur;
2310 FF_ENABLE_DEPRECATION_WARNINGS
2311 #endif
2312             }
2313             if (size > 30) {
2314                 uint32_t len = AV_RB32(st->codecpar->extradata + 18); /* name atom length */
2315                 uint32_t format = AV_RB32(st->codecpar->extradata + 22);
2316                 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
2317                     uint16_t str_size = AV_RB16(st->codecpar->extradata + 26); /* string length */
2318                     if (str_size > 0 && size >= (int)str_size + 26) {
2319                         char *reel_name = av_malloc(str_size + 1);
2320                         if (!reel_name)
2321                             return AVERROR(ENOMEM);
2322                         memcpy(reel_name, st->codecpar->extradata + 30, str_size);
2323                         reel_name[str_size] = 0; /* Add null terminator */
2324                         /* don't add reel_name if emtpy string */
2325                         if (*reel_name == 0) {
2326                             av_free(reel_name);
2327                         } else {
2328                             av_dict_set(&st->metadata, "reel_name", reel_name,  AV_DICT_DONT_STRDUP_VAL);
2329                         }
2330                     }
2331                 }
2332             }
2333         }
2334     } else {
2335         /* other codec type, just skip (rtp, mp4s ...) */
2336         avio_skip(pb, size);
2337     }
2338     return 0;
2339 }
2340
2341 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
2342                                    AVStream *st, MOVStreamContext *sc)
2343 {
2344     if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
2345         !st->codecpar->sample_rate && sc->time_scale > 1)
2346         st->codecpar->sample_rate = sc->time_scale;
2347
2348     /* special codec parameters handling */
2349     switch (st->codecpar->codec_id) {
2350 #if CONFIG_DV_DEMUXER
2351     case AV_CODEC_ID_DVAUDIO:
2352         c->dv_fctx = avformat_alloc_context();
2353         if (!c->dv_fctx) {
2354             av_log(c->fc, AV_LOG_ERROR, "dv demux context alloc error\n");
2355             return AVERROR(ENOMEM);
2356         }
2357         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
2358         if (!c->dv_demux) {
2359             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
2360             return AVERROR(ENOMEM);
2361         }
2362         sc->dv_audio_container = 1;
2363         st->codecpar->codec_id    = AV_CODEC_ID_PCM_S16LE;
2364         break;
2365 #endif
2366     /* no ifdef since parameters are always those */
2367     case AV_CODEC_ID_QCELP:
2368         st->codecpar->channels = 1;
2369         // force sample rate for qcelp when not stored in mov
2370         if (st->codecpar->codec_tag != MKTAG('Q','c','l','p'))
2371             st->codecpar->sample_rate = 8000;
2372         // FIXME: Why is the following needed for some files?
2373         sc->samples_per_frame = 160;
2374         if (!sc->bytes_per_frame)
2375             sc->bytes_per_frame = 35;
2376         break;
2377     case AV_CODEC_ID_AMR_NB:
2378         st->codecpar->channels    = 1;
2379         /* force sample rate for amr, stsd in 3gp does not store sample rate */
2380         st->codecpar->sample_rate = 8000;
2381         break;
2382     case AV_CODEC_ID_AMR_WB:
2383         st->codecpar->channels    = 1;
2384         st->codecpar->sample_rate = 16000;
2385         break;
2386     case AV_CODEC_ID_MP2:
2387     case AV_CODEC_ID_MP3:
2388         /* force type after stsd for m1a hdlr */
2389         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
2390         break;
2391     case AV_CODEC_ID_GSM:
2392     case AV_CODEC_ID_ADPCM_MS:
2393     case AV_CODEC_ID_ADPCM_IMA_WAV:
2394     case AV_CODEC_ID_ILBC:
2395     case AV_CODEC_ID_MACE3:
2396     case AV_CODEC_ID_MACE6:
2397     case AV_CODEC_ID_QDM2:
2398         st->codecpar->block_align = sc->bytes_per_frame;
2399         break;
2400     case AV_CODEC_ID_ALAC:
2401         if (st->codecpar->extradata_size == 36) {
2402             st->codecpar->channels    = AV_RB8 (st->codecpar->extradata + 21);
2403             st->codecpar->sample_rate = AV_RB32(st->codecpar->extradata + 32);
2404         }
2405         break;
2406     case AV_CODEC_ID_AC3:
2407     case AV_CODEC_ID_EAC3:
2408     case AV_CODEC_ID_MPEG1VIDEO:
2409     case AV_CODEC_ID_VC1:
2410     case AV_CODEC_ID_VP8:
2411     case AV_CODEC_ID_VP9:
2412         st->need_parsing = AVSTREAM_PARSE_FULL;
2413         break;
2414     default:
2415         break;
2416     }
2417     return 0;
2418 }
2419
2420 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
2421                                   int codec_tag, int format,
2422                                   int64_t size)
2423 {
2424     int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
2425
2426     if (codec_tag &&
2427          (codec_tag != format &&
2428           // AVID 1:1 samples with differing data format and codec tag exist
2429           (codec_tag != AV_RL32("AV1x") || format != AV_RL32("AVup")) &&
2430           // prores is allowed to have differing data format and codec tag
2431           codec_tag != AV_RL32("apcn") && codec_tag != AV_RL32("apch") &&
2432           // so is dv (sigh)
2433           codec_tag != AV_RL32("dvpp") && codec_tag != AV_RL32("dvcp") &&
2434           (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
2435                                  : codec_tag != MKTAG('j','p','e','g')))) {
2436         /* Multiple fourcc, we skip JPEG. This is not correct, we should
2437          * export it as a separate AVStream but this needs a few changes
2438          * in the MOV demuxer, patch welcome. */
2439
2440         av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
2441         avio_skip(pb, size);
2442         return 1;
2443     }
2444
2445     return 0;
2446 }
2447
2448 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
2449 {
2450     AVStream *st;
2451     MOVStreamContext *sc;
2452     int pseudo_stream_id;
2453
2454     av_assert0 (c->fc->nb_streams >= 1);
2455     st = c->fc->streams[c->fc->nb_streams-1];
2456     sc = st->priv_data;
2457
2458     for (pseudo_stream_id = 0;
2459          pseudo_stream_id < entries && !pb->eof_reached;
2460          pseudo_stream_id++) {
2461         //Parsing Sample description table
2462         enum AVCodecID id;
2463         int ret, dref_id = 1;
2464         MOVAtom a = { AV_RL32("stsd") };
2465         int64_t start_pos = avio_tell(pb);
2466         int64_t size    = avio_rb32(pb); /* size */
2467         uint32_t format = avio_rl32(pb); /* data format */
2468
2469         if (size >= 16) {
2470             avio_rb32(pb); /* reserved */
2471             avio_rb16(pb); /* reserved */
2472             dref_id = avio_rb16(pb);
2473         } else if (size <= 7) {
2474             av_log(c->fc, AV_LOG_ERROR,
2475                    "invalid size %"PRId64" in stsd\n", size);
2476             return AVERROR_INVALIDDATA;
2477         }
2478
2479         if (mov_skip_multiple_stsd(c, pb, st->codecpar->codec_tag, format,
2480                                    size - (avio_tell(pb) - start_pos))) {
2481             sc->stsd_count++;
2482             continue;
2483         }
2484
2485         sc->pseudo_stream_id = st->codecpar->codec_tag ? -1 : pseudo_stream_id;
2486         sc->dref_id= dref_id;
2487         sc->format = format;
2488
2489         id = mov_codec_id(st, format);
2490
2491         av_log(c->fc, AV_LOG_TRACE,
2492                "size=%"PRId64" 4CC=%s codec_type=%d\n", size,
2493                av_fourcc2str(format), st->codecpar->codec_type);
2494
2495         if (st->codecpar->codec_type==AVMEDIA_TYPE_VIDEO) {
2496             st->codecpar->codec_id = id;
2497             mov_parse_stsd_video(c, pb, st, sc);
2498         } else if (st->codecpar->codec_type==AVMEDIA_TYPE_AUDIO) {
2499             st->codecpar->codec_id = id;
2500             mov_parse_stsd_audio(c, pb, st, sc);
2501             if (st->codecpar->sample_rate < 0) {
2502                 av_log(c->fc, AV_LOG_ERROR, "Invalid sample rate %d\n", st->codecpar->sample_rate);
2503                 return AVERROR_INVALIDDATA;
2504             }
2505         } else if (st->codecpar->codec_type==AVMEDIA_TYPE_SUBTITLE){
2506             st->codecpar->codec_id = id;
2507             mov_parse_stsd_subtitle(c, pb, st, sc,
2508                                     size - (avio_tell(pb) - start_pos));
2509         } else {
2510             ret = mov_parse_stsd_data(c, pb, st, sc,
2511                                       size - (avio_tell(pb) - start_pos));
2512             if (ret < 0)
2513                 return ret;
2514         }
2515         /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
2516         a.size = size - (avio_tell(pb) - start_pos);
2517         if (a.size > 8) {
2518             if ((ret = mov_read_default(c, pb, a)) < 0)
2519                 return ret;
2520         } else if (a.size > 0)
2521             avio_skip(pb, a.size);
2522
2523         if (sc->extradata && st->codecpar->extradata) {
2524             int extra_size = st->codecpar->extradata_size;
2525
2526             /* Move the current stream extradata to the stream context one. */
2527             sc->extradata_size[pseudo_stream_id] = extra_size;
2528             sc->extradata[pseudo_stream_id] = av_malloc(extra_size + AV_INPUT_BUFFER_PADDING_SIZE);
2529             if (!sc->extradata[pseudo_stream_id])
2530                 return AVERROR(ENOMEM);
2531             memcpy(sc->extradata[pseudo_stream_id], st->codecpar->extradata, extra_size);
2532             av_freep(&st->codecpar->extradata);
2533             st->codecpar->extradata_size = 0;
2534         }
2535         sc->stsd_count++;
2536     }
2537
2538     if (pb->eof_reached) {
2539         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSD atom\n");
2540         return AVERROR_EOF;
2541     }
2542
2543     return 0;
2544 }
2545
2546 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2547 {
2548     AVStream *st;
2549     MOVStreamContext *sc;
2550     int ret, entries;
2551
2552     if (c->fc->nb_streams < 1)
2553         return 0;
2554     st = c->fc->streams[c->fc->nb_streams - 1];
2555     sc = st->priv_data;
2556
2557     avio_r8(pb); /* version */
2558     avio_rb24(pb); /* flags */
2559     entries = avio_rb32(pb);
2560
2561     if (entries <= 0) {
2562         av_log(c->fc, AV_LOG_ERROR, "invalid STSD entries %d\n", entries);
2563         return AVERROR_INVALIDDATA;
2564     }
2565
2566     if (sc->extradata) {
2567         av_log(c->fc, AV_LOG_ERROR,
2568                "Duplicate stsd found in this track.\n");
2569         return AVERROR_INVALIDDATA;
2570     }
2571
2572     /* Prepare space for hosting multiple extradata. */
2573     sc->extradata = av_mallocz_array(entries, sizeof(*sc->extradata));
2574     if (!sc->extradata)
2575         return AVERROR(ENOMEM);
2576
2577     sc->extradata_size = av_mallocz_array(entries, sizeof(*sc->extradata_size));
2578     if (!sc->extradata_size) {
2579         ret = AVERROR(ENOMEM);
2580         goto fail;
2581     }
2582
2583     ret = ff_mov_read_stsd_entries(c, pb, entries);
2584     if (ret < 0)
2585         goto fail;
2586
2587     /* Restore back the primary extradata. */
2588     av_freep(&st->codecpar->extradata);
2589     st->codecpar->extradata_size = sc->extradata_size[0];
2590     if (sc->extradata_size[0]) {
2591         st->codecpar->extradata = av_mallocz(sc->extradata_size[0] + AV_INPUT_BUFFER_PADDING_SIZE);
2592         if (!st->codecpar->extradata)
2593             return AVERROR(ENOMEM);
2594         memcpy(st->codecpar->extradata, sc->extradata[0], sc->extradata_size[0]);
2595     }
2596
2597     return mov_finalize_stsd_codec(c, pb, st, sc);
2598 fail:
2599     if (sc->extradata) {
2600         int j;
2601         for (j = 0; j < sc->stsd_count; j++)
2602             av_freep(&sc->extradata[j]);
2603     }
2604
2605     av_freep(&sc->extradata);
2606     av_freep(&sc->extradata_size);
2607     return ret;
2608 }
2609
2610 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2611 {
2612     AVStream *st;
2613     MOVStreamContext *sc;
2614     unsigned int i, entries;
2615
2616     if (c->fc->nb_streams < 1)
2617         return 0;
2618     st = c->fc->streams[c->fc->nb_streams-1];
2619     sc = st->priv_data;
2620
2621     avio_r8(pb); /* version */
2622     avio_rb24(pb); /* flags */
2623
2624     entries = avio_rb32(pb);
2625     if ((uint64_t)entries * 12 + 4 > atom.size)
2626         return AVERROR_INVALIDDATA;
2627
2628     av_log(c->fc, AV_LOG_TRACE, "track[%u].stsc.entries = %u\n", c->fc->nb_streams - 1, entries);
2629
2630     if (!entries)
2631         return 0;
2632     if (sc->stsc_data)
2633         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
2634     av_free(sc->stsc_data);
2635     sc->stsc_count = 0;
2636     sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
2637     if (!sc->stsc_data)
2638         return AVERROR(ENOMEM);
2639
2640     for (i = 0; i < entries && !pb->eof_reached; i++) {
2641         sc->stsc_data[i].first = avio_rb32(pb);
2642         sc->stsc_data[i].count = avio_rb32(pb);
2643         sc->stsc_data[i].id = avio_rb32(pb);
2644     }
2645
2646     sc->stsc_count = i;
2647     for (i = sc->stsc_count - 1; i < UINT_MAX; i--) {
2648         int64_t first_min = i + 1;
2649         if ((i+1 < sc->stsc_count && sc->stsc_data[i].first >= sc->stsc_data[i+1].first) ||
2650             (i > 0 && sc->stsc_data[i].first <= sc->stsc_data[i-1].first) ||
2651             sc->stsc_data[i].first < first_min ||
2652             sc->stsc_data[i].count < 1 ||
2653             sc->stsc_data[i].id < 1) {
2654             av_log(c->fc, AV_LOG_WARNING, "STSC entry %d is invalid (first=%d count=%d id=%d)\n", i, sc->stsc_data[i].first, sc->stsc_data[i].count, sc->stsc_data[i].id);
2655             if (i+1 >= sc->stsc_count) {
2656                 sc->stsc_data[i].first = FFMAX(sc->stsc_data[i].first, first_min);
2657                 if (i > 0 && sc->stsc_data[i].first <= sc->stsc_data[i-1].first)
2658                     sc->stsc_data[i].first = FFMIN(sc->stsc_data[i-1].first + 1LL, INT_MAX);
2659                 sc->stsc_data[i].count = FFMAX(sc->stsc_data[i].count, 1);
2660                 sc->stsc_data[i].id    = FFMAX(sc->stsc_data[i].id, 1);
2661                 continue;
2662             }
2663             av_assert0(sc->stsc_data[i+1].first >= 2);
2664             // We replace this entry by the next valid
2665             sc->stsc_data[i].first = sc->stsc_data[i+1].first - 1;
2666             sc->stsc_data[i].count = sc->stsc_data[i+1].count;
2667             sc->stsc_data[i].id    = sc->stsc_data[i+1].id;
2668         }
2669     }
2670
2671     if (pb->eof_reached) {
2672         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSC atom\n");
2673         return AVERROR_EOF;
2674     }
2675
2676     return 0;
2677 }
2678
2679 static inline int mov_stsc_index_valid(unsigned int index, unsigned int count)
2680 {
2681     return index < count - 1;
2682 }
2683
2684 /* Compute the samples value for the stsc entry at the given index. */
2685 static inline int64_t mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index)
2686 {
2687     int chunk_count;
2688
2689     if (mov_stsc_index_valid(index, sc->stsc_count))
2690         chunk_count = sc->stsc_data[index + 1].first - sc->stsc_data[index].first;
2691     else
2692         chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1);
2693
2694     return sc->stsc_data[index].count * (int64_t)chunk_count;
2695 }
2696
2697 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2698 {
2699     AVStream *st;
2700     MOVStreamContext *sc;
2701     unsigned i, entries;
2702
2703     if (c->fc->nb_streams < 1)
2704         return 0;
2705     st = c->fc->streams[c->fc->nb_streams-1];
2706     sc = st->priv_data;
2707
2708     avio_rb32(pb); // version + flags
2709
2710     entries = avio_rb32(pb);
2711     if (sc->stps_data)
2712         av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
2713     av_free(sc->stps_data);
2714     sc->stps_count = 0;
2715     sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
2716     if (!sc->stps_data)
2717         return AVERROR(ENOMEM);
2718
2719     for (i = 0; i < entries && !pb->eof_reached; i++) {
2720         sc->stps_data[i] = avio_rb32(pb);
2721     }
2722
2723     sc->stps_count = i;
2724
2725     if (pb->eof_reached) {
2726         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STPS atom\n");
2727         return AVERROR_EOF;
2728     }
2729
2730     return 0;
2731 }
2732
2733 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2734 {
2735     AVStream *st;
2736     MOVStreamContext *sc;
2737     unsigned int i, entries;
2738
2739     if (c->fc->nb_streams < 1)
2740         return 0;
2741     st = c->fc->streams[c->fc->nb_streams-1];
2742     sc = st->priv_data;
2743
2744     avio_r8(pb); /* version */
2745     avio_rb24(pb); /* flags */
2746
2747     entries = avio_rb32(pb);
2748
2749     av_log(c->fc, AV_LOG_TRACE, "keyframe_count = %u\n", entries);
2750
2751     if (!entries)
2752     {
2753         sc->keyframe_absent = 1;
2754         if (!st->need_parsing && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
2755             st->need_parsing = AVSTREAM_PARSE_HEADERS;
2756         return 0;
2757     }
2758     if (sc->keyframes)
2759         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
2760     if (entries >= UINT_MAX / sizeof(int))
2761         return AVERROR_INVALIDDATA;
2762     av_freep(&sc->keyframes);
2763     sc->keyframe_count = 0;
2764     sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
2765     if (!sc->keyframes)
2766         return AVERROR(ENOMEM);
2767
2768     for (i = 0; i < entries && !pb->eof_reached; i++) {
2769         sc->keyframes[i] = avio_rb32(pb);
2770     }
2771
2772     sc->keyframe_count = i;
2773
2774     if (pb->eof_reached) {
2775         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSS atom\n");
2776         return AVERROR_EOF;
2777     }
2778
2779     return 0;
2780 }
2781
2782 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2783 {
2784     AVStream *st;
2785     MOVStreamContext *sc;
2786     unsigned int i, entries, sample_size, field_size, num_bytes;
2787     GetBitContext gb;
2788     unsigned char* buf;
2789     int ret;
2790
2791     if (c->fc->nb_streams < 1)
2792         return 0;
2793     st = c->fc->streams[c->fc->nb_streams-1];
2794     sc = st->priv_data;
2795
2796     avio_r8(pb); /* version */
2797     avio_rb24(pb); /* flags */
2798
2799     if (atom.type == MKTAG('s','t','s','z')) {
2800         sample_size = avio_rb32(pb);
2801         if (!sc->sample_size) /* do not overwrite value computed in stsd */
2802             sc->sample_size = sample_size;
2803         sc->stsz_sample_size = sample_size;
2804         field_size = 32;
2805     } else {
2806         sample_size = 0;
2807         avio_rb24(pb); /* reserved */
2808         field_size = avio_r8(pb);
2809     }
2810     entries = avio_rb32(pb);
2811
2812     av_log(c->fc, AV_LOG_TRACE, "sample_size = %u sample_count = %u\n", sc->sample_size, entries);
2813
2814     sc->sample_count = entries;
2815     if (sample_size)
2816         return 0;
2817
2818     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2819         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %u\n", field_size);
2820         return AVERROR_INVALIDDATA;
2821     }
2822
2823     if (!entries)
2824         return 0;
2825     if (entries >= (UINT_MAX - 4) / field_size)
2826         return AVERROR_INVALIDDATA;
2827     if (sc->sample_sizes)
2828         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2829     av_free(sc->sample_sizes);
2830     sc->sample_count = 0;
2831     sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2832     if (!sc->sample_sizes)
2833         return AVERROR(ENOMEM);
2834
2835     num_bytes = (entries*field_size+4)>>3;
2836
2837     buf = av_malloc(num_bytes+AV_INPUT_BUFFER_PADDING_SIZE);
2838     if (!buf) {
2839         av_freep(&sc->sample_sizes);
2840         return AVERROR(ENOMEM);
2841     }
2842
2843     ret = ffio_read_size(pb, buf, num_bytes);
2844     if (ret < 0) {
2845         av_freep(&sc->sample_sizes);
2846         av_free(buf);
2847         av_log(c->fc, AV_LOG_WARNING, "STSZ atom truncated\n");
2848         return 0;
2849     }
2850
2851     init_get_bits(&gb, buf, 8*num_bytes);
2852
2853     for (i = 0; i < entries && !pb->eof_reached; i++) {
2854         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2855         sc->data_size += sc->sample_sizes[i];
2856     }
2857
2858     sc->sample_count = i;
2859
2860     av_free(buf);
2861
2862     if (pb->eof_reached) {
2863         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSZ atom\n");
2864         return AVERROR_EOF;
2865     }
2866
2867     return 0;
2868 }
2869
2870 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2871 {
2872     AVStream *st;
2873     MOVStreamContext *sc;
2874     unsigned int i, entries, alloc_size = 0;
2875     int64_t duration=0;
2876     int64_t total_sample_count=0;
2877
2878     if (c->fc->nb_streams < 1)
2879         return 0;
2880     st = c->fc->streams[c->fc->nb_streams-1];
2881     sc = st->priv_data;
2882
2883     avio_r8(pb); /* version */
2884     avio_rb24(pb); /* flags */
2885     entries = avio_rb32(pb);
2886
2887     av_log(c->fc, AV_LOG_TRACE, "track[%u].stts.entries = %u\n",
2888             c->fc->nb_streams-1, entries);
2889
2890     if (sc->stts_data)
2891         av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2892     av_freep(&sc->stts_data);
2893     sc->stts_count = 0;
2894     if (entries >= INT_MAX / sizeof(*sc->stts_data))
2895         return AVERROR(ENOMEM);
2896
2897     for (i = 0; i < entries && !pb->eof_reached; i++) {
2898         int sample_duration;
2899         unsigned int sample_count;
2900         unsigned int min_entries = FFMIN(FFMAX(i + 1, 1024 * 1024), entries);
2901         MOVStts *stts_data = av_fast_realloc(sc->stts_data, &alloc_size,
2902                                              min_entries * sizeof(*sc->stts_data));
2903         if (!stts_data) {
2904             av_freep(&sc->stts_data);
2905             sc->stts_count = 0;
2906             return AVERROR(ENOMEM);
2907         }
2908         sc->stts_count = min_entries;
2909         sc->stts_data = stts_data;
2910
2911         sample_count=avio_rb32(pb);
2912         sample_duration = avio_rb32(pb);
2913
2914         sc->stts_data[i].count= sample_count;
2915         sc->stts_data[i].duration= sample_duration;
2916
2917         av_log(c->fc, AV_LOG_TRACE, "sample_count=%d, sample_duration=%d\n",
2918                 sample_count, sample_duration);
2919
2920         if (   i+1 == entries
2921             && i
2922             && sample_count == 1
2923             && total_sample_count > 100
2924             && sample_duration/10 > duration / total_sample_count)
2925             sample_duration = duration / total_sample_count;
2926         duration+=(int64_t)sample_duration*(uint64_t)sample_count;
2927         total_sample_count+=sample_count;
2928     }
2929
2930     sc->stts_count = i;
2931
2932     if (duration > 0 &&
2933         duration <= INT64_MAX - sc->duration_for_fps &&
2934         total_sample_count <= INT64_MAX - sc->nb_frames_for_fps
2935     ) {
2936         sc->duration_for_fps  += duration;
2937         sc->nb_frames_for_fps += total_sample_count;
2938     }
2939
2940     if (pb->eof_reached) {
2941         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STTS atom\n");
2942         return AVERROR_EOF;
2943     }
2944
2945     st->nb_frames= total_sample_count;
2946     if (duration)
2947         st->duration= FFMIN(st->duration, duration);
2948     sc->track_end = duration;
2949     return 0;
2950 }
2951
2952 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2953 {
2954     if (duration < 0) {
2955         if (duration == INT_MIN) {
2956             av_log(NULL, AV_LOG_WARNING, "mov_update_dts_shift(): dts_shift set to %d\n", INT_MAX);
2957             duration++;
2958         }
2959         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2960     }
2961 }
2962
2963 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2964 {
2965     AVStream *st;
2966     MOVStreamContext *sc;
2967     unsigned int i, entries, ctts_count = 0;
2968
2969     if (c->fc->nb_streams < 1)
2970         return 0;
2971     st = c->fc->streams[c->fc->nb_streams-1];
2972     sc = st->priv_data;
2973
2974     avio_r8(pb); /* version */
2975     avio_rb24(pb); /* flags */
2976     entries = avio_rb32(pb);
2977
2978     av_log(c->fc, AV_LOG_TRACE, "track[%u].ctts.entries = %u\n", c->fc->nb_streams - 1, entries);
2979
2980     if (!entries)
2981         return 0;
2982     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2983         return AVERROR_INVALIDDATA;
2984     av_freep(&sc->ctts_data);
2985     sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size, entries * sizeof(*sc->ctts_data));
2986     if (!sc->ctts_data)
2987         return AVERROR(ENOMEM);
2988
2989     for (i = 0; i < entries && !pb->eof_reached; i++) {
2990         int count    =avio_rb32(pb);
2991         int duration =avio_rb32(pb);
2992
2993         if (count <= 0) {
2994             av_log(c->fc, AV_LOG_TRACE,
2995                    "ignoring CTTS entry with count=%d duration=%d\n",
2996                    count, duration);
2997             continue;
2998         }
2999
3000         add_ctts_entry(&sc->ctts_data, &ctts_count, &sc->ctts_allocated_size,
3001                        count, duration);
3002
3003         av_log(c->fc, AV_LOG_TRACE, "count=%d, duration=%d\n",
3004                 count, duration);
3005
3006         if (FFNABS(duration) < -(1<<28) && i+2<entries) {
3007             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
3008             av_freep(&sc->ctts_data);
3009             sc->ctts_count = 0;
3010             return 0;
3011         }
3012
3013         if (i+2<entries)
3014             mov_update_dts_shift(sc, duration);
3015     }
3016
3017     sc->ctts_count = ctts_count;
3018
3019     if (pb->eof_reached) {
3020         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted CTTS atom\n");
3021         return AVERROR_EOF;
3022     }
3023
3024     av_log(c->fc, AV_LOG_TRACE, "dts shift %d\n", sc->dts_shift);
3025
3026     return 0;
3027 }
3028
3029 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3030 {
3031     AVStream *st;
3032     MOVStreamContext *sc;
3033     unsigned int i, entries;
3034     uint8_t version;
3035     uint32_t grouping_type;
3036
3037     if (c->fc->nb_streams < 1)
3038         return 0;
3039     st = c->fc->streams[c->fc->nb_streams-1];
3040     sc = st->priv_data;
3041
3042     version = avio_r8(pb); /* version */
3043     avio_rb24(pb); /* flags */
3044     grouping_type = avio_rl32(pb);
3045     if (grouping_type != MKTAG( 'r','a','p',' '))
3046         return 0; /* only support 'rap ' grouping */
3047     if (version == 1)
3048         avio_rb32(pb); /* grouping_type_parameter */
3049
3050     entries = avio_rb32(pb);
3051     if (!entries)
3052         return 0;
3053     if (sc->rap_group)
3054         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
3055     av_free(sc->rap_group);
3056     sc->rap_group_count = 0;
3057     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
3058     if (!sc->rap_group)
3059         return AVERROR(ENOMEM);
3060
3061     for (i = 0; i < entries && !pb->eof_reached; i++) {
3062         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
3063         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
3064     }
3065
3066     sc->rap_group_count = i;
3067
3068     if (pb->eof_reached) {
3069         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted SBGP atom\n");
3070         return AVERROR_EOF;
3071     }
3072
3073     return 0;
3074 }
3075
3076 /**
3077  * Get ith edit list entry (media time, duration).
3078  */
3079 static int get_edit_list_entry(MOVContext *mov,
3080                                const MOVStreamContext *msc,
3081                                unsigned int edit_list_index,
3082                                int64_t *edit_list_media_time,
3083                                int64_t *edit_list_duration,
3084                                int64_t global_timescale)
3085 {
3086     if (edit_list_index == msc->elst_count) {
3087         return 0;
3088     }
3089     *edit_list_media_time = msc->elst_data[edit_list_index].time;
3090     *edit_list_duration = msc->elst_data[edit_list_index].duration;
3091
3092     /* duration is in global timescale units;convert to msc timescale */
3093     if (global_timescale == 0) {
3094       avpriv_request_sample(mov->fc, "Support for mvhd.timescale = 0 with editlists");
3095       return 0;
3096     }
3097     *edit_list_duration = av_rescale(*edit_list_duration, msc->time_scale,
3098                                      global_timescale);
3099     return 1;
3100 }
3101
3102 /**
3103  * Find the closest previous frame to the timestamp_pts, in e_old index
3104  * entries. Searching for just any frame / just key frames can be controlled by
3105  * last argument 'flag'.
3106  * Note that if ctts_data is not NULL, we will always search for a key frame
3107  * irrespective of the value of 'flag'. If we don't find any keyframe, we will
3108  * return the first frame of the video.
3109  *
3110  * Here the timestamp_pts is considered to be a presentation timestamp and
3111  * the timestamp of index entries are considered to be decoding timestamps.
3112  *
3113  * Returns 0 if successful in finding a frame, else returns -1.
3114  * Places the found index corresponding output arg.
3115  *
3116  * If ctts_old is not NULL, then refines the searched entry by searching
3117  * backwards from the found timestamp, to find the frame with correct PTS.
3118  *
3119  * Places the found ctts_index and ctts_sample in corresponding output args.
3120  */
3121 static int find_prev_closest_index(AVStream *st,
3122                                    AVIndexEntry *e_old,
3123                                    int nb_old,
3124                                    MOVStts* ctts_data,
3125                                    int64_t ctts_count,
3126                                    int64_t timestamp_pts,
3127                                    int flag,
3128                                    int64_t* index,
3129                                    int64_t* ctts_index,
3130                                    int64_t* ctts_sample)
3131 {
3132     MOVStreamContext *msc = st->priv_data;
3133     AVIndexEntry *e_keep = st->index_entries;
3134     int nb_keep = st->nb_index_entries;
3135     int64_t i = 0;
3136     int64_t index_ctts_count;
3137
3138     av_assert0(index);
3139
3140     // If dts_shift > 0, then all the index timestamps will have to be offset by
3141     // at least dts_shift amount to obtain PTS.
3142     // Hence we decrement the searched timestamp_pts by dts_shift to find the closest index element.
3143     if (msc->dts_shift > 0) {
3144         timestamp_pts -= msc->dts_shift;
3145     }
3146
3147     st->index_entries = e_old;
3148     st->nb_index_entries = nb_old;
3149     *index = av_index_search_timestamp(st, timestamp_pts, flag | AVSEEK_FLAG_BACKWARD);
3150
3151     // Keep going backwards in the index entries until the timestamp is the same.
3152     if (*index >= 0) {
3153         for (i = *index; i > 0 && e_old[i].timestamp == e_old[i - 1].timestamp;
3154              i--) {
3155             if ((flag & AVSEEK_FLAG_ANY) ||
3156                 (e_old[i - 1].flags & AVINDEX_KEYFRAME)) {
3157                 *index = i - 1;
3158             }
3159         }
3160     }
3161
3162     // If we have CTTS then refine the search, by searching backwards over PTS
3163     // computed by adding corresponding CTTS durations to index timestamps.
3164     if (ctts_data && *index >= 0) {
3165         av_assert0(ctts_index);
3166         av_assert0(ctts_sample);
3167         // Find out the ctts_index for the found frame.
3168         *ctts_index = 0;
3169         *ctts_sample = 0;
3170         for (index_ctts_count = 0; index_ctts_count < *index; index_ctts_count++) {
3171             if (*ctts_index < ctts_count) {
3172                 (*ctts_sample)++;
3173                 if (ctts_data[*ctts_index].count == *ctts_sample) {
3174                     (*ctts_index)++;
3175                     *ctts_sample = 0;
3176                 }
3177             }
3178         }
3179
3180         while (*index >= 0 && (*ctts_index) >= 0 && (*ctts_index) < ctts_count) {
3181             // Find a "key frame" with PTS <= timestamp_pts (So that we can decode B-frames correctly).
3182             // No need to add dts_shift to the timestamp here becase timestamp_pts has already been
3183             // compensated by dts_shift above.
3184             if ((e_old[*index].timestamp + ctts_data[*ctts_index].duration) <= timestamp_pts &&
3185                 (e_old[*index].flags & AVINDEX_KEYFRAME)) {
3186                 break;
3187             }
3188
3189             (*index)--;
3190             if (*ctts_sample == 0) {
3191                 (*ctts_index)--;
3192                 if (*ctts_index >= 0)
3193                   *ctts_sample = ctts_data[*ctts_index].count - 1;
3194             } else {
3195                 (*ctts_sample)--;
3196             }
3197         }
3198     }
3199
3200     /* restore AVStream state*/
3201     st->index_entries = e_keep;
3202     st->nb_index_entries = nb_keep;
3203     return *index >= 0 ? 0 : -1;
3204 }
3205
3206 /**
3207  * Add index entry with the given values, to the end of st->index_entries.
3208  * Returns the new size st->index_entries if successful, else returns -1.
3209  *
3210  * This function is similar to ff_add_index_entry in libavformat/utils.c
3211  * except that here we are always unconditionally adding an index entry to
3212  * the end, instead of searching the entries list and skipping the add if
3213  * there is an existing entry with the same timestamp.
3214  * This is needed because the mov_fix_index calls this func with the same
3215  * unincremented timestamp for successive discarded frames.
3216  */
3217 static int64_t add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
3218                                int size, int distance, int flags)
3219 {
3220     AVIndexEntry *entries, *ie;
3221     int64_t index = -1;
3222     const size_t min_size_needed = (st->nb_index_entries + 1) * sizeof(AVIndexEntry);
3223
3224     // Double the allocation each time, to lower memory fragmentation.
3225     // Another difference from ff_add_index_entry function.
3226     const size_t requested_size =
3227         min_size_needed > st->index_entries_allocated_size ?
3228         FFMAX(min_size_needed, 2 * st->index_entries_allocated_size) :
3229         min_size_needed;
3230
3231     if((unsigned)st->nb_index_entries + 1 >= UINT_MAX / sizeof(AVIndexEntry))
3232         return -1;
3233
3234     entries = av_fast_realloc(st->index_entries,
3235                               &st->index_entries_allocated_size,
3236                               requested_size);
3237     if(!entries)
3238         return -1;
3239
3240     st->index_entries= entries;
3241
3242     index= st->nb_index_entries++;
3243     ie= &entries[index];
3244
3245     ie->pos = pos;
3246     ie->timestamp = timestamp;
3247     ie->min_distance= distance;
3248     ie->size= size;
3249     ie->flags = flags;
3250     return index;
3251 }
3252
3253 /**
3254  * Rewrite timestamps of index entries in the range [end_index - frame_duration_buffer_size, end_index)
3255  * by subtracting end_ts successively by the amounts given in frame_duration_buffer.
3256  */
3257 static void fix_index_entry_timestamps(AVStream* st, int end_index, int64_t end_ts,
3258                                        int64_t* frame_duration_buffer,
3259                                        int frame_duration_buffer_size) {
3260     int i = 0;
3261     av_assert0(end_index >= 0 && end_index <= st->nb_index_entries);
3262     for (i = 0; i < frame_duration_buffer_size; i++) {
3263         end_ts -= frame_duration_buffer[frame_duration_buffer_size - 1 - i];
3264         st->index_entries[end_index - 1 - i].timestamp = end_ts;
3265     }
3266 }
3267
3268 /**
3269  * Append a new ctts entry to ctts_data.
3270  * Returns the new ctts_count if successful, else returns -1.
3271  */
3272 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
3273                               int count, int duration)
3274 {
3275     MOVStts *ctts_buf_new;
3276     const size_t min_size_needed = (*ctts_count + 1) * sizeof(MOVStts);
3277     const size_t requested_size =
3278         min_size_needed > *allocated_size ?
3279         FFMAX(min_size_needed, 2 * (*allocated_size)) :
3280         min_size_needed;
3281
3282     if((unsigned)(*ctts_count) >= UINT_MAX / sizeof(MOVStts) - 1)
3283         return -1;
3284
3285     ctts_buf_new = av_fast_realloc(*ctts_data, allocated_size, requested_size);
3286
3287     if(!ctts_buf_new)
3288         return -1;
3289
3290     *ctts_data = ctts_buf_new;
3291
3292     ctts_buf_new[*ctts_count].count = count;
3293     ctts_buf_new[*ctts_count].duration = duration;
3294
3295     *ctts_count = (*ctts_count) + 1;
3296     return *ctts_count;
3297 }
3298
3299 #define MAX_REORDER_DELAY 16
3300 static void mov_estimate_video_delay(MOVContext *c, AVStream* st) {
3301     MOVStreamContext *msc = st->priv_data;
3302     int ind;
3303     int ctts_ind = 0;
3304     int ctts_sample = 0;
3305     int64_t pts_buf[MAX_REORDER_DELAY + 1]; // Circular buffer to sort pts.
3306     int buf_start = 0;
3307     int j, r, num_swaps;
3308
3309     for (j = 0; j < MAX_REORDER_DELAY + 1; j++)
3310         pts_buf[j] = INT64_MIN;
3311
3312     if (st->codecpar->video_delay <= 0 && msc->ctts_data &&
3313         st->codecpar->codec_id == AV_CODEC_ID_H264) {
3314         st->codecpar->video_delay = 0;
3315         for(ind = 0; ind < st->nb_index_entries && ctts_ind < msc->ctts_count; ++ind) {
3316             // Point j to the last elem of the buffer and insert the current pts there.
3317             j = buf_start;
3318             buf_start = (buf_start + 1);
3319             if (buf_start == MAX_REORDER_DELAY + 1)
3320                 buf_start = 0;
3321
3322             pts_buf[j] = st->index_entries[ind].timestamp + msc->ctts_data[ctts_ind].duration;
3323
3324             // The timestamps that are already in the sorted buffer, and are greater than the
3325             // current pts, are exactly the timestamps that need to be buffered to output PTS
3326             // in correct sorted order.
3327             // Hence the video delay (which is the buffer size used to sort DTS and output PTS),
3328             // can be computed as the maximum no. of swaps any particular timestamp needs to
3329             // go through, to keep this buffer in sorted order.
3330             num_swaps = 0;
3331             while (j != buf_start) {
3332                 r = j - 1;
3333                 if (r < 0) r = MAX_REORDER_DELAY;
3334                 if (pts_buf[j] < pts_buf[r]) {
3335                     FFSWAP(int64_t, pts_buf[j], pts_buf[r]);
3336                     ++num_swaps;
3337                 } else {
3338                     break;
3339                 }
3340                 j = r;
3341             }
3342             st->codecpar->video_delay = FFMAX(st->codecpar->video_delay, num_swaps);
3343
3344             ctts_sample++;
3345             if (ctts_sample == msc->ctts_data[ctts_ind].count) {
3346                 ctts_ind++;
3347                 ctts_sample = 0;
3348             }
3349         }
3350         av_log(c->fc, AV_LOG_DEBUG, "Setting codecpar->delay to %d for stream st: %d\n",
3351                st->codecpar->video_delay, st->index);
3352     }
3353 }
3354
3355 static void mov_current_sample_inc(MOVStreamContext *sc)
3356 {
3357     sc->current_sample++;
3358     sc->current_index++;
3359     if (sc->index_ranges &&
3360         sc->current_index >= sc->current_index_range->end &&
3361         sc->current_index_range->end) {
3362         sc->current_index_range++;
3363         sc->current_index = sc->current_index_range->start;
3364     }
3365 }
3366
3367 static void mov_current_sample_dec(MOVStreamContext *sc)
3368 {
3369     sc->current_sample--;
3370     sc->current_index--;
3371     if (sc->index_ranges &&
3372         sc->current_index < sc->current_index_range->start &&
3373         sc->current_index_range > sc->index_ranges) {
3374         sc->current_index_range--;
3375         sc->current_index = sc->current_index_range->end - 1;
3376     }
3377 }
3378
3379 static void mov_current_sample_set(MOVStreamContext *sc, int current_sample)
3380 {
3381     int64_t range_size;
3382
3383     sc->current_sample = current_sample;
3384     sc->current_index = current_sample;
3385     if (!sc->index_ranges) {
3386         return;
3387     }
3388
3389     for (sc->current_index_range = sc->index_ranges;
3390         sc->current_index_range->end;
3391         sc->current_index_range++) {
3392         range_size = sc->current_index_range->end - sc->current_index_range->start;
3393         if (range_size > current_sample) {
3394             sc->current_index = sc->current_index_range->start + current_sample;
3395             break;
3396         }
3397         current_sample -= range_size;
3398     }
3399 }
3400
3401 /**
3402  * Fix st->index_entries, so that it contains only the entries (and the entries
3403  * which are needed to decode them) that fall in the edit list time ranges.
3404  * Also fixes the timestamps of the index entries to match the timeline
3405  * specified the edit lists.
3406  */
3407 static void mov_fix_index(MOVContext *mov, AVStream *st)
3408 {
3409     MOVStreamContext *msc = st->priv_data;
3410     AVIndexEntry *e_old = st->index_entries;
3411     int nb_old = st->nb_index_entries;
3412     const AVIndexEntry *e_old_end = e_old + nb_old;
3413     const AVIndexEntry *current = NULL;
3414     MOVStts *ctts_data_old = msc->ctts_data;
3415     int64_t ctts_index_old = 0;
3416     int64_t ctts_sample_old = 0;
3417     int64_t ctts_count_old = msc->ctts_count;
3418     int64_t edit_list_media_time = 0;
3419     int64_t edit_list_duration = 0;
3420     int64_t frame_duration = 0;
3421     int64_t edit_list_dts_counter = 0;
3422     int64_t edit_list_dts_entry_end = 0;
3423     int64_t edit_list_start_ctts_sample = 0;
3424     int64_t curr_cts;
3425     int64_t curr_ctts = 0;
3426     int64_t empty_edits_sum_duration = 0;
3427     int64_t edit_list_index = 0;
3428     int64_t index;
3429     int flags;
3430     int64_t start_dts = 0;
3431     int64_t edit_list_start_encountered = 0;
3432     int64_t search_timestamp = 0;
3433     int64_t* frame_duration_buffer = NULL;
3434     int num_discarded_begin = 0;
3435     int first_non_zero_audio_edit = -1;
3436     int packet_skip_samples = 0;
3437     MOVIndexRange *current_index_range;
3438     int i;
3439     int found_keyframe_after_edit = 0;
3440
3441     if (!msc->elst_data || msc->elst_count <= 0 || nb_old <= 0) {
3442         return;
3443     }
3444
3445     // allocate the index ranges array
3446     msc->index_ranges = av_malloc((msc->elst_count + 1) * sizeof(msc->index_ranges[0]));
3447     if (!msc->index_ranges) {
3448         av_log(mov->fc, AV_LOG_ERROR, "Cannot allocate index ranges buffer\n");
3449         return;
3450     }
3451     msc->current_index_range = msc->index_ranges;
3452     current_index_range = msc->index_ranges - 1;
3453
3454     // Clean AVStream from traces of old index
3455     st->index_entries = NULL;
3456     st->index_entries_allocated_size = 0;
3457     st->nb_index_entries = 0;
3458
3459     // Clean ctts fields of MOVStreamContext
3460     msc->ctts_data = NULL;
3461     msc->ctts_count = 0;
3462     msc->ctts_index = 0;
3463     msc->ctts_sample = 0;
3464     msc->ctts_allocated_size = 0;
3465
3466     // Reinitialize min_corrected_pts so that it can be computed again.
3467     msc->min_corrected_pts = -1;
3468
3469     // If the dts_shift is positive (in case of negative ctts values in mov),
3470     // then negate the DTS by dts_shift
3471     if (msc->dts_shift > 0) {
3472         edit_list_dts_entry_end -= msc->dts_shift;
3473         av_log(mov->fc, AV_LOG_DEBUG, "Shifting DTS by %d because of negative CTTS.\n", msc->dts_shift);
3474     }
3475
3476     start_dts = edit_list_dts_entry_end;
3477
3478     while (get_edit_list_entry(mov, msc, edit_list_index, &edit_list_media_time,
3479                                &edit_list_duration, mov->time_scale)) {
3480         av_log(mov->fc, AV_LOG_DEBUG, "Processing st: %d, edit list %"PRId64" - media time: %"PRId64", duration: %"PRId64"\n",
3481                st->index, edit_list_index, edit_list_media_time, edit_list_duration);
3482         edit_list_index++;
3483         edit_list_dts_counter = edit_list_dts_entry_end;
3484         edit_list_dts_entry_end += edit_list_duration;
3485         num_discarded_begin = 0;
3486         if (edit_list_media_time == -1) {
3487             empty_edits_sum_duration += edit_list_duration;
3488             continue;
3489         }
3490
3491         // If we encounter a non-negative edit list reset the skip_samples/start_pad fields and set them
3492         // according to the edit list below.
3493         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3494             if (first_non_zero_audio_edit < 0) {
3495                 first_non_zero_audio_edit = 1;
3496             } else {
3497                 first_non_zero_audio_edit = 0;
3498             }
3499
3500             if (first_non_zero_audio_edit > 0)
3501                 st->skip_samples = msc->start_pad = 0;
3502         }
3503
3504         // While reordering frame index according to edit list we must handle properly
3505         // the scenario when edit list entry starts from none key frame.
3506         // We find closest previous key frame and preserve it and consequent frames in index.
3507         // All frames which are outside edit list entry time boundaries will be dropped after decoding.
3508         search_timestamp = edit_list_media_time;
3509         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3510             // Audio decoders like AAC need need a decoder delay samples previous to the current sample,
3511             // to correctly decode this frame. Hence for audio we seek to a frame 1 sec. before the
3512             // edit_list_media_time to cover the decoder delay.
3513             search_timestamp = FFMAX(search_timestamp - msc->time_scale, e_old[0].timestamp);
3514         }
3515
3516         if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, 0,
3517                                     &index, &ctts_index_old, &ctts_sample_old) < 0) {
3518             av_log(mov->fc, AV_LOG_WARNING,
3519                    "st: %d edit list: %"PRId64" Missing key frame while searching for timestamp: %"PRId64"\n",
3520                    st->index, edit_list_index, search_timestamp);
3521             if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, AVSEEK_FLAG_ANY,
3522                                         &index, &ctts_index_old, &ctts_sample_old) < 0) {
3523                 av_log(mov->fc, AV_LOG_WARNING,
3524                        "st: %d edit list %"PRId64" Cannot find an index entry before timestamp: %"PRId64".\n",
3525                        st->index, edit_list_index, search_timestamp);
3526                 index = 0;
3527                 ctts_index_old = 0;
3528                 ctts_sample_old = 0;
3529             }
3530         }
3531         current = e_old + index;
3532         edit_list_start_ctts_sample = ctts_sample_old;
3533
3534         // Iterate over index and arrange it according to edit list
3535         edit_list_start_encountered = 0;
3536         found_keyframe_after_edit = 0;
3537         for (; current < e_old_end; current++, index++) {
3538             // check  if frame outside edit list mark it for discard
3539             frame_duration = (current + 1 <  e_old_end) ?
3540                              ((current + 1)->timestamp - current->timestamp) : edit_list_duration;
3541
3542             flags = current->flags;
3543
3544             // frames (pts) before or after edit list
3545             curr_cts = current->timestamp + msc->dts_shift;
3546             curr_ctts = 0;
3547
3548             if (ctts_data_old && ctts_index_old < ctts_count_old) {
3549                 curr_ctts = ctts_data_old[ctts_index_old].duration;
3550                 av_log(mov->fc, AV_LOG_DEBUG, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
3551                        curr_cts, curr_ctts, ctts_index_old, ctts_count_old);
3552                 curr_cts += curr_ctts;
3553                 ctts_sample_old++;
3554                 if (ctts_sample_old == ctts_data_old[ctts_index_old].count) {
3555                     if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3556                                        &msc->ctts_allocated_size,
3557                                        ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3558                                        ctts_data_old[ctts_index_old].duration) == -1) {
3559                         av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3560                                ctts_index_old,
3561                                ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3562                                ctts_data_old[ctts_index_old].duration);
3563                         break;
3564                     }
3565                     ctts_index_old++;
3566                     ctts_sample_old = 0;
3567                     edit_list_start_ctts_sample = 0;
3568                 }
3569             }
3570
3571             if (curr_cts < edit_list_media_time || curr_cts >= (edit_list_duration + edit_list_media_time)) {
3572                 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id != AV_CODEC_ID_VORBIS &&
3573                     curr_cts < edit_list_media_time && curr_cts + frame_duration > edit_list_media_time &&
3574                     first_non_zero_audio_edit > 0) {
3575                     packet_skip_samples = edit_list_media_time - curr_cts;
3576                     st->skip_samples += packet_skip_samples;
3577
3578                     // Shift the index entry timestamp by packet_skip_samples to be correct.
3579                     edit_list_dts_counter -= packet_skip_samples;
3580                     if (edit_list_start_encountered == 0)  {
3581                         edit_list_start_encountered = 1;
3582                         // Make timestamps strictly monotonically increasing for audio, by rewriting timestamps for
3583                         // discarded packets.
3584                         if (frame_duration_buffer) {
3585                             fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3586                                                        frame_duration_buffer, num_discarded_begin);
3587                             av_freep(&frame_duration_buffer);
3588                         }
3589                     }
3590
3591                     av_log(mov->fc, AV_LOG_DEBUG, "skip %d audio samples from curr_cts: %"PRId64"\n", packet_skip_samples, curr_cts);
3592                 } else {
3593                     flags |= AVINDEX_DISCARD_FRAME;
3594                     av_log(mov->fc, AV_LOG_DEBUG, "drop a frame at curr_cts: %"PRId64" @ %"PRId64"\n", curr_cts, index);
3595
3596                     if (edit_list_start_encountered == 0) {
3597                         num_discarded_begin++;
3598                         frame_duration_buffer = av_realloc(frame_duration_buffer,
3599                                                            num_discarded_begin * sizeof(int64_t));
3600                         if (!frame_duration_buffer) {
3601                             av_log(mov->fc, AV_LOG_ERROR, "Cannot reallocate frame duration buffer\n");
3602                             break;
3603                         }
3604                         frame_duration_buffer[num_discarded_begin - 1] = frame_duration;
3605
3606                         // Increment skip_samples for the first non-zero audio edit list
3607                         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
3608                             first_non_zero_audio_edit > 0 && st->codecpar->codec_id != AV_CODEC_ID_VORBIS) {
3609                             st->skip_samples += frame_duration;
3610                         }
3611                     }
3612                 }
3613             } else {
3614                 if (msc->min_corrected_pts < 0) {
3615                     msc->min_corrected_pts = edit_list_dts_counter + curr_ctts + msc->dts_shift;
3616                 } else {
3617                     msc->min_corrected_pts = FFMIN(msc->min_corrected_pts, edit_list_dts_counter + curr_ctts + msc->dts_shift);
3618                 }
3619                 if (edit_list_start_encountered == 0) {
3620                     edit_list_start_encountered = 1;
3621                     // Make timestamps strictly monotonically increasing by rewriting timestamps for
3622                     // discarded packets.
3623                     if (frame_duration_buffer) {
3624                         fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3625                                                    frame_duration_buffer, num_discarded_begin);
3626                         av_freep(&frame_duration_buffer);
3627                     }
3628                 }
3629             }
3630
3631             if (add_index_entry(st, current->pos, edit_list_dts_counter, current->size,
3632                                 current->min_distance, flags) == -1) {
3633                 av_log(mov->fc, AV_LOG_ERROR, "Cannot add index entry\n");
3634                 break;
3635             }
3636
3637             // Update the index ranges array
3638             if (current_index_range < msc->index_ranges || index != current_index_range->end) {
3639                 current_index_range++;
3640                 current_index_range->start = index;
3641             }
3642             current_index_range->end = index + 1;
3643
3644             // Only start incrementing DTS in frame_duration amounts, when we encounter a frame in edit list.
3645             if (edit_list_start_encountered > 0) {
3646                 edit_list_dts_counter = edit_list_dts_counter + frame_duration;
3647             }
3648
3649             // Break when found first key frame after edit entry completion
3650             if ((curr_cts + frame_duration >= (edit_list_duration + edit_list_media_time)) &&
3651                 ((flags & AVINDEX_KEYFRAME) || ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)))) {
3652                 if (ctts_data_old) {
3653                     // If we have CTTS and this is the first keyframe after edit elist,
3654                     // wait for one more, because there might be trailing B-frames after this I-frame
3655                     // that do belong to the edit.
3656                     if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO && found_keyframe_after_edit == 0) {
3657                         found_keyframe_after_edit = 1;
3658                         continue;
3659                     }
3660                     if (ctts_sample_old != 0) {
3661                         if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3662                                            &msc->ctts_allocated_size,
3663                                            ctts_sample_old - edit_list_start_ctts_sample,
3664                                            ctts_data_old[ctts_index_old].duration) == -1) {
3665                             av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3666                                    ctts_index_old, ctts_sample_old - edit_list_start_ctts_sample,
3667                                    ctts_data_old[ctts_index_old].duration);
3668                             break;
3669                         }
3670                     }
3671                 }
3672                 break;
3673             }
3674         }
3675     }
3676     // If there are empty edits, then msc->min_corrected_pts might be positive
3677     // intentionally. So we subtract the sum duration of emtpy edits here.
3678     msc->min_corrected_pts -= empty_edits_sum_duration;
3679
3680     // If the minimum pts turns out to be greater than zero after fixing the index, then we subtract the
3681     // dts by that amount to make the first pts zero.
3682     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
3683         if (msc->min_corrected_pts > 0) {
3684             av_log(mov->fc, AV_LOG_DEBUG, "Offset DTS by %"PRId64" to make first pts zero.\n", msc->min_corrected_pts);
3685             for (i = 0; i < st->nb_index_entries; ++i) {
3686                 st->index_entries[i].timestamp -= msc->min_corrected_pts;
3687             }
3688         }
3689     }
3690     // Start time should be equal to zero or the duration of any empty edits.
3691     st->start_time = empty_edits_sum_duration;
3692
3693     // Update av stream length, if it ends up shorter than the track's media duration
3694     st->duration = FFMIN(st->duration, edit_list_dts_entry_end - start_dts);
3695     msc->start_pad = st->skip_samples;
3696
3697     // Free the old index and the old CTTS structures
3698     av_free(e_old);
3699     av_free(ctts_data_old);
3700     av_freep(&frame_duration_buffer);
3701
3702     // Null terminate the index ranges array
3703     current_index_range++;
3704     current_index_range->start = 0;
3705     current_index_range->end = 0;
3706     msc->current_index = msc->index_ranges[0].start;
3707 }
3708
3709 static void mov_build_index(MOVContext *mov, AVStream *st)
3710 {
3711     MOVStreamContext *sc = st->priv_data;
3712     int64_t current_offset;
3713     int64_t current_dts = 0;
3714     unsigned int stts_index = 0;
3715     unsigned int stsc_index = 0;
3716     unsigned int stss_index = 0;
3717     unsigned int stps_index = 0;
3718     unsigned int i, j;
3719     uint64_t stream_size = 0;
3720     MOVStts *ctts_data_old = sc->ctts_data;
3721     unsigned int ctts_count_old = sc->ctts_count;
3722
3723     if (sc->elst_count) {
3724         int i, edit_start_index = 0, multiple_edits = 0;
3725         int64_t empty_duration = 0; // empty duration of the first edit list entry
3726         int64_t start_time = 0; // start time of the media
3727
3728         for (i = 0; i < sc->elst_count; i++) {
3729             const MOVElst *e = &sc->elst_data[i];
3730             if (i == 0 && e->time == -1) {
3731                 /* if empty, the first entry is the start time of the stream
3732                  * relative to the presentation itself */
3733                 empty_duration = e->duration;
3734                 edit_start_index = 1;
3735             } else if (i == edit_start_index && e->time >= 0) {
3736                 start_time = e->time;
3737             } else {
3738                 multiple_edits = 1;
3739             }
3740         }
3741
3742         if (multiple_edits && !mov->advanced_editlist)
3743             av_log(mov->fc, AV_LOG_WARNING, "multiple edit list entries, "
3744                    "Use -advanced_editlist to correctly decode otherwise "
3745                    "a/v desync might occur\n");
3746
3747         /* adjust first dts according to edit list */
3748         if ((empty_duration || start_time) && mov->time_scale > 0) {
3749             if (empty_duration)
3750                 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
3751             sc->time_offset = start_time - empty_duration;
3752             sc->min_corrected_pts = start_time;
3753             if (!mov->advanced_editlist)
3754                 current_dts = -sc->time_offset;
3755         }
3756
3757         if (!multiple_edits && !mov->advanced_editlist &&
3758             st->codecpar->codec_id == AV_CODEC_ID_AAC && start_time > 0)
3759             sc->start_pad = start_time;
3760     }
3761
3762     /* only use old uncompressed audio chunk demuxing when stts specifies it */
3763     if (!(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
3764           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
3765         unsigned int current_sample = 0;
3766         unsigned int stts_sample = 0;
3767         unsigned int sample_size;
3768         unsigned int distance = 0;
3769         unsigned int rap_group_index = 0;
3770         unsigned int rap_group_sample = 0;
3771         int64_t last_dts = 0;
3772         int64_t dts_correction = 0;
3773         int rap_group_present = sc->rap_group_count && sc->rap_group;
3774         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
3775
3776         current_dts -= sc->dts_shift;
3777         last_dts     = current_dts;
3778
3779         if (!sc->sample_count || st->nb_index_entries)
3780             return;
3781         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3782             return;
3783         if (av_reallocp_array(&st->index_entries,
3784                               st->nb_index_entries + sc->sample_count,
3785                               sizeof(*st->index_entries)) < 0) {
3786             st->nb_index_entries = 0;
3787             return;
3788         }
3789         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
3790
3791         if (ctts_data_old) {
3792             // Expand ctts entries such that we have a 1-1 mapping with samples
3793             if (sc->sample_count >= UINT_MAX / sizeof(*sc->ctts_data))
3794                 return;
3795             sc->ctts_count = 0;
3796             sc->ctts_allocated_size = 0;
3797             sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size,
3798                                     sc->sample_count * sizeof(*sc->ctts_data));
3799             if (!sc->ctts_data) {
3800                 av_free(ctts_data_old);
3801                 return;
3802             }
3803
3804             memset((uint8_t*)(sc->ctts_data), 0, sc->ctts_allocated_size);
3805
3806             for (i = 0; i < ctts_count_old &&
3807                         sc->ctts_count < sc->sample_count; i++)
3808                 for (j = 0; j < ctts_data_old[i].count &&
3809                             sc->ctts_count < sc->sample_count; j++)
3810                     add_ctts_entry(&sc->ctts_data, &sc->ctts_count,
3811                                    &sc->ctts_allocated_size, 1,
3812                                    ctts_data_old[i].duration);
3813             av_free(ctts_data_old);
3814         }
3815
3816         for (i = 0; i < sc->chunk_count; i++) {
3817             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
3818             current_offset = sc->chunk_offsets[i];
3819             while (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3820                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3821                 stsc_index++;
3822
3823             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
3824                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
3825                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
3826                 sc->stsz_sample_size = sc->sample_size;
3827             }
3828             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
3829                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
3830                 sc->stsz_sample_size = sc->sample_size;
3831             }
3832
3833             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
3834                 int keyframe = 0;
3835                 if (current_sample >= sc->sample_count) {
3836                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
3837                     return;
3838                 }
3839
3840                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
3841                     keyframe = 1;
3842                     if (stss_index + 1 < sc->keyframe_count)
3843                         stss_index++;
3844                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
3845                     keyframe = 1;
3846                     if (stps_index + 1 < sc->stps_count)
3847                         stps_index++;
3848                 }
3849                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
3850                     if (sc->rap_group[rap_group_index].index > 0)
3851                         keyframe = 1;
3852                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
3853                         rap_group_sample = 0;
3854                         rap_group_index++;
3855                     }
3856                 }
3857                 if (sc->keyframe_absent
3858                     && !sc->stps_count
3859                     && !rap_group_present
3860                     && (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
3861                      keyframe = 1;
3862                 if (keyframe)
3863                     distance = 0;
3864                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
3865                 if (sc->pseudo_stream_id == -1 ||
3866                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
3867                     AVIndexEntry *e;
3868                     if (sample_size > 0x3FFFFFFF) {
3869                         av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", sample_size);
3870                         return;
3871                     }
3872                     e = &st->index_entries[st->nb_index_entries++];
3873                     e->pos = current_offset;
3874                     e->timestamp = current_dts;
3875                     e->size = sample_size;
3876                     e->min_distance = distance;
3877                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
3878                     av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %u, offset %"PRIx64", dts %"PRId64", "
3879                             "size %u, distance %u, keyframe %d\n", st->index, current_sample,
3880                             current_offset, current_dts, sample_size, distance, keyframe);
3881                     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
3882                         ff_rfps_add_frame(mov->fc, st, current_dts);
3883                 }
3884
3885                 current_offset += sample_size;
3886                 stream_size += sample_size;
3887
3888                 /* A negative sample duration is invalid based on the spec,
3889                  * but some samples need it to correct the DTS. */
3890                 if (sc->stts_data[stts_index].duration < 0) {
3891                     av_log(mov->fc, AV_LOG_WARNING,
3892                            "Invalid SampleDelta %d in STTS, at %d st:%d\n",
3893                            sc->stts_data[stts_index].duration, stts_index,
3894                            st->index);
3895                     dts_correction += sc->stts_data[stts_index].duration - 1;
3896                     sc->stts_data[stts_index].duration = 1;
3897                 }
3898                 current_dts += sc->stts_data[stts_index].duration;
3899                 if (!dts_correction || current_dts + dts_correction > last_dts) {
3900                     current_dts += dts_correction;
3901                     dts_correction = 0;
3902                 } else {
3903                     /* Avoid creating non-monotonous DTS */
3904                     dts_correction += current_dts - last_dts - 1;
3905                     current_dts = last_dts + 1;
3906                 }
3907                 last_dts = current_dts;
3908                 distance++;
3909                 stts_sample++;
3910                 current_sample++;
3911                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
3912                     stts_sample = 0;
3913                     stts_index++;
3914                 }
3915             }
3916         }
3917         if (st->duration > 0)
3918             st->codecpar->bit_rate = stream_size*8*sc->time_scale/st->duration;
3919     } else {
3920         unsigned chunk_samples, total = 0;
3921
3922         if (!sc->chunk_count)
3923             return;
3924
3925         // compute total chunk count
3926         for (i = 0; i < sc->stsc_count; i++) {
3927             unsigned count, chunk_count;
3928
3929             chunk_samples = sc->stsc_data[i].count;
3930             if (i != sc->stsc_count - 1 &&
3931                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
3932                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
3933                 return;
3934             }
3935
3936             if (sc->samples_per_frame >= 160) { // gsm
3937                 count = chunk_samples / sc->samples_per_frame;
3938             } else if (sc->samples_per_frame > 1) {
3939                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
3940                 count = (chunk_samples+samples-1) / samples;
3941             } else {
3942                 count = (chunk_samples+1023) / 1024;
3943             }
3944
3945             if (mov_stsc_index_valid(i, sc->stsc_count))
3946                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
3947             else
3948                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
3949             total += chunk_count * count;
3950         }
3951
3952         av_log(mov->fc, AV_LOG_TRACE, "chunk count %u\n", total);
3953         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3954             return;
3955         if (av_reallocp_array(&st->index_entries,
3956                               st->nb_index_entries + total,
3957                               sizeof(*st->index_entries)) < 0) {
3958             st->nb_index_entries = 0;
3959             return;
3960         }
3961         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
3962
3963         // populate index
3964         for (i = 0; i < sc->chunk_count; i++) {
3965             current_offset = sc->chunk_offsets[i];
3966             if (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3967                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3968                 stsc_index++;
3969             chunk_samples = sc->stsc_data[stsc_index].count;
3970
3971             while (chunk_samples > 0) {
3972                 AVIndexEntry *e;
3973                 unsigned size, samples;
3974
3975                 if (sc->samples_per_frame > 1 && !sc->bytes_per_frame) {
3976                     avpriv_request_sample(mov->fc,
3977                            "Zero bytes per frame, but %d samples per frame",
3978                            sc->samples_per_frame);
3979                     return;
3980                 }
3981
3982                 if (sc->samples_per_frame >= 160) { // gsm
3983                     samples = sc->samples_per_frame;
3984                     size = sc->bytes_per_frame;
3985                 } else {
3986                     if (sc->samples_per_frame > 1) {
3987                         samples = FFMIN((1024 / sc->samples_per_frame)*
3988                                         sc->samples_per_frame, chunk_samples);
3989                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
3990                     } else {
3991                         samples = FFMIN(1024, chunk_samples);
3992                         size = samples * sc->sample_size;
3993                     }
3994                 }
3995
3996                 if (st->nb_index_entries >= total) {
3997                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %u\n", total);
3998                     return;
3999                 }
4000                 if (size > 0x3FFFFFFF) {
4001                     av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", size);
4002                     return;
4003                 }
4004                 e = &st->index_entries[st->nb_index_entries++];
4005                 e->pos = current_offset;
4006                 e->timestamp = current_dts;
4007                 e->size = size;
4008                 e->min_distance = 0;
4009                 e->flags = AVINDEX_KEYFRAME;
4010                 av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, chunk %u, offset %"PRIx64", dts %"PRId64", "
4011                        "size %u, duration %u\n", st->index, i, current_offset, current_dts,
4012                        size, samples);
4013
4014                 current_offset += size;
4015                 current_dts += samples;
4016                 chunk_samples -= samples;
4017             }
4018         }
4019     }
4020
4021     if (!mov->ignore_editlist && mov->advanced_editlist) {
4022         // Fix index according to edit lists.
4023         mov_fix_index(mov, st);
4024     }
4025
4026     // Update start time of the stream.
4027     if (st->start_time == AV_NOPTS_VALUE && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries > 0) {
4028         st->start_time = st->index_entries[0].timestamp + sc->dts_shift;
4029         if (sc->ctts_data) {
4030             st->start_time += sc->ctts_data[0].duration;
4031         }
4032     }
4033
4034     mov_estimate_video_delay(mov, st);
4035 }
4036
4037 static int test_same_origin(const char *src, const char *ref) {
4038     char src_proto[64];
4039     char ref_proto[64];
4040     char src_auth[256];
4041     char ref_auth[256];
4042     char src_host[256];
4043     char ref_host[256];
4044     int src_port=-1;
4045     int ref_port=-1;
4046
4047     av_url_split(src_proto, sizeof(src_proto), src_auth, sizeof(src_auth), src_host, sizeof(src_host), &src_port, NULL, 0, src);
4048     av_url_split(ref_proto, sizeof(ref_proto), ref_auth, sizeof(ref_auth), ref_host, sizeof(ref_host), &ref_port, NULL, 0, ref);
4049
4050     if (strlen(src) == 0) {
4051         return -1;
4052     } else if (strlen(src_auth) + 1 >= sizeof(src_auth) ||
4053         strlen(ref_auth) + 1 >= sizeof(ref_auth) ||
4054         strlen(src_host) + 1 >= sizeof(src_host) ||
4055         strlen(ref_host) + 1 >= sizeof(ref_host)) {
4056         return 0;
4057     } else if (strcmp(src_proto, ref_proto) ||
4058                strcmp(src_auth, ref_auth) ||
4059                strcmp(src_host, ref_host) ||
4060                src_port != ref_port) {
4061         return 0;
4062     } else
4063         return 1;
4064 }
4065
4066 static int mov_open_dref(MOVContext *c, AVIOContext **pb, const char *src, MOVDref *ref)
4067 {
4068     /* try relative path, we do not try the absolute because it can leak information about our
4069        system to an attacker */
4070     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
4071         char filename[1025];
4072         const char *src_path;
4073         int i, l;
4074
4075         /* find a source dir */
4076         src_path = strrchr(src, '/');
4077         if (src_path)
4078             src_path++;
4079         else
4080             src_path = src;
4081
4082         /* find a next level down to target */
4083         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
4084             if (ref->path[l] == '/') {
4085                 if (i == ref->nlvl_to - 1)
4086                     break;
4087                 else
4088                     i++;
4089             }
4090
4091         /* compose filename if next level down to target was found */
4092         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
4093             memcpy(filename, src, src_path - src);
4094             filename[src_path - src] = 0;
4095
4096             for (i = 1; i < ref->nlvl_from; i++)
4097                 av_strlcat(filename, "../", sizeof(filename));
4098
4099             av_strlcat(filename, ref->path + l + 1, sizeof(filename));
4100             if (!c->use_absolute_path) {
4101                 int same_origin = test_same_origin(src, filename);
4102
4103                 if (!same_origin) {
4104                     av_log(c->fc, AV_LOG_ERROR,
4105                         "Reference with mismatching origin, %s not tried for security reasons, "
4106                         "set demuxer option use_absolute_path to allow it anyway\n",
4107                         ref->path);
4108                     return AVERROR(ENOENT);
4109                 }
4110
4111                 if(strstr(ref->path + l + 1, "..") ||
4112                    strstr(ref->path + l + 1, ":") ||
4113                    (ref->nlvl_from > 1 && same_origin < 0) ||
4114                    (filename[0] == '/' && src_path == src))
4115                     return AVERROR(ENOENT);
4116             }
4117
4118             if (strlen(filename) + 1 == sizeof(filename))
4119                 return AVERROR(ENOENT);
4120             if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, NULL))
4121                 return 0;
4122         }
4123     } else if (c->use_absolute_path) {
4124         av_log(c->fc, AV_LOG_WARNING, "Using absolute path on user request, "
4125                "this is a possible security issue\n");
4126         if (!c->fc->io_open(c->fc, pb, ref->path, AVIO_FLAG_READ, NULL))
4127             return 0;
4128     } else {
4129         av_log(c->fc, AV_LOG_ERROR,
4130                "Absolute path %s not tried for security reasons, "
4131                "set demuxer option use_absolute_path to allow absolute paths\n",
4132                ref->path);
4133     }
4134
4135     return AVERROR(ENOENT);
4136 }
4137
4138 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
4139 {
4140     if (sc->time_scale <= 0) {
4141         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
4142         sc->time_scale = c->time_scale;
4143         if (sc->time_scale <= 0)
4144             sc->time_scale = 1;
4145     }
4146 }
4147
4148 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4149 {
4150     AVStream *st;
4151     MOVStreamContext *sc;
4152     int ret;
4153
4154     st = avformat_new_stream(c->fc, NULL);
4155     if (!st) return AVERROR(ENOMEM);
4156     st->id = c->fc->nb_streams;
4157     sc = av_mallocz(sizeof(MOVStreamContext));
4158     if (!sc) return AVERROR(ENOMEM);
4159
4160     st->priv_data = sc;
4161     st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
4162     sc->ffindex = st->index;
4163     c->trak_index = st->index;
4164
4165     if ((ret = mov_read_default(c, pb, atom)) < 0)
4166         return ret;
4167
4168     c->trak_index = -1;
4169
4170     /* sanity checks */
4171     if ((sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
4172                             (!sc->sample_size && !sc->sample_count))) ||
4173         (!sc->chunk_count && sc->sample_count)) {
4174         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
4175                st->index);
4176         return 0;
4177     }
4178     if (sc->chunk_count && sc->stsc_count && sc->stsc_data[ sc->stsc_count - 1 ].first > sc->chunk_count) {
4179         av_log(c->fc, AV_LOG_ERROR, "stream %d, contradictionary STSC and STCO\n",
4180                st->index);
4181         return AVERROR_INVALIDDATA;
4182     }
4183
4184     fix_timescale(c, sc);
4185
4186     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
4187
4188     mov_build_index(c, st);
4189
4190     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
4191         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
4192         if (c->enable_drefs) {
4193             if (mov_open_dref(c, &sc->pb, c->fc->url, dref) < 0)
4194                 av_log(c->fc, AV_LOG_ERROR,
4195                        "stream %d, error opening alias: path='%s', dir='%s', "
4196                        "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
4197                        st->index, dref->path, dref->dir, dref->filename,
4198                        dref->volume, dref->nlvl_from, dref->nlvl_to);
4199         } else {
4200             av_log(c->fc, AV_LOG_WARNING,
4201                    "Skipped opening external track: "
4202                    "stream %d, alias: path='%s', dir='%s', "
4203                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d."
4204                    "Set enable_drefs to allow this.\n",
4205                    st->index, dref->path, dref->dir, dref->filename,
4206                    dref->volume, dref->nlvl_from, dref->nlvl_to);
4207         }
4208     } else {
4209         sc->pb = c->fc->pb;
4210         sc->pb_is_copied = 1;
4211     }
4212
4213     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
4214         if (!st->sample_aspect_ratio.num && st->codecpar->width && st->codecpar->height &&
4215             sc->height && sc->width &&
4216             (st->codecpar->width != sc->width || st->codecpar->height != sc->height)) {
4217             st->sample_aspect_ratio = av_d2q(((double)st->codecpar->height * sc->width) /
4218                                              ((double)st->codecpar->width * sc->height), INT_MAX);
4219         }
4220
4221 #if FF_API_R_FRAME_RATE
4222         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
4223             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
4224                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
4225 #endif
4226     }
4227
4228     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
4229     if (!st->codecpar->extradata_size && st->codecpar->codec_id == AV_CODEC_ID_H264 &&
4230         TAG_IS_AVCI(st->codecpar->codec_tag)) {
4231         ret = ff_generate_avci_extradata(st);
4232         if (ret < 0)
4233             return ret;
4234     }
4235
4236     switch (st->codecpar->codec_id) {
4237 #if CONFIG_H261_DECODER
4238     case AV_CODEC_ID_H261:
4239 #endif
4240 #if CONFIG_H263_DECODER
4241     case AV_CODEC_ID_H263:
4242 #endif
4243 #if CONFIG_MPEG4_DECODER
4244     case AV_CODEC_ID_MPEG4:
4245 #endif
4246         st->codecpar->width = 0; /* let decoder init width/height */
4247         st->codecpar->height= 0;
4248         break;
4249     }
4250
4251     // If the duration of the mp3 packets is not constant, then they could need a parser
4252     if (st->codecpar->codec_id == AV_CODEC_ID_MP3
4253         && sc->stts_count > 3
4254         && sc->stts_count*10 > st->nb_frames
4255         && sc->time_scale == st->codecpar->sample_rate) {
4256             st->need_parsing = AVSTREAM_PARSE_FULL;
4257     }
4258     /* Do not need those anymore. */
4259     av_freep(&sc->chunk_offsets);
4260     av_freep(&sc->sample_sizes);
4261     av_freep(&sc->keyframes);
4262     av_freep(&sc->stts_data);
4263     av_freep(&sc->stps_data);
4264     av_freep(&sc->elst_data);
4265     av_freep(&sc->rap_group);
4266
4267     return 0;
4268 }
4269
4270 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4271 {
4272     int ret;
4273     c->itunes_metadata = 1;
4274     ret = mov_read_default(c, pb, atom);
4275     c->itunes_metadata = 0;
4276     return ret;
4277 }
4278
4279 static int mov_read_keys(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4280 {
4281     uint32_t count;
4282     uint32_t i;
4283
4284     if (atom.size < 8)
4285         return 0;
4286
4287     avio_skip(pb, 4);
4288     count = avio_rb32(pb);
4289     if (count > UINT_MAX / sizeof(*c->meta_keys) - 1) {
4290         av_log(c->fc, AV_LOG_ERROR,
4291                "The 'keys' atom with the invalid key count: %"PRIu32"\n", count);
4292         return AVERROR_INVALIDDATA;
4293     }
4294
4295     c->meta_keys_count = count + 1;
4296     c->meta_keys = av_mallocz(c->meta_keys_count * sizeof(*c->meta_keys));
4297     if (!c->meta_keys)
4298         return AVERROR(ENOMEM);
4299
4300     for (i = 1; i <= count; ++i) {
4301         uint32_t key_size = avio_rb32(pb);
4302         uint32_t type = avio_rl32(pb);
4303         if (key_size < 8) {
4304             av_log(c->fc, AV_LOG_ERROR,
4305                    "The key# %"PRIu32" in meta has invalid size:"
4306                    "%"PRIu32"\n", i, key_size);
4307             return AVERROR_INVALIDDATA;
4308         }
4309         key_size -= 8;
4310         if (type != MKTAG('m','d','t','a')) {
4311             avio_skip(pb, key_size);
4312         }
4313         c->meta_keys[i] = av_mallocz(key_size + 1);
4314         if (!c->meta_keys[i])
4315             return AVERROR(ENOMEM);
4316         avio_read(pb, c->meta_keys[i], key_size);
4317     }
4318
4319     return 0;
4320 }
4321
4322 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4323 {
4324     int64_t end = avio_tell(pb) + atom.size;
4325     uint8_t *key = NULL, *val = NULL, *mean = NULL;
4326     int i;
4327     int ret = 0;
4328     AVStream *st;
4329     MOVStreamContext *sc;
4330
4331     if (c->fc->nb_streams < 1)
4332         return 0;
4333     st = c->fc->streams[c->fc->nb_streams-1];
4334     sc = st->priv_data;
4335
4336     for (i = 0; i < 3; i++) {
4337         uint8_t **p;
4338         uint32_t len, tag;
4339
4340         if (end - avio_tell(pb) <= 12)
4341             break;
4342
4343         len = avio_rb32(pb);
4344         tag = avio_rl32(pb);
4345         avio_skip(pb, 4); // flags
4346
4347         if (len < 12 || len - 12 > end - avio_tell(pb))
4348             break;
4349         len -= 12;
4350
4351         if (tag == MKTAG('m', 'e', 'a', 'n'))
4352             p = &mean;
4353         else if (tag == MKTAG('n', 'a', 'm', 'e'))
4354             p = &key;
4355         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
4356             avio_skip(pb, 4);
4357             len -= 4;
4358             p = &val;
4359         } else
4360             break;
4361
4362         *p = av_malloc(len + 1);
4363         if (!*p) {
4364             ret = AVERROR(ENOMEM);
4365             break;
4366         }
4367         ret = ffio_read_size(pb, *p, len);
4368         if (ret < 0) {
4369             av_freep(p);
4370             break;
4371         }
4372         (*p)[len] = 0;
4373     }
4374
4375     if (mean && key && val) {
4376         if (strcmp(key, "iTunSMPB") == 0) {
4377             int priming, remainder, samples;
4378             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
4379                 if(priming>0 && priming<16384)
4380                     sc->start_pad = priming;
4381             }
4382         }
4383         if (strcmp(key, "cdec") != 0) {
4384             av_dict_set(&c->fc->metadata, key, val,
4385                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
4386             key = val = NULL;
4387         }
4388     } else {
4389         av_log(c->fc, AV_LOG_VERBOSE,
4390                "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
4391     }
4392
4393     avio_seek(pb, end, SEEK_SET);
4394     av_freep(&key);
4395     av_freep(&val);
4396     av_freep(&mean);
4397     return ret;
4398 }
4399
4400 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4401 {
4402     while (atom.size > 8) {
4403         uint32_t tag = avio_rl32(pb);
4404         atom.size -= 4;
4405         if (tag == MKTAG('h','d','l','r')) {
4406             avio_seek(pb, -8, SEEK_CUR);
4407             atom.size += 8;
4408             return mov_read_default(c, pb, atom);
4409         }
4410     }
4411     return 0;
4412 }
4413
4414 // return 1 when matrix is identity, 0 otherwise
4415 #define IS_MATRIX_IDENT(matrix)            \
4416     ( (matrix)[0][0] == (1 << 16) &&       \
4417       (matrix)[1][1] == (1 << 16) &&       \
4418       (matrix)[2][2] == (1 << 30) &&       \
4419      !(matrix)[0][1] && !(matrix)[0][2] && \
4420      !(matrix)[1][0] && !(matrix)[1][2] && \
4421      !(matrix)[2][0] && !(matrix)[2][1])
4422
4423 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4424 {
4425     int i, j, e;
4426     int width;
4427     int height;
4428     int display_matrix[3][3];
4429     int res_display_matrix[3][3] = { { 0 } };
4430     AVStream *st;
4431     MOVStreamContext *sc;
4432     int version;
4433     int flags;
4434
4435     if (c->fc->nb_streams < 1)
4436         return 0;
4437     st = c->fc->streams[c->fc->nb_streams-1];
4438     sc = st->priv_data;
4439
4440     version = avio_r8(pb);
4441     flags = avio_rb24(pb);
4442     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
4443
4444     if (version == 1) {
4445         avio_rb64(pb);
4446         avio_rb64(pb);
4447     } else {
4448         avio_rb32(pb); /* creation time */
4449         avio_rb32(pb); /* modification time */
4450     }
4451     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
4452     avio_rb32(pb); /* reserved */
4453
4454     /* highlevel (considering edits) duration in movie timebase */
4455     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
4456     avio_rb32(pb); /* reserved */
4457     avio_rb32(pb); /* reserved */
4458
4459     avio_rb16(pb); /* layer */
4460     avio_rb16(pb); /* alternate group */
4461     avio_rb16(pb); /* volume */
4462     avio_rb16(pb); /* reserved */
4463
4464     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
4465     // they're kept in fixed point format through all calculations
4466     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
4467     // side data, but the scale factor is not needed to calculate aspect ratio
4468     for (i = 0; i < 3; i++) {
4469         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
4470         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
4471         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
4472     }
4473
4474     width = avio_rb32(pb);       // 16.16 fixed point track width
4475     height = avio_rb32(pb);      // 16.16 fixed point track height
4476     sc->width = width >> 16;
4477     sc->height = height >> 16;
4478
4479     // apply the moov display matrix (after the tkhd one)
4480     for (i = 0; i < 3; i++) {
4481         const int sh[3] = { 16, 16, 30 };
4482         for (j = 0; j < 3; j++) {
4483             for (e = 0; e < 3; e++) {
4484                 res_display_matrix[i][j] +=
4485                     ((int64_t) display_matrix[i][e] *
4486                      c->movie_display_matrix[e][j]) >> sh[e];
4487             }
4488         }
4489     }
4490
4491     // save the matrix when it is not the default identity
4492     if (!IS_MATRIX_IDENT(res_display_matrix)) {
4493         double rotate;
4494
4495         av_freep(&sc->display_matrix);
4496         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
4497         if (!sc->display_matrix)
4498             return AVERROR(ENOMEM);
4499
4500         for (i = 0; i < 3; i++)
4501             for (j = 0; j < 3; j++)
4502                 sc->display_matrix[i * 3 + j] = res_display_matrix[i][j];
4503
4504 #if FF_API_OLD_ROTATE_API
4505         rotate = av_display_rotation_get(sc->display_matrix);
4506         if (!isnan(rotate)) {
4507             char rotate_buf[64];
4508             rotate = -rotate;
4509             if (rotate < 0) // for backward compatibility
4510                 rotate += 360;
4511             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
4512             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
4513         }
4514 #endif
4515     }
4516
4517     // transform the display width/height according to the matrix
4518     // to keep the same scale, use [width height 1<<16]
4519     if (width && height && sc->display_matrix) {
4520         double disp_transform[2];
4521
4522         for (i = 0; i < 2; i++)
4523             disp_transform[i] = hypot(sc->display_matrix[0 + i],
4524                                       sc->display_matrix[3 + i]);
4525
4526         if (disp_transform[0] > 0       && disp_transform[1] > 0 &&
4527             disp_transform[0] < (1<<24) && disp_transform[1] < (1<<24) &&
4528             fabs((disp_transform[0] / disp_transform[1]) - 1.0) > 0.01)
4529             st->sample_aspect_ratio = av_d2q(
4530                 disp_transform[0] / disp_transform[1],
4531                 INT_MAX);
4532     }
4533     return 0;
4534 }
4535
4536 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4537 {
4538     MOVFragment *frag = &c->fragment;
4539     MOVTrackExt *trex = NULL;
4540     int flags, track_id, i;
4541
4542     avio_r8(pb); /* version */
4543     flags = avio_rb24(pb);
4544
4545     track_id = avio_rb32(pb);
4546     if (!track_id)
4547         return AVERROR_INVALIDDATA;
4548     frag->track_id = track_id;
4549     set_frag_stream(&c->frag_index, track_id);
4550     for (i = 0; i < c->trex_count; i++)
4551         if (c->trex_data[i].track_id == frag->track_id) {
4552             trex = &c->trex_data[i];
4553             break;
4554         }
4555     if (!trex) {
4556         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
4557         return AVERROR_INVALIDDATA;
4558     }
4559
4560     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
4561                              avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
4562                              frag->moof_offset : frag->implicit_offset;
4563     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
4564
4565     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
4566                      avio_rb32(pb) : trex->duration;
4567     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
4568                      avio_rb32(pb) : trex->size;
4569     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
4570                      avio_rb32(pb) : trex->flags;
4571     av_log(c->fc, AV_LOG_TRACE, "frag flags 0x%x\n", frag->flags);
4572
4573     return 0;
4574 }
4575
4576 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4577 {
4578     unsigned i, num;
4579     void *new_tracks;
4580
4581     num = atom.size / 4;
4582     if (!(new_tracks = av_malloc_array(num, sizeof(int))))
4583         return AVERROR(ENOMEM);
4584
4585     av_free(c->chapter_tracks);
4586     c->chapter_tracks = new_tracks;
4587     c->nb_chapter_tracks = num;
4588
4589     for (i = 0; i < num && !pb->eof_reached; i++)
4590         c->chapter_tracks[i] = avio_rb32(pb);
4591
4592     return 0;
4593 }
4594
4595 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4596 {
4597     MOVTrackExt *trex;
4598     int err;
4599
4600     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
4601         return AVERROR_INVALIDDATA;
4602     if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
4603                                  sizeof(*c->trex_data))) < 0) {
4604         c->trex_count = 0;
4605         return err;
4606     }
4607
4608     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
4609
4610     trex = &c->trex_data[c->trex_count++];
4611     avio_r8(pb); /* version */
4612     avio_rb24(pb); /* flags */
4613     trex->track_id = avio_rb32(pb);
4614     trex->stsd_id  = avio_rb32(pb);
4615     trex->duration = avio_rb32(pb);
4616     trex->size     = avio_rb32(pb);
4617     trex->flags    = avio_rb32(pb);
4618     return 0;
4619 }
4620
4621 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4622 {
4623     MOVFragment *frag = &c->fragment;
4624     AVStream *st = NULL;
4625     MOVStreamContext *sc;
4626     int version, i;
4627     MOVFragmentStreamInfo * frag_stream_info;
4628     int64_t base_media_decode_time;
4629
4630     for (i = 0; i < c->fc->nb_streams; i++) {
4631         if (c->fc->streams[i]->id == frag->track_id) {
4632             st = c->fc->streams[i];
4633             break;
4634         }
4635     }
4636     if (!st) {
4637         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4638         return AVERROR_INVALIDDATA;
4639     }
4640     sc = st->priv_data;
4641     if (sc->pseudo_stream_id + 1 != frag->stsd_id && sc->pseudo_stream_id != -1)
4642         return 0;
4643     version = avio_r8(pb);
4644     avio_rb24(pb); /* flags */
4645     if (version) {
4646         base_media_decode_time = avio_rb64(pb);
4647     } else {
4648         base_media_decode_time = avio_rb32(pb);
4649     }
4650
4651     frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4652     if (frag_stream_info)
4653         frag_stream_info->tfdt_dts = base_media_decode_time;
4654     sc->track_end = base_media_decode_time;
4655
4656     return 0;
4657 }
4658
4659 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4660 {
4661     MOVFragment *frag = &c->fragment;
4662     AVStream *st = NULL;
4663     MOVStreamContext *sc;
4664     MOVStts *ctts_data;
4665     uint64_t offset;
4666     int64_t dts, pts = AV_NOPTS_VALUE;
4667     int data_offset = 0;
4668     unsigned entries, first_sample_flags = frag->flags;
4669     int flags, distance, i;
4670     int64_t prev_dts = AV_NOPTS_VALUE;
4671     int next_frag_index = -1, index_entry_pos;
4672     size_t requested_size;
4673     size_t old_ctts_allocated_size;
4674     AVIndexEntry *new_entries;
4675     MOVFragmentStreamInfo * frag_stream_info;
4676
4677     for (i = 0; i < c->fc->nb_streams; i++) {
4678         if (c->fc->streams[i]->id == frag->track_id) {
4679             st = c->fc->streams[i];
4680             break;
4681         }
4682     }
4683     if (!st) {
4684         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4685         return AVERROR_INVALIDDATA;
4686     }
4687     sc = st->priv_data;
4688     if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
4689         return 0;
4690
4691     // Find the next frag_index index that has a valid index_entry for
4692     // the current track_id.
4693     //
4694     // A valid index_entry means the trun for the fragment was read
4695     // and it's samples are in index_entries at the given position.
4696     // New index entries will be inserted before the index_entry found.
4697     index_entry_pos = st->nb_index_entries;
4698     for (i = c->frag_index.current + 1; i < c->frag_index.nb_items; i++) {
4699         frag_stream_info = get_frag_stream_info(&c->frag_index, i, frag->track_id);
4700         if (frag_stream_info && frag_stream_info->index_entry >= 0) {
4701             next_frag_index = i;
4702             index_entry_pos = frag_stream_info->index_entry;
4703             break;
4704         }
4705     }
4706
4707     avio_r8(pb); /* version */
4708     flags = avio_rb24(pb);
4709     entries = avio_rb32(pb);
4710     av_log(c->fc, AV_LOG_TRACE, "flags 0x%x entries %u\n", flags, entries);
4711
4712     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
4713         return AVERROR_INVALIDDATA;
4714     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
4715     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
4716
4717     frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4718     if (frag_stream_info)
4719     {
4720         if (frag_stream_info->first_tfra_pts != AV_NOPTS_VALUE &&
4721             c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
4722             pts = frag_stream_info->first_tfra_pts;
4723             av_log(c->fc, AV_LOG_DEBUG, "found mfra time %"PRId64
4724                     ", using it for pts\n", pts);
4725         } else if (frag_stream_info->sidx_pts != AV_NOPTS_VALUE) {
4726             // FIXME: sidx earliest_presentation_time is *PTS*, s.b.
4727             // pts = frag_stream_info->sidx_pts;
4728             dts = frag_stream_info->sidx_pts - sc->time_offset;
4729             av_log(c->fc, AV_LOG_DEBUG, "found sidx time %"PRId64
4730                     ", using it for pts\n", pts);
4731         } else if (frag_stream_info->tfdt_dts != AV_NOPTS_VALUE) {
4732             dts = frag_stream_info->tfdt_dts - sc->time_offset;
4733             av_log(c->fc, AV_LOG_DEBUG, "found tfdt time %"PRId64
4734                     ", using it for dts\n", dts);
4735         } else {
4736             dts = sc->track_end - sc->time_offset;
4737             av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4738                     ", using it for dts\n", dts);
4739         }
4740     } else {
4741         dts = sc->track_end - sc->time_offset;
4742         av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4743                 ", using it for dts\n", dts);
4744     }
4745     offset   = frag->base_data_offset + data_offset;
4746     distance = 0;
4747     av_log(c->fc, AV_LOG_TRACE, "first sample flags 0x%x\n", first_sample_flags);
4748
4749     // realloc space for new index entries
4750     if((unsigned)st->nb_index_entries + entries >= UINT_MAX / sizeof(AVIndexEntry)) {
4751         entries = UINT_MAX / sizeof(AVIndexEntry) - st->nb_index_entries;
4752         av_log(c->fc, AV_LOG_ERROR, "Failed to add index entry\n");
4753     }
4754     if (entries <= 0)
4755         return -1;
4756
4757     requested_size = (st->nb_index_entries + entries) * sizeof(AVIndexEntry);
4758     new_entries = av_fast_realloc(st->index_entries,
4759                                   &st->index_entries_allocated_size,
4760                                   requested_size);
4761     if(!new_entries)
4762         return AVERROR(ENOMEM);
4763     st->index_entries= new_entries;
4764
4765     requested_size = (st->nb_index_entries + entries) * sizeof(*sc->ctts_data);
4766     old_ctts_allocated_size = sc->ctts_allocated_size;
4767     ctts_data = av_fast_realloc(sc->ctts_data, &sc->ctts_allocated_size,
4768                                 requested_size);
4769     if (!ctts_data)
4770         return AVERROR(ENOMEM);
4771     sc->ctts_data = ctts_data;
4772
4773     // In case there were samples without ctts entries, ensure they get
4774     // zero valued entries. This ensures clips which mix boxes with and
4775     // without ctts entries don't pickup uninitialized data.
4776     memset((uint8_t*)(sc->ctts_data) + old_ctts_allocated_size, 0,
4777            sc->ctts_allocated_size - old_ctts_allocated_size);
4778
4779     if (index_entry_pos < st->nb_index_entries) {
4780         // Make hole in index_entries and ctts_data for new samples
4781         memmove(st->index_entries + index_entry_pos + entries,
4782                 st->index_entries + index_entry_pos,
4783                 sizeof(*st->index_entries) *
4784                 (st->nb_index_entries - index_entry_pos));
4785         memmove(sc->ctts_data + index_entry_pos + entries,
4786                 sc->ctts_data + index_entry_pos,
4787                 sizeof(*sc->ctts_data) * (sc->ctts_count - index_entry_pos));
4788         if (index_entry_pos < sc->current_sample) {
4789             sc->current_sample += entries;
4790         }
4791     }
4792
4793     st->nb_index_entries += entries;
4794     sc->ctts_count = st->nb_index_entries;
4795
4796     // Record the index_entry position in frag_index of this fragment
4797     if (frag_stream_info)
4798         frag_stream_info->index_entry = index_entry_pos;
4799
4800     if (index_entry_pos > 0)
4801         prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4802
4803     for (i = 0; i < entries && !pb->eof_reached; i++) {
4804         unsigned sample_size = frag->size;
4805         int sample_flags = i ? frag->flags : first_sample_flags;
4806         unsigned sample_duration = frag->duration;
4807         unsigned ctts_duration = 0;
4808         int keyframe = 0;
4809         int index_entry_flags = 0;
4810
4811         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
4812         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
4813         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
4814         if (flags & MOV_TRUN_SAMPLE_CTS)      ctts_duration   = avio_rb32(pb);
4815
4816         mov_update_dts_shift(sc, ctts_duration);
4817         if (pts != AV_NOPTS_VALUE) {
4818             dts = pts - sc->dts_shift;
4819             if (flags & MOV_TRUN_SAMPLE_CTS) {
4820                 dts -= ctts_duration;
4821             } else {
4822                 dts -= sc->time_offset;
4823             }
4824             av_log(c->fc, AV_LOG_DEBUG,
4825                    "pts %"PRId64" calculated dts %"PRId64
4826                    " sc->dts_shift %d ctts.duration %d"
4827                    " sc->time_offset %"PRId64
4828                    " flags & MOV_TRUN_SAMPLE_CTS %d\n",
4829                    pts, dts,
4830                    sc->dts_shift, ctts_duration,
4831                    sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
4832             pts = AV_NOPTS_VALUE;
4833         }
4834
4835         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4836             keyframe = 1;
4837         else
4838             keyframe =
4839                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
4840                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
4841         if (keyframe) {
4842             distance = 0;
4843             index_entry_flags |= AVINDEX_KEYFRAME;
4844         }
4845         // Fragments can overlap in time.  Discard overlapping frames after
4846         // decoding.
4847         if (prev_dts >= dts)
4848             index_entry_flags |= AVINDEX_DISCARD_FRAME;
4849
4850         st->index_entries[index_entry_pos].pos = offset;
4851         st->index_entries[index_entry_pos].timestamp = dts;
4852         st->index_entries[index_entry_pos].size= sample_size;
4853         st->index_entries[index_entry_pos].min_distance= distance;
4854         st->index_entries[index_entry_pos].flags = index_entry_flags;
4855
4856         sc->ctts_data[index_entry_pos].count = 1;
4857         sc->ctts_data[index_entry_pos].duration = ctts_duration;
4858         index_entry_pos++;
4859
4860         av_log(c->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
4861                 "size %u, distance %d, keyframe %d\n", st->index,
4862                 index_entry_pos, offset, dts, sample_size, distance, keyframe);
4863         distance++;
4864         dts += sample_duration;
4865         offset += sample_size;
4866         sc->data_size += sample_size;
4867
4868         if (sample_duration <= INT64_MAX - sc->duration_for_fps &&
4869             1 <= INT64_MAX - sc->nb_frames_for_fps
4870         ) {
4871             sc->duration_for_fps += sample_duration;
4872             sc->nb_frames_for_fps ++;
4873         }
4874     }
4875     if (i < entries) {
4876         // EOF found before reading all entries.  Fix the hole this would
4877         // leave in index_entries and ctts_data
4878         int gap = entries - i;
4879         memmove(st->index_entries + index_entry_pos,
4880                 st->index_entries + index_entry_pos + gap,
4881                 sizeof(*st->index_entries) *
4882                 (st->nb_index_entries - (index_entry_pos + gap)));
4883         memmove(sc->ctts_data + index_entry_pos,
4884                 sc->ctts_data + index_entry_pos + gap,
4885                 sizeof(*sc->ctts_data) *
4886                 (sc->ctts_count - (index_entry_pos + gap)));
4887
4888         st->nb_index_entries -= gap;
4889         sc->ctts_count -= gap;
4890         if (index_entry_pos < sc->current_sample) {
4891             sc->current_sample -= gap;
4892         }
4893         entries = i;
4894     }
4895
4896     // The end of this new fragment may overlap in time with the start
4897     // of the next fragment in index_entries. Mark the samples in the next
4898     // fragment that overlap with AVINDEX_DISCARD_FRAME
4899     prev_dts = AV_NOPTS_VALUE;
4900     if (index_entry_pos > 0)
4901         prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4902     for (i = index_entry_pos; i < st->nb_index_entries; i++) {
4903         if (prev_dts < st->index_entries[i].timestamp)
4904             break;
4905         st->index_entries[i].flags |= AVINDEX_DISCARD_FRAME;
4906     }
4907
4908     // If a hole was created to insert the new index_entries into,
4909     // the index_entry recorded for all subsequent moof must
4910     // be incremented by the number of entries inserted.
4911     fix_frag_index_entries(&c->frag_index, next_frag_index,
4912                            frag->track_id, entries);
4913
4914     if (pb->eof_reached) {
4915         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted TRUN atom\n");
4916         return AVERROR_EOF;
4917     }
4918
4919     frag->implicit_offset = offset;
4920
4921     sc->track_end = dts + sc->time_offset;
4922     if (st->duration < sc->track_end)
4923         st->duration = sc->track_end;
4924
4925     return 0;
4926 }
4927
4928 static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4929 {
4930     int64_t offset = avio_tell(pb) + atom.size, pts, timestamp;
4931     uint8_t version;
4932     unsigned i, j, track_id, item_count;
4933     AVStream *st = NULL;
4934     AVStream *ref_st = NULL;
4935     MOVStreamContext *sc, *ref_sc = NULL;
4936     AVRational timescale;
4937
4938     version = avio_r8(pb);
4939     if (version > 1) {
4940         avpriv_request_sample(c->fc, "sidx version %u", version);
4941         return 0;
4942     }
4943
4944     avio_rb24(pb); // flags
4945
4946     track_id = avio_rb32(pb); // Reference ID
4947     for (i = 0; i < c->fc->nb_streams; i++) {
4948         if (c->fc->streams[i]->id == track_id) {
4949             st = c->fc->streams[i];
4950             break;
4951         }
4952     }
4953     if (!st) {
4954         av_log(c->fc, AV_LOG_WARNING, "could not find corresponding track id %d\n", track_id);
4955         return 0;
4956     }
4957
4958     sc = st->priv_data;
4959
4960     timescale = av_make_q(1, avio_rb32(pb));
4961
4962     if (timescale.den <= 0) {
4963         av_log(c->fc, AV_LOG_ERROR, "Invalid sidx timescale 1/%d\n", timescale.den);
4964         return AVERROR_INVALIDDATA;
4965     }
4966
4967     if (version == 0) {
4968         pts = avio_rb32(pb);
4969         offset += avio_rb32(pb);
4970     } else {
4971         pts = avio_rb64(pb);
4972         offset += avio_rb64(pb);
4973     }
4974
4975     avio_rb16(pb); // reserved
4976
4977     item_count = avio_rb16(pb);
4978
4979     for (i = 0; i < item_count; i++) {
4980         int index;
4981         MOVFragmentStreamInfo * frag_stream_info;
4982         uint32_t size = avio_rb32(pb);
4983         uint32_t duration = avio_rb32(pb);
4984         if (size & 0x80000000) {
4985             avpriv_request_sample(c->fc, "sidx reference_type 1");
4986             return AVERROR_PATCHWELCOME;
4987         }
4988         avio_rb32(pb); // sap_flags
4989         timestamp = av_rescale_q(pts, st->time_base, timescale);
4990
4991         index = update_frag_index(c, offset);
4992         frag_stream_info = get_frag_stream_info(&c->frag_index, index, track_id);
4993         if (frag_stream_info)
4994             frag_stream_info->sidx_pts = timestamp;
4995
4996         offset += size;
4997         pts += duration;
4998     }
4999
5000     st->duration = sc->track_end = pts;
5001
5002     sc->has_sidx = 1;
5003
5004     if (offset == avio_size(pb)) {
5005         // Find first entry in fragment index that came from an sidx.
5006         // This will pretty much always be the first entry.
5007         for (i = 0; i < c->frag_index.nb_items; i++) {
5008             MOVFragmentIndexItem * item = &c->frag_index.item[i];
5009             for (j = 0; ref_st == NULL && j < item->nb_stream_info; j++) {
5010                 MOVFragmentStreamInfo * si;
5011                 si = &item->stream_info[j];
5012                 if (si->sidx_pts != AV_NOPTS_VALUE) {
5013                     ref_st = c->fc->streams[j];
5014                     ref_sc = ref_st->priv_data;
5015                     break;
5016                 }
5017             }
5018         }
5019         for (i = 0; i < c->fc->nb_streams; i++) {
5020             st = c->fc->streams[i];
5021             sc = st->priv_data;
5022             if (!sc->has_sidx) {
5023                 st->duration = sc->track_end = av_rescale(ref_st->duration, sc->time_scale, ref_sc->time_scale);
5024             }
5025         }
5026
5027         c->frag_index.complete = 1;
5028     }
5029
5030     return 0;
5031 }
5032
5033 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
5034 /* like the files created with Adobe Premiere 5.0, for samples see */
5035 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
5036 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5037 {
5038     int err;
5039
5040     if (atom.size < 8)
5041         return 0; /* continue */
5042     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
5043         avio_skip(pb, atom.size - 4);
5044         return 0;
5045     }
5046     atom.type = avio_rl32(pb);
5047     atom.size -= 8;
5048     if (atom.type != MKTAG('m','d','a','t')) {
5049         avio_skip(pb, atom.size);
5050         return 0;
5051     }
5052     err = mov_read_mdat(c, pb, atom);
5053     return err;
5054 }
5055
5056 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5057 {
5058 #if CONFIG_ZLIB
5059     AVIOContext ctx;
5060     uint8_t *cmov_data;
5061     uint8_t *moov_data; /* uncompressed data */
5062     long cmov_len, moov_len;
5063     int ret = -1;
5064
5065     avio_rb32(pb); /* dcom atom */
5066     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
5067         return AVERROR_INVALIDDATA;
5068     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
5069         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
5070         return AVERROR_INVALIDDATA;
5071     }
5072     avio_rb32(pb); /* cmvd atom */
5073     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
5074         return AVERROR_INVALIDDATA;
5075     moov_len = avio_rb32(pb); /* uncompressed size */
5076     cmov_len = atom.size - 6 * 4;
5077
5078     cmov_data = av_malloc(cmov_len);
5079     if (!cmov_data)
5080         return AVERROR(ENOMEM);
5081     moov_data = av_malloc(moov_len);
5082     if (!moov_data) {
5083         av_free(cmov_data);
5084         return AVERROR(ENOMEM);
5085     }
5086     ret = ffio_read_size(pb, cmov_data, cmov_len);
5087     if (ret < 0)
5088         goto free_and_return;
5089
5090     ret = AVERROR_INVALIDDATA;
5091     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
5092         goto free_and_return;
5093     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
5094         goto free_and_return;
5095     ctx.seekable = AVIO_SEEKABLE_NORMAL;
5096     atom.type = MKTAG('m','o','o','v');
5097     atom.size = moov_len;
5098     ret = mov_read_default(c, &ctx, atom);
5099 free_and_return:
5100     av_free(moov_data);
5101     av_free(cmov_data);
5102     return ret;
5103 #else
5104     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
5105     return AVERROR(ENOSYS);
5106 #endif
5107 }
5108
5109 /* edit list atom */
5110 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5111 {
5112     MOVStreamContext *sc;
5113     int i, edit_count, version;
5114     int64_t elst_entry_size;
5115
5116     if (c->fc->nb_streams < 1 || c->ignore_editlist)
5117         return 0;
5118     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
5119
5120     version = avio_r8(pb); /* version */
5121     avio_rb24(pb); /* flags */
5122     edit_count = avio_rb32(pb); /* entries */
5123     atom.size -= 8;
5124
5125     elst_entry_size = version == 1 ? 20 : 12;
5126     if (atom.size != edit_count * elst_entry_size) {
5127         if (c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5128             av_log(c->fc, AV_LOG_ERROR, "Invalid edit list entry_count: %d for elst atom of size: %"PRId64" bytes.\n",
5129                    edit_count, atom.size + 8);
5130             return AVERROR_INVALIDDATA;
5131         } else {
5132             edit_count = atom.size / elst_entry_size;
5133             if (edit_count * elst_entry_size != atom.size) {
5134                 av_log(c->fc, AV_LOG_WARNING, "ELST atom of %"PRId64" bytes, bigger than %d entries.", atom.size, edit_count);
5135             }
5136         }
5137     }
5138
5139     if (!edit_count)
5140         return 0;
5141     if (sc->elst_data)
5142         av_log(c->fc, AV_LOG_WARNING, "Duplicated ELST atom\n");
5143     av_free(sc->elst_data);
5144     sc->elst_count = 0;
5145     sc->elst_data = av_malloc_array(edit_count, sizeof(*sc->elst_data));
5146     if (!sc->elst_data)
5147         return AVERROR(ENOMEM);
5148
5149     av_log(c->fc, AV_LOG_TRACE, "track[%u].edit_count = %i\n", c->fc->nb_streams - 1, edit_count);
5150     for (i = 0; i < edit_count && atom.size > 0 && !pb->eof_reached; i++) {
5151         MOVElst *e = &sc->elst_data[i];
5152
5153         if (version == 1) {
5154             e->duration = avio_rb64(pb);
5155             e->time     = avio_rb64(pb);
5156             atom.size -= 16;
5157         } else {
5158             e->duration = avio_rb32(pb); /* segment duration */
5159             e->time     = (int32_t)avio_rb32(pb); /* media time */
5160             atom.size -= 8;
5161         }
5162         e->rate = avio_rb32(pb) / 65536.0;
5163         atom.size -= 4;
5164         av_log(c->fc, AV_LOG_TRACE, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
5165                e->duration, e->time, e->rate);
5166
5167         if (e->time < 0 && e->time != -1 &&
5168             c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5169             av_log(c->fc, AV_LOG_ERROR, "Track %d, edit %d: Invalid edit list media time=%"PRId64"\n",
5170                    c->fc->nb_streams-1, i, e->time);
5171             return AVERROR_INVALIDDATA;
5172         }
5173     }
5174     sc->elst_count = i;
5175
5176     return 0;
5177 }
5178
5179 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5180 {
5181     MOVStreamContext *sc;
5182
5183     if (c->fc->nb_streams < 1)
5184         return AVERROR_INVALIDDATA;
5185     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5186     sc->timecode_track = avio_rb32(pb);
5187     return 0;
5188 }
5189
5190 static int mov_read_av1c(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5191 {
5192     AVStream *st;
5193     int ret;
5194
5195     if (c->fc->nb_streams < 1)
5196         return 0;
5197     st = c->fc->streams[c->fc->nb_streams - 1];
5198
5199     if (atom.size < 4) {
5200         av_log(c->fc, AV_LOG_ERROR, "Empty AV1 Codec Configuration Box\n");
5201         return AVERROR_INVALIDDATA;
5202     }
5203
5204     /* For now, propagate only the OBUs, if any. Once libavcodec is
5205        updated to handle isobmff style extradata this can be removed. */
5206     avio_skip(pb, 4);
5207
5208     if (atom.size == 4)
5209         return 0;
5210
5211     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 4);
5212     if (ret < 0)
5213         return ret;
5214
5215     return 0;
5216 }
5217
5218 static int mov_read_vpcc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5219 {
5220     AVStream *st;
5221     int version, color_range, color_primaries, color_trc, color_space;
5222
5223     if (c->fc->nb_streams < 1)
5224         return 0;
5225     st = c->fc->streams[c->fc->nb_streams - 1];
5226
5227     if (atom.size < 5) {
5228         av_log(c->fc, AV_LOG_ERROR, "Empty VP Codec Configuration box\n");
5229         return AVERROR_INVALIDDATA;
5230     }
5231
5232     version = avio_r8(pb);
5233     if (version != 1) {
5234         av_log(c->fc, AV_LOG_WARNING, "Unsupported VP Codec Configuration box version %d\n", version);
5235         return 0;
5236     }
5237     avio_skip(pb, 3); /* flags */
5238
5239     avio_skip(pb, 2); /* profile + level */
5240     color_range     = avio_r8(pb); /* bitDepth, chromaSubsampling, videoFullRangeFlag */
5241     color_primaries = avio_r8(pb);
5242     color_trc       = avio_r8(pb);
5243     color_space     = avio_r8(pb);
5244     if (avio_rb16(pb)) /* codecIntializationDataSize */
5245         return AVERROR_INVALIDDATA;
5246
5247     if (!av_color_primaries_name(color_primaries))
5248         color_primaries = AVCOL_PRI_UNSPECIFIED;
5249     if (!av_color_transfer_name(color_trc))
5250         color_trc = AVCOL_TRC_UNSPECIFIED;
5251     if (!av_color_space_name(color_space))
5252         color_space = AVCOL_SPC_UNSPECIFIED;
5253
5254     st->codecpar->color_range     = (color_range & 1) ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
5255     st->codecpar->color_primaries = color_primaries;
5256     st->codecpar->color_trc       = color_trc;
5257     st->codecpar->color_space     = color_space;
5258
5259     return 0;
5260 }
5261
5262 static int mov_read_smdm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5263 {
5264     MOVStreamContext *sc;
5265     const int chroma_den = 50000;
5266     const int luma_den = 10000;
5267     int i, j, version;
5268
5269     if (c->fc->nb_streams < 1)
5270         return AVERROR_INVALIDDATA;
5271
5272     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5273
5274     if (atom.size < 5) {
5275         av_log(c->fc, AV_LOG_ERROR, "Empty Mastering Display Metadata box\n");
5276         return AVERROR_INVALIDDATA;
5277     }
5278
5279     version = avio_r8(pb);
5280     if (version) {
5281         av_log(c->fc, AV_LOG_WARNING, "Unsupported Mastering Display Metadata box version %d\n", version);
5282         return 0;
5283     }
5284     avio_skip(pb, 3); /* flags */
5285
5286     sc->mastering = av_mastering_display_metadata_alloc();
5287     if (!sc->mastering)
5288         return AVERROR(ENOMEM);
5289
5290     for (i = 0; i < 3; i++)
5291         for (j = 0; j < 2; j++)
5292             sc->mastering->display_primaries[i][j] =
5293                 av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5294     for (i = 0; i < 2; i++)
5295         sc->mastering->white_point[i] =
5296             av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5297     sc->mastering->max_luminance =
5298         av_make_q(lrint(((double)avio_rb32(pb) / (1 <<  8)) * luma_den), luma_den);
5299     sc->mastering->min_luminance =
5300         av_make_q(lrint(((double)avio_rb32(pb) / (1 << 14)) * luma_den), luma_den);
5301
5302     sc->mastering->has_primaries = 1;
5303     sc->mastering->has_luminance = 1;
5304
5305     return 0;
5306 }
5307
5308 static int mov_read_mdcv(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5309 {
5310     MOVStreamContext *sc;
5311     const int mapping[3] = {1, 2, 0};
5312     const int chroma_den = 50000;
5313     const int luma_den = 10000;
5314     int i;
5315
5316     if (c->fc->nb_streams < 1)
5317         return AVERROR_INVALIDDATA;
5318
5319     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5320
5321     if (atom.size < 24) {
5322         av_log(c->fc, AV_LOG_ERROR, "Invalid Mastering Display Color Volume box\n");
5323         return AVERROR_INVALIDDATA;
5324     }
5325
5326     sc->mastering = av_mastering_display_metadata_alloc();
5327     if (!sc->mastering)
5328         return AVERROR(ENOMEM);
5329
5330     for (i = 0; i < 3; i++) {
5331         const int j = mapping[i];
5332         sc->mastering->display_primaries[j][0] = av_make_q(avio_rb16(pb), chroma_den);
5333         sc->mastering->display_primaries[j][1] = av_make_q(avio_rb16(pb), chroma_den);
5334     }
5335     sc->mastering->white_point[0] = av_make_q(avio_rb16(pb), chroma_den);
5336     sc->mastering->white_point[1] = av_make_q(avio_rb16(pb), chroma_den);
5337
5338     sc->mastering->max_luminance = av_make_q(avio_rb32(pb), luma_den);
5339     sc->mastering->min_luminance = av_make_q(avio_rb32(pb), luma_den);
5340
5341     sc->mastering->has_luminance = 1;
5342     sc->mastering->has_primaries = 1;
5343
5344     return 0;
5345 }
5346
5347 static int mov_read_coll(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5348 {
5349     MOVStreamContext *sc;
5350     int version;
5351
5352     if (c->fc->nb_streams < 1)
5353         return AVERROR_INVALIDDATA;
5354
5355     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5356
5357     if (atom.size < 5) {
5358         av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level box\n");
5359         return AVERROR_INVALIDDATA;
5360     }
5361
5362     version = avio_r8(pb);
5363     if (version) {
5364         av_log(c->fc, AV_LOG_WARNING, "Unsupported Content Light Level box version %d\n", version);
5365         return 0;
5366     }
5367     avio_skip(pb, 3); /* flags */
5368
5369     sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5370     if (!sc->coll)
5371         return AVERROR(ENOMEM);
5372
5373     sc->coll->MaxCLL  = avio_rb16(pb);
5374     sc->coll->MaxFALL = avio_rb16(pb);
5375
5376     return 0;
5377 }
5378
5379 static int mov_read_clli(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5380 {
5381     MOVStreamContext *sc;
5382
5383     if (c->fc->nb_streams < 1)
5384         return AVERROR_INVALIDDATA;
5385
5386     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5387
5388     if (atom.size < 4) {
5389         av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level Info box\n");
5390         return AVERROR_INVALIDDATA;
5391     }
5392
5393     sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5394     if (!sc->coll)
5395         return AVERROR(ENOMEM);
5396
5397     sc->coll->MaxCLL  = avio_rb16(pb);
5398     sc->coll->MaxFALL = avio_rb16(pb);
5399
5400     return 0;
5401 }
5402
5403 static int mov_read_st3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5404 {
5405     AVStream *st;
5406     MOVStreamContext *sc;
5407     enum AVStereo3DType type;
5408     int mode;
5409
5410     if (c->fc->nb_streams < 1)
5411         return 0;
5412
5413     st = c->fc->streams[c->fc->nb_streams - 1];
5414     sc = st->priv_data;
5415
5416     if (atom.size < 5) {
5417         av_log(c->fc, AV_LOG_ERROR, "Empty stereoscopic video box\n");
5418         return AVERROR_INVALIDDATA;
5419     }
5420     avio_skip(pb, 4); /* version + flags */
5421
5422     mode = avio_r8(pb);
5423     switch (mode) {
5424     case 0:
5425         type = AV_STEREO3D_2D;
5426         break;
5427     case 1:
5428         type = AV_STEREO3D_TOPBOTTOM;
5429         break;
5430     case 2:
5431         type = AV_STEREO3D_SIDEBYSIDE;
5432         break;
5433     default:
5434         av_log(c->fc, AV_LOG_WARNING, "Unknown st3d mode value %d\n", mode);
5435         return 0;
5436     }
5437
5438     sc->stereo3d = av_stereo3d_alloc();
5439     if (!sc->stereo3d)
5440         return AVERROR(ENOMEM);
5441
5442     sc->stereo3d->type = type;
5443     return 0;
5444 }
5445
5446 static int mov_read_sv3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5447 {
5448     AVStream *st;
5449     MOVStreamContext *sc;
5450     int size, version, layout;
5451     int32_t yaw, pitch, roll;
5452     uint32_t l = 0, t = 0, r = 0, b = 0;
5453     uint32_t tag, padding = 0;
5454     enum AVSphericalProjection projection;
5455
5456     if (c->fc->nb_streams < 1)
5457         return 0;
5458
5459     st = c->fc->streams[c->fc->nb_streams - 1];
5460     sc = st->priv_data;
5461
5462     if (atom.size < 8) {
5463         av_log(c->fc, AV_LOG_ERROR, "Empty spherical video box\n");
5464         return AVERROR_INVALIDDATA;
5465     }
5466
5467     size = avio_rb32(pb);
5468     if (size <= 12 || size > atom.size)
5469         return AVERROR_INVALIDDATA;
5470
5471     tag = avio_rl32(pb);
5472     if (tag != MKTAG('s','v','h','d')) {
5473         av_log(c->fc, AV_LOG_ERROR, "Missing spherical video header\n");
5474         return 0;
5475     }
5476     version = avio_r8(pb);
5477     if (version != 0) {
5478         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5479                version);
5480         return 0;
5481     }
5482     avio_skip(pb, 3); /* flags */
5483     avio_skip(pb, size - 12); /* metadata_source */
5484
5485     size = avio_rb32(pb);
5486     if (size > atom.size)
5487         return AVERROR_INVALIDDATA;
5488
5489     tag = avio_rl32(pb);
5490     if (tag != MKTAG('p','r','o','j')) {
5491         av_log(c->fc, AV_LOG_ERROR, "Missing projection box\n");
5492         return 0;
5493     }
5494
5495     size = avio_rb32(pb);
5496     if (size > atom.size)
5497         return AVERROR_INVALIDDATA;
5498
5499     tag = avio_rl32(pb);
5500     if (tag != MKTAG('p','r','h','d')) {
5501         av_log(c->fc, AV_LOG_ERROR, "Missing projection header box\n");
5502         return 0;
5503     }
5504     version = avio_r8(pb);
5505     if (version != 0) {
5506         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5507                version);
5508         return 0;
5509     }
5510     avio_skip(pb, 3); /* flags */
5511
5512     /* 16.16 fixed point */
5513     yaw   = avio_rb32(pb);
5514     pitch = avio_rb32(pb);
5515     roll  = avio_rb32(pb);
5516
5517     size = avio_rb32(pb);
5518     if (size > atom.size)
5519         return AVERROR_INVALIDDATA;
5520
5521     tag = avio_rl32(pb);
5522     version = avio_r8(pb);
5523     if (version != 0) {
5524         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5525                version);
5526         return 0;
5527     }
5528     avio_skip(pb, 3); /* flags */
5529     switch (tag) {
5530     case MKTAG('c','b','m','p'):
5531         layout = avio_rb32(pb);
5532         if (layout) {
5533             av_log(c->fc, AV_LOG_WARNING,
5534                    "Unsupported cubemap layout %d\n", layout);
5535             return 0;
5536         }
5537         projection = AV_SPHERICAL_CUBEMAP;
5538         padding = avio_rb32(pb);
5539         break;
5540     case MKTAG('e','q','u','i'):
5541         t = avio_rb32(pb);
5542         b = avio_rb32(pb);
5543         l = avio_rb32(pb);
5544         r = avio_rb32(pb);
5545
5546         if (b >= UINT_MAX - t || r >= UINT_MAX - l) {
5547             av_log(c->fc, AV_LOG_ERROR,
5548                    "Invalid bounding rectangle coordinates "
5549                    "%"PRIu32",%"PRIu32",%"PRIu32",%"PRIu32"\n", l, t, r, b);
5550             return AVERROR_INVALIDDATA;
5551         }
5552
5553         if (l || t || r || b)
5554             projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE;
5555         else
5556             projection = AV_SPHERICAL_EQUIRECTANGULAR;
5557         break;
5558     default:
5559         av_log(c->fc, AV_LOG_ERROR, "Unknown projection type: %s\n", av_fourcc2str(tag));
5560         return 0;
5561     }
5562
5563     sc->spherical = av_spherical_alloc(&sc->spherical_size);
5564     if (!sc->spherical)
5565         return AVERROR(ENOMEM);
5566
5567     sc->spherical->projection = projection;
5568
5569     sc->spherical->yaw   = yaw;
5570     sc->spherical->pitch = pitch;
5571     sc->spherical->roll  = roll;
5572
5573     sc->spherical->padding = padding;
5574
5575     sc->spherical->bound_left   = l;
5576     sc->spherical->bound_top    = t;
5577     sc->spherical->bound_right  = r;
5578     sc->spherical->bound_bottom = b;
5579
5580     return 0;
5581 }
5582
5583 static int mov_parse_uuid_spherical(MOVStreamContext *sc, AVIOContext *pb, size_t len)
5584 {
5585     int ret = 0;
5586     uint8_t *buffer = av_malloc(len + 1);
5587     const char *val;
5588
5589     if (!buffer)
5590         return AVERROR(ENOMEM);
5591     buffer[len] = '\0';
5592
5593     ret = ffio_read_size(pb, buffer, len);
5594     if (ret < 0)
5595         goto out;
5596
5597     /* Check for mandatory keys and values, try to support XML as best-effort */
5598     if (!sc->spherical &&
5599         av_stristr(buffer, "<GSpherical:StitchingSoftware>") &&
5600         (val = av_stristr(buffer, "<GSpherical:Spherical>")) &&
5601         av_stristr(val, "true") &&
5602         (val = av_stristr(buffer, "<GSpherical:Stitched>")) &&
5603         av_stristr(val, "true") &&
5604         (val = av_stristr(buffer, "<GSpherical:ProjectionType>")) &&
5605         av_stristr(val, "equirectangular")) {
5606         sc->spherical = av_spherical_alloc(&sc->spherical_size);
5607         if (!sc->spherical)
5608             goto out;
5609
5610         sc->spherical->projection = AV_SPHERICAL_EQUIRECTANGULAR;
5611
5612         if (av_stristr(buffer, "<GSpherical:StereoMode>") && !sc->stereo3d) {
5613             enum AVStereo3DType mode;
5614
5615             if (av_stristr(buffer, "left-right"))
5616                 mode = AV_STEREO3D_SIDEBYSIDE;
5617             else if (av_stristr(buffer, "top-bottom"))
5618                 mode = AV_STEREO3D_TOPBOTTOM;
5619             else
5620                 mode = AV_STEREO3D_2D;
5621
5622             sc->stereo3d = av_stereo3d_alloc();
5623             if (!sc->stereo3d)
5624                 goto out;
5625
5626             sc->stereo3d->type = mode;
5627         }
5628
5629         /* orientation */
5630         val = av_stristr(buffer, "<GSpherical:InitialViewHeadingDegrees>");
5631         if (val)
5632             sc->spherical->yaw = strtol(val, NULL, 10) * (1 << 16);
5633         val = av_stristr(buffer, "<GSpherical:InitialViewPitchDegrees>");
5634         if (val)
5635             sc->spherical->pitch = strtol(val, NULL, 10) * (1 << 16);
5636         val = av_stristr(buffer, "<GSpherical:InitialViewRollDegrees>");
5637         if (val)
5638             sc->spherical->roll = strtol(val, NULL, 10) * (1 << 16);
5639     }
5640
5641 out:
5642     av_free(buffer);
5643     return ret;
5644 }
5645
5646 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5647 {
5648     AVStream *st;
5649     MOVStreamContext *sc;
5650     int64_t ret;
5651     uint8_t uuid[16];
5652     static const uint8_t uuid_isml_manifest[] = {
5653         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
5654         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
5655     };
5656     static const uint8_t uuid_xmp[] = {
5657         0xbe, 0x7a, 0xcf, 0xcb, 0x97, 0xa9, 0x42, 0xe8,
5658         0x9c, 0x71, 0x99, 0x94, 0x91, 0xe3, 0xaf, 0xac
5659     };
5660     static const uint8_t uuid_spherical[] = {
5661         0xff, 0xcc, 0x82, 0x63, 0xf8, 0x55, 0x4a, 0x93,
5662         0x88, 0x14, 0x58, 0x7a, 0x02, 0x52, 0x1f, 0xdd,
5663     };
5664
5665     if (atom.size < sizeof(uuid) || atom.size >= FFMIN(INT_MAX, SIZE_MAX))
5666         return AVERROR_INVALIDDATA;
5667
5668     if (c->fc->nb_streams < 1)
5669         return 0;
5670     st = c->fc->streams[c->fc->nb_streams - 1];
5671     sc = st->priv_data;
5672
5673     ret = avio_read(pb, uuid, sizeof(uuid));
5674     if (ret < 0) {
5675         return ret;
5676     } else if (ret != sizeof(uuid)) {
5677         return AVERROR_INVALIDDATA;
5678     }
5679     if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
5680         uint8_t *buffer, *ptr;
5681         char *endptr;
5682         size_t len = atom.size - sizeof(uuid);
5683
5684         if (len < 4) {
5685             return AVERROR_INVALIDDATA;
5686         }
5687         ret = avio_skip(pb, 4); // zeroes
5688         len -= 4;
5689
5690         buffer = av_mallocz(len + 1);
5691         if (!buffer) {
5692             return AVERROR(ENOMEM);
5693         }
5694         ret = avio_read(pb, buffer, len);
5695         if (ret < 0) {
5696             av_free(buffer);
5697             return ret;
5698         } else if (ret != len) {
5699             av_free(buffer);
5700             return AVERROR_INVALIDDATA;
5701         }
5702
5703         ptr = buffer;
5704         while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
5705             ptr += sizeof("systemBitrate=\"") - 1;
5706             c->bitrates_count++;
5707             c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
5708             if (!c->bitrates) {
5709                 c->bitrates_count = 0;
5710                 av_free(buffer);
5711                 return AVERROR(ENOMEM);
5712             }
5713             errno = 0;
5714             ret = strtol(ptr, &endptr, 10);
5715             if (ret < 0 || errno || *endptr != '"') {
5716                 c->bitrates[c->bitrates_count - 1] = 0;
5717             } else {
5718                 c->bitrates[c->bitrates_count - 1] = ret;
5719             }
5720         }
5721
5722         av_free(buffer);
5723     } else if (!memcmp(uuid, uuid_xmp, sizeof(uuid))) {
5724         uint8_t *buffer;
5725         size_t len = atom.size - sizeof(uuid);
5726         if (c->export_xmp) {
5727             buffer = av_mallocz(len + 1);
5728             if (!buffer) {
5729                 return AVERROR(ENOMEM);
5730             }
5731             ret = avio_read(pb, buffer, len);
5732             if (ret < 0) {
5733                 av_free(buffer);
5734                 return ret;
5735             } else if (ret != len) {
5736                 av_free(buffer);
5737                 return AVERROR_INVALIDDATA;
5738             }
5739             buffer[len] = '\0';
5740             av_dict_set(&c->fc->metadata, "xmp", buffer, 0);
5741             av_free(buffer);
5742         } else {
5743             // skip all uuid atom, which makes it fast for long uuid-xmp file
5744             ret = avio_skip(pb, len);
5745             if (ret < 0)
5746                 return ret;
5747         }
5748     } else if (!memcmp(uuid, uuid_spherical, sizeof(uuid))) {
5749         size_t len = atom.size - sizeof(uuid);
5750         ret = mov_parse_uuid_spherical(sc, pb, len);
5751         if (ret < 0)
5752             return ret;
5753         if (!sc->spherical)
5754             av_log(c->fc, AV_LOG_WARNING, "Invalid spherical metadata found\n");
5755     }
5756
5757     return 0;
5758 }
5759
5760 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5761 {
5762     int ret;
5763     uint8_t content[16];
5764
5765     if (atom.size < 8)
5766         return 0;
5767
5768     ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
5769     if (ret < 0)
5770         return ret;
5771
5772     if (   !c->found_moov
5773         && !c->found_mdat
5774         && !memcmp(content, "Anevia\x1A\x1A", 8)
5775         && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
5776         c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
5777     }
5778
5779     return 0;
5780 }
5781
5782 static int mov_read_frma(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5783 {
5784     uint32_t format = avio_rl32(pb);
5785     MOVStreamContext *sc;
5786     enum AVCodecID id;
5787     AVStream *st;
5788
5789     if (c->fc->nb_streams < 1)
5790         return 0;
5791     st = c->fc->streams[c->fc->nb_streams - 1];
5792     sc = st->priv_data;
5793
5794     switch (sc->format)
5795     {
5796     case MKTAG('e','n','c','v'):        // encrypted video
5797     case MKTAG('e','n','c','a'):        // encrypted audio
5798         id = mov_codec_id(st, format);
5799         if (st->codecpar->codec_id != AV_CODEC_ID_NONE &&
5800             st->codecpar->codec_id != id) {
5801             av_log(c->fc, AV_LOG_WARNING,
5802                    "ignoring 'frma' atom of '%.4s', stream has codec id %d\n",
5803                    (char*)&format, st->codecpar->codec_id);
5804             break;
5805         }
5806
5807         st->codecpar->codec_id = id;
5808         sc->format = format;
5809         break;
5810
5811     default:
5812         if (format != sc->format) {
5813             av_log(c->fc, AV_LOG_WARNING,
5814                    "ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
5815                    (char*)&format, (char*)&sc->format);
5816         }
5817         break;
5818     }
5819
5820     return 0;
5821 }
5822
5823 /**
5824  * Gets the current encryption info and associated current stream context.  If
5825  * we are parsing a track fragment, this will return the specific encryption
5826  * info for this fragment; otherwise this will return the global encryption
5827  * info for the current stream.
5828  */
5829 static int get_current_encryption_info(MOVContext *c, MOVEncryptionIndex **encryption_index, MOVStreamContext **sc)
5830 {
5831     MOVFragmentStreamInfo *frag_stream_info;
5832     AVStream *st;
5833     int i;
5834
5835     frag_stream_info = get_current_frag_stream_info(&c->frag_index);
5836     if (frag_stream_info) {
5837         for (i = 0; i < c->fc->nb_streams; i++) {
5838             if (c->fc->streams[i]->id == frag_stream_info->id) {
5839               st = c->fc->streams[i];
5840               break;
5841             }
5842         }
5843         if (i == c->fc->nb_streams)
5844             return 0;
5845         *sc = st->priv_data;
5846
5847         if (!frag_stream_info->encryption_index) {
5848             // If this stream isn't encrypted, don't create the index.
5849             if (!(*sc)->cenc.default_encrypted_sample)
5850                 return 0;
5851             frag_stream_info->encryption_index = av_mallocz(sizeof(*frag_stream_info->encryption_index));
5852             if (!frag_stream_info->encryption_index)
5853                 return AVERROR(ENOMEM);
5854         }
5855         *encryption_index = frag_stream_info->encryption_index;
5856         return 1;
5857     } else {
5858         // No current track fragment, using stream level encryption info.
5859
5860         if (c->fc->nb_streams < 1)
5861             return 0;
5862         st = c->fc->streams[c->fc->nb_streams - 1];
5863         *sc = st->priv_data;
5864
5865         if (!(*sc)->cenc.encryption_index) {
5866             // If this stream isn't encrypted, don't create the index.
5867             if (!(*sc)->cenc.default_encrypted_sample)
5868                 return 0;
5869             (*sc)->cenc.encryption_index = av_mallocz(sizeof(*frag_stream_info->encryption_index));
5870             if (!(*sc)->cenc.encryption_index)
5871                 return AVERROR(ENOMEM);
5872         }
5873
5874         *encryption_index = (*sc)->cenc.encryption_index;
5875         return 1;
5876     }
5877 }
5878
5879 static int mov_read_sample_encryption_info(MOVContext *c, AVIOContext *pb, MOVStreamContext *sc, AVEncryptionInfo **sample, int use_subsamples)
5880 {
5881     int i;
5882     unsigned int subsample_count;
5883     AVSubsampleEncryptionInfo *subsamples;
5884
5885     if (!sc->cenc.default_encrypted_sample) {
5886         av_log(c->fc, AV_LOG_ERROR, "Missing schm or tenc\n");
5887         return AVERROR_INVALIDDATA;
5888     }
5889
5890     *sample = av_encryption_info_clone(sc->cenc.default_encrypted_sample);
5891     if (!*sample)
5892         return AVERROR(ENOMEM);
5893
5894     if (sc->cenc.per_sample_iv_size != 0) {
5895         if (avio_read(pb, (*sample)->iv, sc->cenc.per_sample_iv_size) != sc->cenc.per_sample_iv_size) {
5896             av_log(c->fc, AV_LOG_ERROR, "failed to read the initialization vector\n");
5897             av_encryption_info_free(*sample);
5898             *sample = NULL;
5899             return AVERROR_INVALIDDATA;
5900         }
5901     }
5902
5903     if (use_subsamples) {
5904         subsample_count = avio_rb16(pb);
5905         av_free((*sample)->subsamples);
5906         (*sample)->subsamples = av_mallocz_array(subsample_count, sizeof(*subsamples));
5907         if (!(*sample)->subsamples) {
5908             av_encryption_info_free(*sample);
5909             *sample = NULL;
5910             return AVERROR(ENOMEM);
5911         }
5912
5913         for (i = 0; i < subsample_count && !pb->eof_reached; i++) {
5914             (*sample)->subsamples[i].bytes_of_clear_data = avio_rb16(pb);
5915             (*sample)->subsamples[i].bytes_of_protected_data = avio_rb32(pb);
5916         }
5917
5918         if (pb->eof_reached) {
5919             av_log(c->fc, AV_LOG_ERROR, "hit EOF while reading sub-sample encryption info\n");
5920             av_encryption_info_free(*sample);
5921             *sample = NULL;
5922             return AVERROR_INVALIDDATA;
5923         }
5924         (*sample)->subsample_count = subsample_count;
5925     }
5926
5927     return 0;
5928 }
5929
5930 static int mov_read_senc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5931 {
5932     AVEncryptionInfo **encrypted_samples;
5933     MOVEncryptionIndex *encryption_index;
5934     MOVStreamContext *sc;
5935     int use_subsamples, ret;
5936     unsigned int sample_count, i, alloc_size = 0;
5937
5938     ret = get_current_encryption_info(c, &encryption_index, &sc);
5939     if (ret != 1)
5940         return ret;
5941
5942     if (encryption_index->nb_encrypted_samples) {
5943         // This can happen if we have both saio/saiz and senc atoms.
5944         av_log(c->fc, AV_LOG_DEBUG, "Ignoring duplicate encryption info in senc\n");
5945         return 0;
5946     }
5947
5948     avio_r8(pb); /* version */
5949     use_subsamples = avio_rb24(pb) & 0x02; /* flags */
5950
5951     sample_count = avio_rb32(pb);
5952     if (sample_count >= INT_MAX / sizeof(*encrypted_samples))
5953         return AVERROR(ENOMEM);
5954
5955     for (i = 0; i < sample_count; i++) {
5956         unsigned int min_samples = FFMIN(FFMAX(i + 1, 1024 * 1024), sample_count);
5957         encrypted_samples = av_fast_realloc(encryption_index->encrypted_samples, &alloc_size,
5958                                             min_samples * sizeof(*encrypted_samples));
5959         if (encrypted_samples) {
5960             encryption_index->encrypted_samples = encrypted_samples;
5961
5962             ret = mov_read_sample_encryption_info(
5963                 c, pb, sc, &encryption_index->encrypted_samples[i], use_subsamples);
5964         } else {
5965             ret = AVERROR(ENOMEM);
5966         }
5967         if (pb->eof_reached) {
5968             av_log(c->fc, AV_LOG_ERROR, "Hit EOF while reading senc\n");
5969             ret = AVERROR_INVALIDDATA;
5970         }
5971
5972         if (ret < 0) {
5973             for (; i > 0; i--)
5974                 av_encryption_info_free(encryption_index->encrypted_samples[i - 1]);
5975             av_freep(&encryption_index->encrypted_samples);
5976             return ret;
5977         }
5978     }
5979     encryption_index->nb_encrypted_samples = sample_count;
5980
5981     return 0;
5982 }
5983
5984 static int mov_parse_auxiliary_info(MOVContext *c, MOVStreamContext *sc, AVIOContext *pb, MOVEncryptionIndex *encryption_index)
5985 {
5986     AVEncryptionInfo **sample, **encrypted_samples;
5987     int64_t prev_pos;
5988     size_t sample_count, sample_info_size, i;
5989     int ret = 0;
5990     unsigned int alloc_size = 0;
5991
5992     if (encryption_index->nb_encrypted_samples)
5993         return 0;
5994     sample_count = encryption_index->auxiliary_info_sample_count;
5995     if (encryption_index->auxiliary_offsets_count != 1) {
5996         av_log(c->fc, AV_LOG_ERROR, "Multiple auxiliary info chunks are not supported\n");
5997         return AVERROR_PATCHWELCOME;
5998     }
5999     if (sample_count >= INT_MAX / sizeof(*encrypted_samples))
6000         return AVERROR(ENOMEM);
6001
6002     prev_pos = avio_tell(pb);
6003     if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) ||
6004         avio_seek(pb, encryption_index->auxiliary_offsets[0], SEEK_SET) != encryption_index->auxiliary_offsets[0]) {
6005         av_log(c->fc, AV_LOG_INFO, "Failed to seek for auxiliary info, will only parse senc atoms for encryption info\n");
6006         goto finish;
6007     }
6008
6009     for (i = 0; i < sample_count && !pb->eof_reached; i++) {
6010         unsigned int min_samples = FFMIN(FFMAX(i + 1, 1024 * 1024), sample_count);
6011         encrypted_samples = av_fast_realloc(encryption_index->encrypted_samples, &alloc_size,
6012                                             min_samples * sizeof(*encrypted_samples));
6013         if (!encrypted_samples) {
6014             ret = AVERROR(ENOMEM);
6015             goto finish;
6016         }
6017         encryption_index->encrypted_samples = encrypted_samples;
6018
6019         sample = &encryption_index->encrypted_samples[i];
6020         sample_info_size = encryption_index->auxiliary_info_default_size
6021                                ? encryption_index->auxiliary_info_default_size
6022                                : encryption_index->auxiliary_info_sizes[i];
6023
6024         ret = mov_read_sample_encryption_info(c, pb, sc, sample, sample_info_size > sc->cenc.per_sample_iv_size);
6025         if (ret < 0)
6026             goto finish;
6027     }
6028     if (pb->eof_reached) {
6029         av_log(c->fc, AV_LOG_ERROR, "Hit EOF while reading auxiliary info\n");
6030         ret = AVERROR_INVALIDDATA;
6031     } else {
6032         encryption_index->nb_encrypted_samples = sample_count;
6033     }
6034
6035 finish:
6036     avio_seek(pb, prev_pos, SEEK_SET);
6037     if (ret < 0) {
6038         for (; i > 0; i--) {
6039             av_encryption_info_free(encryption_index->encrypted_samples[i - 1]);
6040         }
6041         av_freep(&encryption_index->encrypted_samples);
6042     }
6043     return ret;
6044 }
6045
6046 /**
6047  * Tries to read the given number of bytes from the stream and puts it in a
6048  * newly allocated buffer.  This reads in small chunks to avoid allocating large
6049  * memory if the file contains an invalid/malicious size value.
6050  */
6051 static int mov_try_read_block(AVIOContext *pb, size_t size, uint8_t **data)
6052 {
6053     const unsigned int block_size = 1024 * 1024;
6054     uint8_t *buffer = NULL;
6055     unsigned int alloc_size = 0, offset = 0;
6056     while (offset < size) {
6057         unsigned int new_size =
6058             alloc_size >= INT_MAX - block_size ? INT_MAX : alloc_size + block_size;
6059         uint8_t *new_buffer = av_fast_realloc(buffer, &alloc_size, new_size);
6060         unsigned int to_read = FFMIN(size, alloc_size) - offset;
6061         if (!new_buffer) {
6062             av_free(buffer);
6063             return AVERROR(ENOMEM);
6064         }
6065         buffer = new_buffer;
6066
6067         if (avio_read(pb, buffer + offset, to_read) != to_read) {
6068             av_free(buffer);
6069             return AVERROR_INVALIDDATA;
6070         }
6071         offset += to_read;
6072     }
6073
6074     *data = buffer;
6075     return 0;
6076 }
6077
6078 static int mov_read_saiz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6079 {
6080     MOVEncryptionIndex *encryption_index;
6081     MOVStreamContext *sc;
6082     int ret;
6083     unsigned int sample_count, aux_info_type, aux_info_param;
6084
6085     ret = get_current_encryption_info(c, &encryption_index, &sc);
6086     if (ret != 1)
6087         return ret;
6088
6089     if (encryption_index->nb_encrypted_samples) {
6090         // This can happen if we have both saio/saiz and senc atoms.
6091         av_log(c->fc, AV_LOG_DEBUG, "Ignoring duplicate encryption info in saiz\n");
6092         return 0;
6093     }
6094
6095     if (encryption_index->auxiliary_info_sample_count) {
6096         av_log(c->fc, AV_LOG_ERROR, "Duplicate saiz atom\n");
6097         return AVERROR_INVALIDDATA;
6098     }
6099
6100     avio_r8(pb); /* version */
6101     if (avio_rb24(pb) & 0x01) {  /* flags */
6102         aux_info_type = avio_rb32(pb);
6103         aux_info_param = avio_rb32(pb);
6104         if (sc->cenc.default_encrypted_sample) {
6105             if (aux_info_type != sc->cenc.default_encrypted_sample->scheme) {
6106                 av_log(c->fc, AV_LOG_DEBUG, "Ignoring saiz box with non-zero aux_info_type\n");
6107                 return 0;
6108             }
6109             if (aux_info_param != 0) {
6110                 av_log(c->fc, AV_LOG_DEBUG, "Ignoring saiz box with non-zero aux_info_type_parameter\n");
6111                 return 0;
6112             }
6113         } else {
6114             // Didn't see 'schm' or 'tenc', so this isn't encrypted.
6115             if ((aux_info_type == MKBETAG('c','e','n','c') ||
6116                  aux_info_type == MKBETAG('c','e','n','s') ||
6117                  aux_info_type == MKBETAG('c','b','c','1') ||
6118                  aux_info_type == MKBETAG('c','b','c','s')) &&
6119                 aux_info_param == 0) {
6120                 av_log(c->fc, AV_LOG_ERROR, "Saw encrypted saiz without schm/tenc\n");
6121                 return AVERROR_INVALIDDATA;
6122             } else {
6123                 return 0;
6124             }
6125         }
6126     } else if (!sc->cenc.default_encrypted_sample) {
6127         // Didn't see 'schm' or 'tenc', so this isn't encrypted.
6128         return 0;
6129     }
6130
6131     encryption_index->auxiliary_info_default_size = avio_r8(pb);
6132     sample_count = avio_rb32(pb);
6133     encryption_index->auxiliary_info_sample_count = sample_count;
6134
6135     if (encryption_index->auxiliary_info_default_size == 0) {
6136         ret = mov_try_read_block(pb, sample_count, &encryption_index->auxiliary_info_sizes);
6137         if (ret < 0) {
6138             av_log(c->fc, AV_LOG_ERROR, "Failed to read the auxiliary info\n");
6139             return ret;
6140         }
6141     }
6142
6143     if (encryption_index->auxiliary_offsets_count) {
6144         return mov_parse_auxiliary_info(c, sc, pb, encryption_index);
6145     }
6146
6147     return 0;
6148 }
6149
6150 static int mov_read_saio(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6151 {
6152     uint64_t *auxiliary_offsets;
6153     MOVEncryptionIndex *encryption_index;
6154     MOVStreamContext *sc;
6155     int i, ret;
6156     unsigned int version, entry_count, aux_info_type, aux_info_param;
6157     unsigned int alloc_size = 0;
6158
6159     ret = get_current_encryption_info(c, &encryption_index, &sc);
6160     if (ret != 1)
6161         return ret;
6162
6163     if (encryption_index->nb_encrypted_samples) {
6164         // This can happen if we have both saio/saiz and senc atoms.
6165         av_log(c->fc, AV_LOG_DEBUG, "Ignoring duplicate encryption info in saio\n");
6166         return 0;
6167     }
6168
6169     if (encryption_index->auxiliary_offsets_count) {
6170         av_log(c->fc, AV_LOG_ERROR, "Duplicate saio atom\n");
6171         return AVERROR_INVALIDDATA;
6172     }
6173
6174     version = avio_r8(pb); /* version */
6175     if (avio_rb24(pb) & 0x01) {  /* flags */
6176         aux_info_type = avio_rb32(pb);
6177         aux_info_param = avio_rb32(pb);
6178         if (sc->cenc.default_encrypted_sample) {
6179             if (aux_info_type != sc->cenc.default_encrypted_sample->scheme) {
6180                 av_log(c->fc, AV_LOG_DEBUG, "Ignoring saio box with non-zero aux_info_type\n");
6181                 return 0;
6182             }
6183             if (aux_info_param != 0) {
6184                 av_log(c->fc, AV_LOG_DEBUG, "Ignoring saio box with non-zero aux_info_type_parameter\n");
6185                 return 0;
6186             }
6187         } else {
6188             // Didn't see 'schm' or 'tenc', so this isn't encrypted.
6189             if ((aux_info_type == MKBETAG('c','e','n','c') ||
6190                  aux_info_type == MKBETAG('c','e','n','s') ||
6191                  aux_info_type == MKBETAG('c','b','c','1') ||
6192                  aux_info_type == MKBETAG('c','b','c','s')) &&
6193                 aux_info_param == 0) {
6194                 av_log(c->fc, AV_LOG_ERROR, "Saw encrypted saio without schm/tenc\n");
6195                 return AVERROR_INVALIDDATA;
6196             } else {
6197                 return 0;
6198             }
6199         }
6200     } else if (!sc->cenc.default_encrypted_sample) {
6201         // Didn't see 'schm' or 'tenc', so this isn't encrypted.
6202         return 0;
6203     }
6204
6205     entry_count = avio_rb32(pb);
6206     if (entry_count >= INT_MAX / sizeof(*auxiliary_offsets))
6207         return AVERROR(ENOMEM);
6208
6209     for (i = 0; i < entry_count && !pb->eof_reached; i++) {
6210         unsigned int min_offsets = FFMIN(FFMAX(i + 1, 1024), entry_count);
6211         auxiliary_offsets = av_fast_realloc(
6212             encryption_index->auxiliary_offsets, &alloc_size,
6213             min_offsets * sizeof(*auxiliary_offsets));
6214         if (!auxiliary_offsets) {
6215             av_freep(&encryption_index->auxiliary_offsets);
6216             return AVERROR(ENOMEM);
6217         }
6218         encryption_index->auxiliary_offsets = auxiliary_offsets;
6219
6220         if (version == 0) {
6221             encryption_index->auxiliary_offsets[i] = avio_rb32(pb);
6222         } else {
6223             encryption_index->auxiliary_offsets[i] = avio_rb64(pb);
6224         }
6225         if (c->frag_index.current >= 0) {
6226             encryption_index->auxiliary_offsets[i] += c->fragment.base_data_offset;
6227         }
6228     }
6229
6230     if (pb->eof_reached) {
6231         av_log(c->fc, AV_LOG_ERROR, "Hit EOF while reading saio\n");
6232         av_freep(&encryption_index->auxiliary_offsets);
6233         return AVERROR_INVALIDDATA;
6234     }
6235
6236     encryption_index->auxiliary_offsets_count = entry_count;
6237
6238     if (encryption_index->auxiliary_info_sample_count) {
6239         return mov_parse_auxiliary_info(c, sc, pb, encryption_index);
6240     }
6241
6242     return 0;
6243 }
6244
6245 static int mov_read_pssh(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6246 {
6247     AVEncryptionInitInfo *info, *old_init_info;
6248     uint8_t **key_ids;
6249     AVStream *st;
6250     uint8_t *side_data, *extra_data, *old_side_data;
6251     size_t side_data_size;
6252     int ret = 0, old_side_data_size;
6253     unsigned int version, kid_count, extra_data_size, alloc_size = 0;
6254
6255     if (c->fc->nb_streams < 1)
6256         return 0;
6257     st = c->fc->streams[c->fc->nb_streams-1];
6258
6259     version = avio_r8(pb); /* version */
6260     avio_rb24(pb);  /* flags */
6261
6262     info = av_encryption_init_info_alloc(/* system_id_size */ 16, /* num_key_ids */ 0,
6263                                          /* key_id_size */ 16, /* data_size */ 0);
6264     if (!info)
6265         return AVERROR(ENOMEM);
6266
6267     if (avio_read(pb, info->system_id, 16) != 16) {
6268         av_log(c->fc, AV_LOG_ERROR, "Failed to read the system id\n");
6269         ret = AVERROR_INVALIDDATA;
6270         goto finish;
6271     }
6272
6273     if (version > 0) {
6274         kid_count = avio_rb32(pb);
6275         if (kid_count >= INT_MAX / sizeof(*key_ids))
6276             return AVERROR(ENOMEM);
6277
6278         for (unsigned int i = 0; i < kid_count && !pb->eof_reached; i++) {
6279             unsigned int min_kid_count = FFMIN(FFMAX(i + 1, 1024), kid_count);
6280             key_ids = av_fast_realloc(info->key_ids, &alloc_size,
6281                                       min_kid_count * sizeof(*key_ids));
6282             if (!key_ids) {
6283                 ret = AVERROR(ENOMEM);
6284                 goto finish;
6285             }
6286             info->key_ids = key_ids;
6287
6288             info->key_ids[i] = av_mallocz(16);
6289             if (!info->key_ids[i]) {
6290                 ret = AVERROR(ENOMEM);
6291                 goto finish;
6292             }
6293             info->num_key_ids = i + 1;
6294
6295             if (avio_read(pb, info->key_ids[i], 16) != 16) {
6296                 av_log(c->fc, AV_LOG_ERROR, "Failed to read the key id\n");
6297                 ret = AVERROR_INVALIDDATA;
6298                 goto finish;
6299             }
6300         }
6301
6302         if (pb->eof_reached) {
6303             av_log(c->fc, AV_LOG_ERROR, "Hit EOF while reading pssh\n");
6304             ret = AVERROR_INVALIDDATA;
6305             goto finish;
6306         }
6307     }
6308
6309     extra_data_size = avio_rb32(pb);
6310     ret = mov_try_read_block(pb, extra_data_size, &extra_data);
6311     if (ret < 0)
6312         goto finish;
6313
6314     av_freep(&info->data);  // malloc(0) may still allocate something.
6315     info->data = extra_data;
6316     info->data_size = extra_data_size;
6317
6318     // If there is existing initialization data, append to the list.
6319     old_side_data = av_stream_get_side_data(st, AV_PKT_DATA_ENCRYPTION_INIT_INFO, &old_side_data_size);
6320     if (old_side_data) {
6321         old_init_info = av_encryption_init_info_get_side_data(old_side_data, old_side_data_size);
6322         if (old_init_info) {
6323             // Append to the end of the list.
6324             for (AVEncryptionInitInfo *cur = old_init_info;; cur = cur->next) {
6325                 if (!cur->next) {
6326                     cur->next = info;
6327                     break;
6328                 }
6329             }
6330             info = old_init_info;
6331         } else {
6332             // Assume existing side-data will be valid, so the only error we could get is OOM.
6333             ret = AVERROR(ENOMEM);
6334             goto finish;
6335         }
6336     }
6337
6338     side_data = av_encryption_init_info_add_side_data(info, &side_data_size);
6339     if (!side_data) {
6340         ret = AVERROR(ENOMEM);
6341         goto finish;
6342     }
6343     ret = av_stream_add_side_data(st, AV_PKT_DATA_ENCRYPTION_INIT_INFO,
6344                                   side_data, side_data_size);
6345     if (ret < 0)
6346         av_free(side_data);
6347
6348 finish:
6349     av_encryption_init_info_free(info);
6350     return ret;
6351 }
6352
6353 static int mov_read_schm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6354 {
6355     AVStream *st;
6356     MOVStreamContext *sc;
6357
6358     if (c->fc->nb_streams < 1)
6359         return 0;
6360     st = c->fc->streams[c->fc->nb_streams-1];
6361     sc = st->priv_data;
6362
6363     if (sc->pseudo_stream_id != 0) {
6364         av_log(c->fc, AV_LOG_ERROR, "schm boxes are only supported in first sample descriptor\n");
6365         return AVERROR_PATCHWELCOME;
6366     }
6367
6368     if (atom.size < 8)
6369         return AVERROR_INVALIDDATA;
6370
6371     avio_rb32(pb); /* version and flags */
6372
6373     if (!sc->cenc.default_encrypted_sample) {
6374         sc->cenc.default_encrypted_sample = av_encryption_info_alloc(0, 16, 16);
6375         if (!sc->cenc.default_encrypted_sample) {
6376             return AVERROR(ENOMEM);
6377         }
6378     }
6379
6380     sc->cenc.default_encrypted_sample->scheme = avio_rb32(pb);
6381     return 0;
6382 }
6383
6384 static int mov_read_tenc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6385 {
6386     AVStream *st;
6387     MOVStreamContext *sc;
6388     unsigned int version, pattern, is_protected, iv_size;
6389
6390     if (c->fc->nb_streams < 1)
6391         return 0;
6392     st = c->fc->streams[c->fc->nb_streams-1];
6393     sc = st->priv_data;
6394
6395     if (sc->pseudo_stream_id != 0) {
6396         av_log(c->fc, AV_LOG_ERROR, "tenc atom are only supported in first sample descriptor\n");
6397         return AVERROR_PATCHWELCOME;
6398     }
6399
6400     if (!sc->cenc.default_encrypted_sample) {
6401         sc->cenc.default_encrypted_sample = av_encryption_info_alloc(0, 16, 16);
6402         if (!sc->cenc.default_encrypted_sample) {
6403             return AVERROR(ENOMEM);
6404         }
6405     }
6406
6407     if (atom.size < 20)
6408         return AVERROR_INVALIDDATA;
6409
6410     version = avio_r8(pb); /* version */
6411     avio_rb24(pb); /* flags */
6412
6413     avio_r8(pb); /* reserved */
6414     pattern = avio_r8(pb);
6415
6416     if (version > 0) {
6417         sc->cenc.default_encrypted_sample->crypt_byte_block = pattern >> 4;
6418         sc->cenc.default_encrypted_sample->skip_byte_block = pattern & 0xf;
6419     }
6420
6421     is_protected = avio_r8(pb);
6422     if (is_protected && !sc->cenc.encryption_index) {
6423         // The whole stream should be by-default encrypted.
6424         sc->cenc.encryption_index = av_mallocz(sizeof(MOVEncryptionIndex));
6425         if (!sc->cenc.encryption_index)
6426             return AVERROR(ENOMEM);
6427     }
6428     sc->cenc.per_sample_iv_size = avio_r8(pb);
6429     if (sc->cenc.per_sample_iv_size != 0 && sc->cenc.per_sample_iv_size != 8 &&
6430         sc->cenc.per_sample_iv_size != 16) {
6431         av_log(c->fc, AV_LOG_ERROR, "invalid per-sample IV size value\n");
6432         return AVERROR_INVALIDDATA;
6433     }
6434     if (avio_read(pb, sc->cenc.default_encrypted_sample->key_id, 16) != 16) {
6435         av_log(c->fc, AV_LOG_ERROR, "failed to read the default key ID\n");
6436         return AVERROR_INVALIDDATA;
6437     }
6438
6439     if (is_protected && !sc->cenc.per_sample_iv_size) {
6440         iv_size = avio_r8(pb);
6441         if (iv_size != 8 && iv_size != 16) {
6442             av_log(c->fc, AV_LOG_ERROR, "invalid default_constant_IV_size in tenc atom\n");
6443             return AVERROR_INVALIDDATA;
6444         }
6445
6446         if (avio_read(pb, sc->cenc.default_encrypted_sample->iv, iv_size) != iv_size) {
6447             av_log(c->fc, AV_LOG_ERROR, "failed to read the default IV\n");
6448             return AVERROR_INVALIDDATA;
6449         }
6450     }
6451
6452     return 0;
6453 }
6454
6455 static int mov_read_dfla(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6456 {
6457     AVStream *st;
6458     int last, type, size, ret;
6459     uint8_t buf[4];
6460
6461     if (c->fc->nb_streams < 1)
6462         return 0;
6463     st = c->fc->streams[c->fc->nb_streams-1];
6464
6465     if ((uint64_t)atom.size > (1<<30) || atom.size < 42)
6466         return AVERROR_INVALIDDATA;
6467
6468     /* Check FlacSpecificBox version. */
6469     if (avio_r8(pb) != 0)
6470         return AVERROR_INVALIDDATA;
6471
6472     avio_rb24(pb); /* Flags */
6473
6474     avio_read(pb, buf, sizeof(buf));
6475     flac_parse_block_header(buf, &last, &type, &size);
6476
6477     if (type != FLAC_METADATA_TYPE_STREAMINFO || size != FLAC_STREAMINFO_SIZE) {
6478         av_log(c->fc, AV_LOG_ERROR, "STREAMINFO must be first FLACMetadataBlock\n");
6479         return AVERROR_INVALIDDATA;
6480     }
6481
6482     ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
6483     if (ret < 0)
6484         return ret;
6485
6486     if (!last)
6487         av_log(c->fc, AV_LOG_WARNING, "non-STREAMINFO FLACMetadataBlock(s) ignored\n");
6488
6489     return 0;
6490 }
6491
6492 static int cenc_decrypt(MOVContext *c, MOVStreamContext *sc, AVEncryptionInfo *sample, uint8_t *input, int size)
6493 {
6494     int i, ret;
6495
6496     if (sample->scheme != MKBETAG('c','e','n','c') || sample->crypt_byte_block != 0 || sample->skip_byte_block != 0) {
6497         av_log(c->fc, AV_LOG_ERROR, "Only the 'cenc' encryption scheme is supported\n");
6498         return AVERROR_PATCHWELCOME;
6499     }
6500
6501     if (!sc->cenc.aes_ctr) {
6502         /* initialize the cipher */
6503         sc->cenc.aes_ctr = av_aes_ctr_alloc();
6504         if (!sc->cenc.aes_ctr) {
6505             return AVERROR(ENOMEM);
6506         }
6507
6508         ret = av_aes_ctr_init(sc->cenc.aes_ctr, c->decryption_key);
6509         if (ret < 0) {
6510             return ret;
6511         }
6512     }
6513
6514     av_aes_ctr_set_full_iv(sc->cenc.aes_ctr, sample->iv);
6515
6516     if (!sample->subsample_count)
6517     {
6518         /* decrypt the whole packet */
6519         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, size);
6520         return 0;
6521     }
6522
6523     for (i = 0; i < sample->subsample_count; i++)
6524     {
6525         if (sample->subsamples[i].bytes_of_clear_data + sample->subsamples[i].bytes_of_protected_data > size) {
6526             av_log(c->fc, AV_LOG_ERROR, "subsample size exceeds the packet size left\n");
6527             return AVERROR_INVALIDDATA;
6528         }
6529
6530         /* skip the clear bytes */
6531         input += sample->subsamples[i].bytes_of_clear_data;
6532         size -= sample->subsamples[i].bytes_of_clear_data;
6533
6534         /* decrypt the encrypted bytes */
6535         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, sample->subsamples[i].bytes_of_protected_data);
6536         input += sample->subsamples[i].bytes_of_protected_data;
6537         size -= sample->subsamples[i].bytes_of_protected_data;
6538     }
6539
6540     if (size > 0) {
6541         av_log(c->fc, AV_LOG_ERROR, "leftover packet bytes after subsample processing\n");
6542         return AVERROR_INVALIDDATA;
6543     }
6544
6545     return 0;
6546 }
6547
6548 static int cenc_filter(MOVContext *mov, MOVStreamContext *sc, AVPacket *pkt, int current_index)
6549 {
6550     MOVFragmentStreamInfo *frag_stream_info;
6551     MOVEncryptionIndex *encryption_index;
6552     AVEncryptionInfo *encrypted_sample;
6553     int encrypted_index, ret;
6554
6555     frag_stream_info = get_current_frag_stream_info(&mov->frag_index);
6556     encrypted_index = current_index;
6557     encryption_index = NULL;
6558     if (frag_stream_info) {
6559         // Note this only supports encryption info in the first sample descriptor.
6560         if (mov->fragment.stsd_id == 1) {
6561             if (frag_stream_info->encryption_index) {
6562                 encrypted_index = current_index - frag_stream_info->index_entry;
6563                 encryption_index = frag_stream_info->encryption_index;
6564             } else {
6565                 encryption_index = sc->cenc.encryption_index;
6566             }
6567         }
6568     } else {
6569         encryption_index = sc->cenc.encryption_index;
6570     }
6571
6572     if (encryption_index) {
6573         if (encryption_index->auxiliary_info_sample_count &&
6574             !encryption_index->nb_encrypted_samples) {
6575             av_log(mov->fc, AV_LOG_ERROR, "saiz atom found without saio\n");
6576             return AVERROR_INVALIDDATA;
6577         }
6578         if (encryption_index->auxiliary_offsets_count &&
6579             !encryption_index->nb_encrypted_samples) {
6580             av_log(mov->fc, AV_LOG_ERROR, "saio atom found without saiz\n");
6581             return AVERROR_INVALIDDATA;
6582         }
6583
6584         if (!encryption_index->nb_encrypted_samples) {
6585             // Full-sample encryption with default settings.
6586             encrypted_sample = sc->cenc.default_encrypted_sample;
6587         } else if (encrypted_index >= 0 && encrypted_index < encryption_index->nb_encrypted_samples) {
6588             // Per-sample setting override.
6589             encrypted_sample = encryption_index->encrypted_samples[encrypted_index];
6590         } else {
6591             av_log(mov->fc, AV_LOG_ERROR, "Incorrect number of samples in encryption info\n");
6592             return AVERROR_INVALIDDATA;
6593         }
6594
6595         if (mov->decryption_key) {
6596             return cenc_decrypt(mov, sc, encrypted_sample, pkt->data, pkt->size);
6597         } else {
6598             size_t size;
6599             uint8_t *side_data = av_encryption_info_add_side_data(encrypted_sample, &size);
6600             if (!side_data)
6601                 return AVERROR(ENOMEM);
6602             ret = av_packet_add_side_data(pkt, AV_PKT_DATA_ENCRYPTION_INFO, side_data, size);
6603             if (ret < 0)
6604                 av_free(side_data);
6605             return ret;
6606         }
6607     }
6608
6609     return 0;
6610 }
6611
6612 static int mov_read_dops(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6613 {
6614     const int OPUS_SEEK_PREROLL_MS = 80;
6615     AVStream *st;
6616     size_t size;
6617     uint16_t pre_skip;
6618
6619     if (c->fc->nb_streams < 1)
6620         return 0;
6621     st = c->fc->streams[c->fc->nb_streams-1];
6622
6623     if ((uint64_t)atom.size > (1<<30) || atom.size < 11)
6624         return AVERROR_INVALIDDATA;
6625
6626     /* Check OpusSpecificBox version. */
6627     if (avio_r8(pb) != 0) {
6628         av_log(c->fc, AV_LOG_ERROR, "unsupported OpusSpecificBox version\n");
6629         return AVERROR_INVALIDDATA;
6630     }
6631
6632     /* OpusSpecificBox size plus magic for Ogg OpusHead header. */
6633     size = atom.size + 8;
6634
6635     if (ff_alloc_extradata(st->codecpar, size))
6636         return AVERROR(ENOMEM);
6637
6638     AV_WL32(st->codecpar->extradata, MKTAG('O','p','u','s'));
6639     AV_WL32(st->codecpar->extradata + 4, MKTAG('H','e','a','d'));
6640     AV_WB8(st->codecpar->extradata + 8, 1); /* OpusHead version */
6641     avio_read(pb, st->codecpar->extradata + 9, size - 9);
6642
6643     /* OpusSpecificBox is stored in big-endian, but OpusHead is
6644        little-endian; aside from the preceeding magic and version they're
6645        otherwise currently identical.  Data after output gain at offset 16
6646        doesn't need to be bytewapped. */
6647     pre_skip = AV_RB16(st->codecpar->extradata + 10);
6648     AV_WL16(st->codecpar->extradata + 10, pre_skip);
6649     AV_WL32(st->codecpar->extradata + 12, AV_RB32(st->codecpar->extradata + 12));
6650     AV_WL16(st->codecpar->extradata + 16, AV_RB16(st->codecpar->extradata + 16));
6651
6652     st->codecpar->initial_padding = pre_skip;
6653     st->codecpar->seek_preroll = av_rescale_q(OPUS_SEEK_PREROLL_MS,
6654                                               (AVRational){1, 1000},
6655                                               (AVRational){1, 48000});
6656
6657     return 0;
6658 }
6659
6660 static const MOVParseTableEntry mov_default_parse_table[] = {
6661 { MKTAG('A','C','L','R'), mov_read_aclr },
6662 { MKTAG('A','P','R','G'), mov_read_avid },
6663 { MKTAG('A','A','L','P'), mov_read_avid },
6664 { MKTAG('A','R','E','S'), mov_read_ares },
6665 { MKTAG('a','v','s','s'), mov_read_avss },
6666 { MKTAG('a','v','1','C'), mov_read_av1c },
6667 { MKTAG('c','h','p','l'), mov_read_chpl },
6668 { MKTAG('c','o','6','4'), mov_read_stco },
6669 { MKTAG('c','o','l','r'), mov_read_colr },
6670 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
6671 { MKTAG('d','i','n','f'), mov_read_default },
6672 { MKTAG('D','p','x','E'), mov_read_dpxe },
6673 { MKTAG('d','r','e','f'), mov_read_dref },
6674 { MKTAG('e','d','t','s'), mov_read_default },
6675 { MKTAG('e','l','s','t'), mov_read_elst },
6676 { MKTAG('e','n','d','a'), mov_read_enda },
6677 { MKTAG('f','i','e','l'), mov_read_fiel },
6678 { MKTAG('a','d','r','m'), mov_read_adrm },
6679 { MKTAG('f','t','y','p'), mov_read_ftyp },
6680 { MKTAG('g','l','b','l'), mov_read_glbl },
6681 { MKTAG('h','d','l','r'), mov_read_hdlr },
6682 { MKTAG('i','l','s','t'), mov_read_ilst },
6683 { MKTAG('j','p','2','h'), mov_read_jp2h },
6684 { MKTAG('m','d','a','t'), mov_read_mdat },
6685 { MKTAG('m','d','h','d'), mov_read_mdhd },
6686 { MKTAG('m','d','i','a'), mov_read_default },
6687 { MKTAG('m','e','t','a'), mov_read_meta },
6688 { MKTAG('m','i','n','f'), mov_read_default },
6689 { MKTAG('m','o','o','f'), mov_read_moof },
6690 { MKTAG('m','o','o','v'), mov_read_moov },
6691 { MKTAG('m','v','e','x'), mov_read_default },
6692 { MKTAG('m','v','h','d'), mov_read_mvhd },
6693 { MKTAG('S','M','I',' '), mov_read_svq3 },
6694 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
6695 { MKTAG('a','v','c','C'), mov_read_glbl },
6696 { MKTAG('p','a','s','p'), mov_read_pasp },
6697 { MKTAG('s','i','d','x'), mov_read_sidx },
6698 { MKTAG('s','t','b','l'), mov_read_default },
6699 { MKTAG('s','t','c','o'), mov_read_stco },
6700 { MKTAG('s','t','p','s'), mov_read_stps },
6701 { MKTAG('s','t','r','f'), mov_read_strf },
6702 { MKTAG('s','t','s','c'), mov_read_stsc },
6703 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
6704 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
6705 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
6706 { MKTAG('s','t','t','s'), mov_read_stts },
6707 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
6708 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
6709 { MKTAG('t','f','d','t'), mov_read_tfdt },
6710 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
6711 { MKTAG('t','r','a','k'), mov_read_trak },
6712 { MKTAG('t','r','a','f'), mov_read_default },
6713 { MKTAG('t','r','e','f'), mov_read_default },
6714 { MKTAG('t','m','c','d'), mov_read_tmcd },
6715 { MKTAG('c','h','a','p'), mov_read_chap },
6716 { MKTAG('t','r','e','x'), mov_read_trex },
6717 { MKTAG('t','r','u','n'), mov_read_trun },
6718 { MKTAG('u','d','t','a'), mov_read_default },
6719 { MKTAG('w','a','v','e'), mov_read_wave },
6720 { MKTAG('e','s','d','s'), mov_read_esds },
6721 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
6722 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
6723 { MKTAG('d','d','t','s'), mov_read_ddts }, /* DTS audio descriptor */
6724 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
6725 { MKTAG('w','f','e','x'), mov_read_wfex },
6726 { MKTAG('c','m','o','v'), mov_read_cmov },
6727 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
6728 { MKTAG('d','v','c','1'), mov_read_dvc1 },
6729 { MKTAG('s','b','g','p'), mov_read_sbgp },
6730 { MKTAG('h','v','c','C'), mov_read_glbl },
6731 { MKTAG('u','u','i','d'), mov_read_uuid },
6732 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
6733 { MKTAG('f','r','e','e'), mov_read_free },
6734 { MKTAG('-','-','-','-'), mov_read_custom },
6735 { MKTAG('s','i','n','f'), mov_read_default },
6736 { MKTAG('f','r','m','a'), mov_read_frma },
6737 { MKTAG('s','e','n','c'), mov_read_senc },
6738 { MKTAG('s','a','i','z'), mov_read_saiz },
6739 { MKTAG('s','a','i','o'), mov_read_saio },
6740 { MKTAG('p','s','s','h'), mov_read_pssh },
6741 { MKTAG('s','c','h','m'), mov_read_schm },
6742 { MKTAG('s','c','h','i'), mov_read_default },
6743 { MKTAG('t','e','n','c'), mov_read_tenc },
6744 { MKTAG('d','f','L','a'), mov_read_dfla },
6745 { MKTAG('s','t','3','d'), mov_read_st3d }, /* stereoscopic 3D video box */
6746 { MKTAG('s','v','3','d'), mov_read_sv3d }, /* spherical video box */
6747 { MKTAG('d','O','p','s'), mov_read_dops },
6748 { MKTAG('S','m','D','m'), mov_read_smdm },
6749 { MKTAG('C','o','L','L'), mov_read_coll },
6750 { MKTAG('v','p','c','C'), mov_read_vpcc },
6751 { MKTAG('m','d','c','v'), mov_read_mdcv },
6752 { MKTAG('c','l','l','i'), mov_read_clli },
6753 { 0, NULL }
6754 };
6755
6756 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6757 {
6758     int64_t total_size = 0;
6759     MOVAtom a;
6760     int i;
6761
6762     if (c->atom_depth > 10) {
6763         av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
6764         return AVERROR_INVALIDDATA;
6765     }
6766     c->atom_depth ++;
6767
6768     if (atom.size < 0)
6769         atom.size = INT64_MAX;
6770     while (total_size <= atom.size - 8 && !avio_feof(pb)) {
6771         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
6772         a.size = atom.size;
6773         a.type=0;
6774         if (atom.size >= 8) {
6775             a.size = avio_rb32(pb);
6776             a.type = avio_rl32(pb);
6777             if (a.type == MKTAG('f','r','e','e') &&
6778                 a.size >= 8 &&
6779                 c->fc->strict_std_compliance < FF_COMPLIANCE_STRICT &&
6780                 c->moov_retry) {
6781                 uint8_t buf[8];
6782                 uint32_t *type = (uint32_t *)buf + 1;
6783                 if (avio_read(pb, buf, 8) != 8)
6784                     return AVERROR_INVALIDDATA;
6785                 avio_seek(pb, -8, SEEK_CUR);
6786                 if (*type == MKTAG('m','v','h','d') ||
6787                     *type == MKTAG('c','m','o','v')) {
6788                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
6789                     a.type = MKTAG('m','o','o','v');
6790                 }
6791             }
6792             if (atom.type != MKTAG('r','o','o','t') &&
6793                 atom.type != MKTAG('m','o','o','v'))
6794             {
6795                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
6796                 {
6797                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
6798                     avio_skip(pb, -8);
6799                     c->atom_depth --;
6800                     return 0;
6801                 }
6802             }
6803             total_size += 8;
6804             if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
6805                 a.size = avio_rb64(pb) - 8;
6806                 total_size += 8;
6807             }
6808         }
6809         av_log(c->fc, AV_LOG_TRACE, "type:'%s' parent:'%s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
6810                av_fourcc2str(a.type), av_fourcc2str(atom.type), a.size, total_size, atom.size);
6811         if (a.size == 0) {
6812             a.size = atom.size - total_size + 8;
6813         }
6814         a.size -= 8;
6815         if (a.size < 0)
6816             break;
6817         a.size = FFMIN(a.size, atom.size - total_size);
6818
6819         for (i = 0; mov_default_parse_table[i].type; i++)
6820             if (mov_default_parse_table[i].type == a.type) {
6821                 parse = mov_default_parse_table[i].parse;
6822                 break;
6823             }
6824
6825         // container is user data
6826         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
6827                        atom.type == MKTAG('i','l','s','t')))
6828             parse = mov_read_udta_string;
6829
6830         // Supports parsing the QuickTime Metadata Keys.
6831         // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html
6832         if (!parse && c->found_hdlr_mdta &&
6833             atom.type == MKTAG('m','e','t','a') &&
6834             a.type == MKTAG('k','e','y','s')) {
6835             parse = mov_read_keys;
6836         }
6837
6838         if (!parse) { /* skip leaf atoms data */
6839             avio_skip(pb, a.size);
6840         } else {
6841             int64_t start_pos = avio_tell(pb);
6842             int64_t left;
6843             int err = parse(c, pb, a);
6844             if (err < 0) {
6845                 c->atom_depth --;
6846                 return err;
6847             }
6848             if (c->found_moov && c->found_mdat &&
6849                 ((!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete) ||
6850                  start_pos + a.size == avio_size(pb))) {
6851                 if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete)
6852                     c->next_root_atom = start_pos + a.size;
6853                 c->atom_depth --;
6854                 return 0;
6855             }
6856             left = a.size - avio_tell(pb) + start_pos;
6857             if (left > 0) /* skip garbage at atom end */
6858                 avio_skip(pb, left);
6859             else if (left < 0) {
6860                 av_log(c->fc, AV_LOG_WARNING,
6861                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
6862                        (char*)&a.type, -left);
6863                 avio_seek(pb, left, SEEK_CUR);
6864             }
6865         }
6866
6867         total_size += a.size;
6868     }
6869
6870     if (total_size < atom.size && atom.size < 0x7ffff)
6871         avio_skip(pb, atom.size - total_size);
6872
6873     c->atom_depth --;
6874     return 0;
6875 }
6876
6877 static int mov_probe(AVProbeData *p)
6878 {
6879     int64_t offset;
6880     uint32_t tag;
6881     int score = 0;
6882     int moov_offset = -1;
6883
6884     /* check file header */
6885     offset = 0;
6886     for (;;) {
6887         /* ignore invalid offset */
6888         if ((offset + 8) > (unsigned int)p->buf_size)
6889             break;
6890         tag = AV_RL32(p->buf + offset + 4);
6891         switch(tag) {
6892         /* check for obvious tags */
6893         case MKTAG('m','o','o','v'):
6894             moov_offset = offset + 4;
6895         case MKTAG('m','d','a','t'):
6896         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
6897         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
6898         case MKTAG('f','t','y','p'):
6899             if (AV_RB32(p->buf+offset) < 8 &&
6900                 (AV_RB32(p->buf+offset) != 1 ||
6901                  offset + 12 > (unsigned int)p->buf_size ||
6902                  AV_RB64(p->buf+offset + 8) == 0)) {
6903                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6904             } else if (tag == MKTAG('f','t','y','p') &&
6905                        (   AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')
6906                         || AV_RL32(p->buf + offset + 8) == MKTAG('j','p','x',' ')
6907                     )) {
6908                 score = FFMAX(score, 5);
6909             } else {
6910                 score = AVPROBE_SCORE_MAX;
6911             }
6912             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6913             break;
6914         /* those are more common words, so rate then a bit less */
6915         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
6916         case MKTAG('w','i','d','e'):
6917         case MKTAG('f','r','e','e'):
6918         case MKTAG('j','u','n','k'):
6919         case MKTAG('p','i','c','t'):
6920             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
6921             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6922             break;
6923         case MKTAG(0x82,0x82,0x7f,0x7d):
6924         case MKTAG('s','k','i','p'):
6925         case MKTAG('u','u','i','d'):
6926         case MKTAG('p','r','f','l'):
6927             /* if we only find those cause probedata is too small at least rate them */
6928             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6929             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6930             break;
6931         default:
6932             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6933         }
6934     }
6935     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
6936         /* moov atom in the header - we should make sure that this is not a
6937          * MOV-packed MPEG-PS */
6938         offset = moov_offset;
6939
6940         while(offset < (p->buf_size - 16)){ /* Sufficient space */
6941                /* We found an actual hdlr atom */
6942             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
6943                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
6944                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
6945                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
6946                 /* We found a media handler reference atom describing an
6947                  * MPEG-PS-in-MOV, return a
6948                  * low score to force expanding the probe window until
6949                  * mpegps_probe finds what it needs */
6950                 return 5;
6951             }else
6952                 /* Keep looking */
6953                 offset+=2;
6954         }
6955     }
6956
6957     return score;
6958 }
6959
6960 // must be done after parsing all trak because there's no order requirement
6961 static void mov_read_chapters(AVFormatContext *s)
6962 {
6963     MOVContext *mov = s->priv_data;
6964     AVStream *st;
6965     MOVStreamContext *sc;
6966     int64_t cur_pos;
6967     int i, j;
6968     int chapter_track;
6969
6970     for (j = 0; j < mov->nb_chapter_tracks; j++) {
6971         chapter_track = mov->chapter_tracks[j];
6972         st = NULL;
6973         for (i = 0; i < s->nb_streams; i++)
6974             if (s->streams[i]->id == chapter_track) {
6975                 st = s->streams[i];
6976                 break;
6977             }
6978         if (!st) {
6979             av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
6980             continue;
6981         }
6982
6983         sc = st->priv_data;
6984         cur_pos = avio_tell(sc->pb);
6985
6986         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6987             st->disposition |= AV_DISPOSITION_ATTACHED_PIC | AV_DISPOSITION_TIMED_THUMBNAILS;
6988             if (st->nb_index_entries) {
6989                 // Retrieve the first frame, if possible
6990                 AVPacket pkt;
6991                 AVIndexEntry *sample = &st->index_entries[0];
6992                 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
6993                     av_log(s, AV_LOG_ERROR, "Failed to retrieve first frame\n");
6994                     goto finish;
6995                 }
6996
6997                 if (av_get_packet(sc->pb, &pkt, sample->size) < 0)
6998                     goto finish;
6999
7000                 st->attached_pic              = pkt;
7001                 st->attached_pic.stream_index = st->index;
7002                 st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
7003             }
7004         } else {
7005             st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
7006             st->codecpar->codec_id = AV_CODEC_ID_BIN_DATA;
7007             st->discard = AVDISCARD_ALL;
7008             for (i = 0; i < st->nb_index_entries; i++) {
7009                 AVIndexEntry *sample = &st->index_entries[i];
7010                 int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
7011                 uint8_t *title;
7012                 uint16_t ch;
7013                 int len, title_len;
7014
7015                 if (end < sample->timestamp) {
7016                     av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
7017                     end = AV_NOPTS_VALUE;
7018                 }
7019
7020                 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
7021                     av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
7022                     goto finish;
7023                 }
7024
7025                 // the first two bytes are the length of the title
7026                 len = avio_rb16(sc->pb);
7027                 if (len > sample->size-2)
7028                     continue;
7029                 title_len = 2*len + 1;
7030                 if (!(title = av_mallocz(title_len)))
7031                     goto finish;
7032
7033                 // The samples could theoretically be in any encoding if there's an encd
7034                 // atom following, but in practice are only utf-8 or utf-16, distinguished
7035                 // instead by the presence of a BOM
7036                 if (!len) {
7037                     title[0] = 0;
7038                 } else {
7039                     ch = avio_rb16(sc->pb);
7040                     if (ch == 0xfeff)
7041                         avio_get_str16be(sc->pb, len, title, title_len);
7042                     else if (ch == 0xfffe)
7043                         avio_get_str16le(sc->pb, len, title, title_len);
7044                     else {
7045                         AV_WB16(title, ch);
7046                         if (len == 1 || len == 2)
7047                             title[len] = 0;
7048                         else
7049                             avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
7050                     }
7051                 }
7052
7053                 avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
7054                 av_freep(&title);
7055             }
7056         }
7057 finish:
7058         avio_seek(sc->pb, cur_pos, SEEK_SET);
7059     }
7060 }
7061
7062 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
7063                                              uint32_t value, int flags)
7064 {
7065     AVTimecode tc;
7066     char buf[AV_TIMECODE_STR_SIZE];
7067     AVRational rate = st->avg_frame_rate;
7068     int ret = av_timecode_init(&tc, rate, flags, 0, s);
7069     if (ret < 0)
7070         return ret;
7071     av_dict_set(&st->metadata, "timecode",
7072                 av_timecode_make_string(&tc, buf, value), 0);
7073     return 0;
7074 }
7075
7076 static int mov_read_rtmd_track(AVFormatContext *s, AVStream *st)
7077 {
7078     MOVStreamContext *sc = st->priv_data;
7079     char buf[AV_TIMECODE_STR_SIZE];
7080     int64_t cur_pos = avio_tell(sc->pb);
7081     int hh, mm, ss, ff, drop;
7082
7083     if (!st->nb_index_entries)
7084         return -1;
7085
7086     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
7087     avio_skip(s->pb, 13);
7088     hh = avio_r8(s->pb);
7089     mm = avio_r8(s->pb);
7090     ss = avio_r8(s->pb);
7091     drop = avio_r8(s->pb);
7092     ff = avio_r8(s->pb);
7093     snprintf(buf, AV_TIMECODE_STR_SIZE, "%02d:%02d:%02d%c%02d",
7094              hh, mm, ss, drop ? ';' : ':', ff);
7095     av_dict_set(&st->metadata, "timecode", buf, 0);
7096
7097     avio_seek(sc->pb, cur_pos, SEEK_SET);
7098     return 0;
7099 }
7100
7101 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
7102 {
7103     MOVStreamContext *sc = st->priv_data;
7104     int flags = 0;
7105     int64_t cur_pos = avio_tell(sc->pb);
7106     uint32_t value;
7107
7108     if (!st->nb_index_entries)
7109         return -1;
7110
7111     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
7112     value = avio_rb32(s->pb);
7113
7114     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
7115     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
7116     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
7117
7118     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
7119      * not the case) and thus assume "frame number format" instead of QT one.
7120      * No sample with tmcd track can be found with a QT timecode at the moment,
7121      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
7122      * format). */
7123     parse_timecode_in_framenum_format(s, st, value, flags);
7124
7125     avio_seek(sc->pb, cur_pos, SEEK_SET);
7126     return 0;
7127 }
7128
7129 static void mov_free_encryption_index(MOVEncryptionIndex **index) {
7130     int i;
7131     if (!index || !*index) return;
7132     for (i = 0; i < (*index)->nb_encrypted_samples; i++) {
7133         av_encryption_info_free((*index)->encrypted_samples[i]);
7134     }
7135     av_freep(&(*index)->encrypted_samples);
7136     av_freep(&(*index)->auxiliary_info_sizes);
7137     av_freep(&(*index)->auxiliary_offsets);
7138     av_freep(index);
7139 }
7140
7141 static int mov_read_close(AVFormatContext *s)
7142 {
7143     MOVContext *mov = s->priv_data;
7144     int i, j;
7145
7146     for (i = 0; i < s->nb_streams; i++) {
7147         AVStream *st = s->streams[i];
7148         MOVStreamContext *sc = st->priv_data;
7149
7150         if (!sc)
7151             continue;
7152
7153         av_freep(&sc->ctts_data);
7154         for (j = 0; j < sc->drefs_count; j++) {
7155             av_freep(&sc->drefs[j].path);
7156             av_freep(&sc->drefs[j].dir);
7157         }
7158         av_freep(&sc->drefs);
7159
7160         sc->drefs_count = 0;
7161
7162         if (!sc->pb_is_copied)
7163             ff_format_io_close(s, &sc->pb);
7164
7165         sc->pb = NULL;
7166         av_freep(&sc->chunk_offsets);
7167         av_freep(&sc->stsc_data);
7168         av_freep(&sc->sample_sizes);
7169         av_freep(&sc->keyframes);
7170         av_freep(&sc->stts_data);
7171         av_freep(&sc->stps_data);
7172         av_freep(&sc->elst_data);
7173         av_freep(&sc->rap_group);
7174         av_freep(&sc->display_matrix);
7175         av_freep(&sc->index_ranges);
7176
7177         if (sc->extradata)
7178             for (j = 0; j < sc->stsd_count; j++)
7179                 av_free(sc->extradata[j]);
7180         av_freep(&sc->extradata);
7181         av_freep(&sc->extradata_size);
7182
7183         mov_free_encryption_index(&sc->cenc.encryption_index);
7184         av_encryption_info_free(sc->cenc.default_encrypted_sample);
7185         av_aes_ctr_free(sc->cenc.aes_ctr);
7186
7187         av_freep(&sc->stereo3d);
7188         av_freep(&sc->spherical);
7189         av_freep(&sc->mastering);
7190         av_freep(&sc->coll);
7191     }
7192
7193     if (mov->dv_demux) {
7194         avformat_free_context(mov->dv_fctx);
7195         mov->dv_fctx = NULL;
7196     }
7197
7198     if (mov->meta_keys) {
7199         for (i = 1; i < mov->meta_keys_count; i++) {
7200             av_freep(&mov->meta_keys[i]);
7201         }
7202         av_freep(&mov->meta_keys);
7203     }
7204
7205     av_freep(&mov->trex_data);
7206     av_freep(&mov->bitrates);
7207
7208     for (i = 0; i < mov->frag_index.nb_items; i++) {
7209         MOVFragmentStreamInfo *frag = mov->frag_index.item[i].stream_info;
7210         for (j = 0; j < mov->frag_index.item[i].nb_stream_info; j++) {
7211             mov_free_encryption_index(&frag[j].encryption_index);
7212         }
7213         av_freep(&mov->frag_index.item[i].stream_info);
7214     }
7215     av_freep(&mov->frag_index.item);
7216
7217     av_freep(&mov->aes_decrypt);
7218     av_freep(&mov->chapter_tracks);
7219
7220     return 0;
7221 }
7222
7223 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
7224 {
7225     int i;
7226
7227     for (i = 0; i < s->nb_streams; i++) {
7228         AVStream *st = s->streams[i];
7229         MOVStreamContext *sc = st->priv_data;
7230
7231         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
7232             sc->timecode_track == tmcd_id)
7233             return 1;
7234     }
7235     return 0;
7236 }
7237
7238 /* look for a tmcd track not referenced by any video track, and export it globally */
7239 static void export_orphan_timecode(AVFormatContext *s)
7240 {
7241     int i;
7242
7243     for (i = 0; i < s->nb_streams; i++) {
7244         AVStream *st = s->streams[i];
7245
7246         if (st->codecpar->codec_tag  == MKTAG('t','m','c','d') &&
7247             !tmcd_is_referenced(s, i + 1)) {
7248             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
7249             if (tcr) {
7250                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
7251                 break;
7252             }
7253         }
7254     }
7255 }
7256
7257 static int read_tfra(MOVContext *mov, AVIOContext *f)
7258 {
7259     int version, fieldlength, i, j;
7260     int64_t pos = avio_tell(f);
7261     uint32_t size = avio_rb32(f);
7262     unsigned track_id, item_count;
7263
7264     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
7265         return 1;
7266     }
7267     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
7268
7269     version = avio_r8(f);
7270     avio_rb24(f);
7271     track_id = avio_rb32(f);
7272     fieldlength = avio_rb32(f);
7273     item_count = avio_rb32(f);
7274     for (i = 0; i < item_count; i++) {
7275         int64_t time, offset;
7276         int index;
7277         MOVFragmentStreamInfo * frag_stream_info;
7278
7279         if (avio_feof(f)) {
7280             return AVERROR_INVALIDDATA;
7281         }
7282
7283         if (version == 1) {
7284             time   = avio_rb64(f);
7285             offset = avio_rb64(f);
7286         } else {
7287             time   = avio_rb32(f);
7288             offset = avio_rb32(f);
7289         }
7290
7291         // The first sample of each stream in a fragment is always a random
7292         // access sample.  So it's entry in the tfra can be used as the
7293         // initial PTS of the fragment.
7294         index = update_frag_index(mov, offset);
7295         frag_stream_info = get_frag_stream_info(&mov->frag_index, index, track_id);
7296         if (frag_stream_info &&
7297             frag_stream_info->first_tfra_pts == AV_NOPTS_VALUE)
7298             frag_stream_info->first_tfra_pts = time;
7299
7300         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
7301             avio_r8(f);
7302         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
7303             avio_r8(f);
7304         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
7305             avio_r8(f);
7306     }
7307
7308     avio_seek(f, pos + size, SEEK_SET);
7309     return 0;
7310 }
7311
7312 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
7313 {
7314     int64_t stream_size = avio_size(f);
7315     int64_t original_pos = avio_tell(f);
7316     int64_t seek_ret;
7317     int32_t mfra_size;
7318     int ret = -1;
7319     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
7320         ret = seek_ret;
7321         goto fail;
7322     }
7323     mfra_size = avio_rb32(f);
7324     if (mfra_size < 0 || mfra_size > stream_size) {
7325         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
7326         goto fail;
7327     }
7328     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
7329         ret = seek_ret;
7330         goto fail;
7331     }
7332     if (avio_rb32(f) != mfra_size) {
7333         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
7334         goto fail;
7335     }
7336     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
7337         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
7338         goto fail;
7339     }
7340     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
7341     do {
7342         ret = read_tfra(c, f);
7343         if (ret < 0)
7344             goto fail;
7345     } while (!ret);
7346     ret = 0;
7347 fail:
7348     seek_ret = avio_seek(f, original_pos, SEEK_SET);
7349     if (seek_ret < 0) {
7350         av_log(c->fc, AV_LOG_ERROR,
7351                "failed to seek back after looking for mfra\n");
7352         ret = seek_ret;
7353     }
7354     return ret;
7355 }
7356
7357 static int mov_read_header(AVFormatContext *s)
7358 {
7359     MOVContext *mov = s->priv_data;
7360     AVIOContext *pb = s->pb;
7361     int j, err;
7362     MOVAtom atom = { AV_RL32("root") };
7363     int i;
7364
7365     if (mov->decryption_key_len != 0 && mov->decryption_key_len != AES_CTR_KEY_SIZE) {
7366         av_log(s, AV_LOG_ERROR, "Invalid decryption key len %d expected %d\n",
7367             mov->decryption_key_len, AES_CTR_KEY_SIZE);
7368         return AVERROR(EINVAL);
7369     }
7370
7371     mov->fc = s;
7372     mov->trak_index = -1;
7373     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
7374     if (pb->seekable & AVIO_SEEKABLE_NORMAL)
7375         atom.size = avio_size(pb);
7376     else
7377         atom.size = INT64_MAX;
7378
7379     /* check MOV header */
7380     do {
7381         if (mov->moov_retry)
7382             avio_seek(pb, 0, SEEK_SET);
7383         if ((err = mov_read_default(mov, pb, atom)) < 0) {
7384             av_log(s, AV_LOG_ERROR, "error reading header\n");
7385             mov_read_close(s);
7386             return err;
7387         }
7388     } while ((pb->seekable & AVIO_SEEKABLE_NORMAL) && !mov->found_moov && !mov->moov_retry++);
7389     if (!mov->found_moov) {
7390         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
7391         mov_read_close(s);
7392         return AVERROR_INVALIDDATA;
7393     }
7394     av_log(mov->fc, AV_LOG_TRACE, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
7395
7396     if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
7397         if (mov->nb_chapter_tracks > 0 && !mov->ignore_chapters)
7398             mov_read_chapters(s);
7399         for (i = 0; i < s->nb_streams; i++)
7400             if (s->streams[i]->codecpar->codec_tag == AV_RL32("tmcd")) {
7401                 mov_read_timecode_track(s, s->streams[i]);
7402             } else if (s->streams[i]->codecpar->codec_tag == AV_RL32("rtmd")) {
7403                 mov_read_rtmd_track(s, s->streams[i]);
7404             }
7405     }
7406
7407     /* copy timecode metadata from tmcd tracks to the related video streams */
7408     for (i = 0; i < s->nb_streams; i++) {
7409         AVStream *st = s->streams[i];
7410         MOVStreamContext *sc = st->priv_data;
7411         if (sc->timecode_track > 0) {
7412             AVDictionaryEntry *tcr;
7413             int tmcd_st_id = -1;
7414
7415             for (j = 0; j < s->nb_streams; j++)
7416                 if (s->streams[j]->id == sc->timecode_track)
7417                     tmcd_st_id = j;
7418
7419             if (tmcd_st_id < 0 || tmcd_st_id == i)
7420                 continue;
7421             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
7422             if (tcr)
7423                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
7424         }
7425     }
7426     export_orphan_timecode(s);
7427
7428     for (i = 0; i < s->nb_streams; i++) {
7429         AVStream *st = s->streams[i];
7430         MOVStreamContext *sc = st->priv_data;
7431         fix_timescale(mov, sc);
7432         if(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id == AV_CODEC_ID_AAC) {
7433             st->skip_samples = sc->start_pad;
7434         }
7435         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
7436             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
7437                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
7438         if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
7439             if (st->codecpar->width <= 0 || st->codecpar->height <= 0) {
7440                 st->codecpar->width  = sc->width;
7441                 st->codecpar->height = sc->height;
7442             }
7443             if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
7444                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
7445                     return err;
7446             }
7447         }
7448         if (mov->handbrake_version &&
7449             mov->handbrake_version <= 1000000*0 + 1000*10 + 2 &&  // 0.10.2
7450             st->codecpar->codec_id == AV_CODEC_ID_MP3
7451         ) {
7452             av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");
7453             st->need_parsing = AVSTREAM_PARSE_FULL;
7454         }
7455     }
7456
7457     if (mov->trex_data) {
7458         for (i = 0; i < s->nb_streams; i++) {
7459             AVStream *st = s->streams[i];
7460             MOVStreamContext *sc = st->priv_data;
7461             if (st->duration > 0) {
7462                 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
7463                     av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
7464                            sc->data_size, sc->time_scale);
7465                     mov_read_close(s);
7466                     return AVERROR_INVALIDDATA;
7467                 }
7468                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
7469             }
7470         }
7471     }
7472
7473     if (mov->use_mfra_for > 0) {
7474         for (i = 0; i < s->nb_streams; i++) {
7475             AVStream *st = s->streams[i];
7476             MOVStreamContext *sc = st->priv_data;
7477             if (sc->duration_for_fps > 0) {
7478                 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
7479                     av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
7480                            sc->data_size, sc->time_scale);
7481                     mov_read_close(s);
7482                     return AVERROR_INVALIDDATA;
7483                 }
7484                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale /
7485                     sc->duration_for_fps;
7486             }
7487         }
7488     }
7489
7490     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
7491         if (mov->bitrates[i]) {
7492             s->streams[i]->codecpar->bit_rate = mov->bitrates[i];
7493         }
7494     }
7495
7496     ff_rfps_calculate(s);
7497
7498     for (i = 0; i < s->nb_streams; i++) {
7499         AVStream *st = s->streams[i];
7500         MOVStreamContext *sc = st->priv_data;
7501
7502         switch (st->codecpar->codec_type) {
7503         case AVMEDIA_TYPE_AUDIO:
7504             err = ff_replaygain_export(st, s->metadata);
7505             if (err < 0) {
7506                 mov_read_close(s);
7507                 return err;
7508             }
7509             break;
7510         case AVMEDIA_TYPE_VIDEO:
7511             if (sc->display_matrix) {
7512                 err = av_stream_add_side_data(st, AV_PKT_DATA_DISPLAYMATRIX, (uint8_t*)sc->display_matrix,
7513                                               sizeof(int32_t) * 9);
7514                 if (err < 0)
7515                     return err;
7516
7517                 sc->display_matrix = NULL;
7518             }
7519             if (sc->stereo3d) {
7520                 err = av_stream_add_side_data(st, AV_PKT_DATA_STEREO3D,
7521                                               (uint8_t *)sc->stereo3d,
7522                                               sizeof(*sc->stereo3d));
7523                 if (err < 0)
7524                     return err;
7525
7526                 sc->stereo3d = NULL;
7527             }
7528             if (sc->spherical) {
7529                 err = av_stream_add_side_data(st, AV_PKT_DATA_SPHERICAL,
7530                                               (uint8_t *)sc->spherical,
7531                                               sc->spherical_size);
7532                 if (err < 0)
7533                     return err;
7534
7535                 sc->spherical = NULL;
7536             }
7537             if (sc->mastering) {
7538                 err = av_stream_add_side_data(st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA,
7539                                               (uint8_t *)sc->mastering,
7540                                               sizeof(*sc->mastering));
7541                 if (err < 0)
7542                     return err;
7543
7544                 sc->mastering = NULL;
7545             }
7546             if (sc->coll) {
7547                 err = av_stream_add_side_data(st, AV_PKT_DATA_CONTENT_LIGHT_LEVEL,
7548                                               (uint8_t *)sc->coll,
7549                                               sc->coll_size);
7550                 if (err < 0)
7551                     return err;
7552
7553                 sc->coll = NULL;
7554             }
7555             break;
7556         }
7557     }
7558     ff_configure_buffers_for_index(s, AV_TIME_BASE);
7559
7560     for (i = 0; i < mov->frag_index.nb_items; i++)
7561         if (mov->frag_index.item[i].moof_offset <= mov->fragment.moof_offset)
7562             mov->frag_index.item[i].headers_read = 1;
7563
7564     return 0;
7565 }
7566
7567 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
7568 {
7569     AVIndexEntry *sample = NULL;
7570     int64_t best_dts = INT64_MAX;
7571     int i;
7572     for (i = 0; i < s->nb_streams; i++) {
7573         AVStream *avst = s->streams[i];
7574         MOVStreamContext *msc = avst->priv_data;
7575         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
7576             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
7577             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
7578             av_log(s, AV_LOG_TRACE, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
7579             if (!sample || (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) && current_sample->pos < sample->pos) ||
7580                 ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
7581                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
7582                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
7583                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
7584                 sample = current_sample;
7585                 best_dts = dts;
7586                 *st = avst;
7587             }
7588         }
7589     }
7590     return sample;
7591 }
7592
7593 static int should_retry(AVIOContext *pb, int error_code) {
7594     if (error_code == AVERROR_EOF || avio_feof(pb))
7595         return 0;
7596
7597     return 1;
7598 }
7599
7600 static int mov_switch_root(AVFormatContext *s, int64_t target, int index)
7601 {
7602     int ret;
7603     MOVContext *mov = s->priv_data;
7604
7605     if (index >= 0 && index < mov->frag_index.nb_items)
7606         target = mov->frag_index.item[index].moof_offset;
7607     if (avio_seek(s->pb, target, SEEK_SET) != target) {
7608         av_log(mov->fc, AV_LOG_ERROR, "root atom offset 0x%"PRIx64": partial file\n", target);
7609         return AVERROR_INVALIDDATA;
7610     }
7611
7612     mov->next_root_atom = 0;
7613     if (index < 0 || index >= mov->frag_index.nb_items)
7614         index = search_frag_moof_offset(&mov->frag_index, target);
7615     if (index < mov->frag_index.nb_items) {
7616         if (index + 1 < mov->frag_index.nb_items)
7617             mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
7618         if (mov->frag_index.item[index].headers_read)
7619             return 0;
7620         mov->frag_index.item[index].headers_read = 1;
7621     }
7622
7623     mov->found_mdat = 0;
7624
7625     ret = mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX });
7626     if (ret < 0)
7627         return ret;
7628     if (avio_feof(s->pb))
7629         return AVERROR_EOF;
7630     av_log(s, AV_LOG_TRACE, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
7631
7632     return 1;
7633 }
7634
7635 static int mov_change_extradata(MOVStreamContext *sc, AVPacket *pkt)
7636 {
7637     uint8_t *side, *extradata;
7638     int extradata_size;
7639
7640     /* Save the current index. */
7641     sc->last_stsd_index = sc->stsc_data[sc->stsc_index].id - 1;
7642
7643     /* Notify the decoder that extradata changed. */
7644     extradata_size = sc->extradata_size[sc->last_stsd_index];
7645     extradata = sc->extradata[sc->last_stsd_index];
7646     if (extradata_size > 0 && extradata) {
7647         side = av_packet_new_side_data(pkt,
7648                                        AV_PKT_DATA_NEW_EXTRADATA,
7649                                        extradata_size);
7650         if (!side)
7651             return AVERROR(ENOMEM);
7652         memcpy(side, extradata, extradata_size);
7653     }
7654
7655     return 0;
7656 }
7657
7658 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
7659 {
7660     MOVContext *mov = s->priv_data;
7661     MOVStreamContext *sc;
7662     AVIndexEntry *sample;
7663     AVStream *st = NULL;
7664     int64_t current_index;
7665     int ret;
7666     mov->fc = s;
7667  retry:
7668     sample = mov_find_next_sample(s, &st);
7669     if (!sample || (mov->next_root_atom && sample->pos > mov->next_root_atom)) {
7670         if (!mov->next_root_atom)
7671             return AVERROR_EOF;
7672         if ((ret = mov_switch_root(s, mov->next_root_atom, -1)) < 0)
7673             return ret;
7674         goto retry;
7675     }
7676     sc = st->priv_data;
7677     /* must be done just before reading, to avoid infinite loop on sample */
7678     current_index = sc->current_index;
7679     mov_current_sample_inc(sc);
7680
7681     if (mov->next_root_atom) {
7682         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
7683         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
7684     }
7685
7686     if (st->discard != AVDISCARD_ALL) {
7687         int64_t ret64 = avio_seek(sc->pb, sample->pos, SEEK_SET);
7688         if (ret64 != sample->pos) {
7689             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
7690                    sc->ffindex, sample->pos);
7691             if (should_retry(sc->pb, ret64)) {
7692                 mov_current_sample_dec(sc);
7693             }
7694             return AVERROR_INVALIDDATA;
7695         }
7696
7697         if( st->discard == AVDISCARD_NONKEY && 0==(sample->flags & AVINDEX_KEYFRAME) ) {
7698             av_log(mov->fc, AV_LOG_DEBUG, "Nonkey frame from stream %d discarded due to AVDISCARD_NONKEY\n", sc->ffindex);
7699             goto retry;
7700         }
7701
7702         ret = av_get_packet(sc->pb, pkt, sample->size);
7703         if (ret < 0) {
7704             if (should_retry(sc->pb, ret)) {
7705                 mov_current_sample_dec(sc);
7706             }
7707             return ret;
7708         }
7709         if (sc->has_palette) {
7710             uint8_t *pal;
7711
7712             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
7713             if (!pal) {
7714                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
7715             } else {
7716                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
7717                 sc->has_palette = 0;
7718             }
7719         }
7720 #if CONFIG_DV_DEMUXER
7721         if (mov->dv_demux && sc->dv_audio_container) {
7722             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
7723             av_freep(&pkt->data);
7724             pkt->size = 0;
7725             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
7726             if (ret < 0)
7727                 return ret;
7728         }
7729 #endif
7730         if (st->codecpar->codec_id == AV_CODEC_ID_MP3 && !st->need_parsing && pkt->size > 4) {
7731             if (ff_mpa_check_header(AV_RB32(pkt->data)) < 0)
7732                 st->need_parsing = AVSTREAM_PARSE_FULL;
7733         }
7734     }
7735
7736     pkt->stream_index = sc->ffindex;
7737     pkt->dts = sample->timestamp;
7738     if (sample->flags & AVINDEX_DISCARD_FRAME) {
7739         pkt->flags |= AV_PKT_FLAG_DISCARD;
7740     }
7741     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
7742         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
7743         /* update ctts context */
7744         sc->ctts_sample++;
7745         if (sc->ctts_index < sc->ctts_count &&
7746             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
7747             sc->ctts_index++;
7748             sc->ctts_sample = 0;
7749         }
7750     } else {
7751         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
7752             st->index_entries[sc->current_sample].timestamp : st->duration;
7753
7754         if (next_dts >= pkt->dts)
7755             pkt->duration = next_dts - pkt->dts;
7756         pkt->pts = pkt->dts;
7757     }
7758     if (st->discard == AVDISCARD_ALL)
7759         goto retry;
7760     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
7761     pkt->pos = sample->pos;
7762
7763     /* Multiple stsd handling. */
7764     if (sc->stsc_data) {
7765         /* Keep track of the stsc index for the given sample, then check
7766         * if the stsd index is different from the last used one. */
7767         sc->stsc_sample++;
7768         if (mov_stsc_index_valid(sc->stsc_index, sc->stsc_count) &&
7769             mov_get_stsc_samples(sc, sc->stsc_index) == sc->stsc_sample) {
7770             sc->stsc_index++;
7771             sc->stsc_sample = 0;
7772         /* Do not check indexes after a switch. */
7773         } else if (sc->stsc_data[sc->stsc_index].id > 0 &&
7774                    sc->stsc_data[sc->stsc_index].id - 1 < sc->stsd_count &&
7775                    sc->stsc_data[sc->stsc_index].id - 1 != sc->last_stsd_index) {
7776             ret = mov_change_extradata(sc, pkt);
7777             if (ret < 0)
7778                 return ret;
7779         }
7780     }
7781
7782     if (mov->aax_mode)
7783         aax_filter(pkt->data, pkt->size, mov);
7784
7785     ret = cenc_filter(mov, sc, pkt, current_index);
7786     if (ret < 0)
7787         return ret;
7788
7789     return 0;
7790 }
7791
7792 static int mov_seek_fragment(AVFormatContext *s, AVStream *st, int64_t timestamp)
7793 {
7794     MOVContext *mov = s->priv_data;
7795     int index;
7796
7797     if (!mov->frag_index.complete)
7798         return 0;
7799
7800     index = search_frag_timestamp(&mov->frag_index, st, timestamp);
7801     if (index < 0)
7802         index = 0;
7803     if (!mov->frag_index.item[index].headers_read)
7804         return mov_switch_root(s, -1, index);
7805     if (index + 1 < mov->frag_index.nb_items)
7806         mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
7807
7808     return 0;
7809 }
7810
7811 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
7812 {
7813     MOVStreamContext *sc = st->priv_data;
7814     int sample, time_sample, ret;
7815     unsigned int i;
7816
7817     // Here we consider timestamp to be PTS, hence try to offset it so that we
7818     // can search over the DTS timeline.
7819     timestamp -= (sc->min_corrected_pts + sc->dts_shift);
7820
7821     ret = mov_seek_fragment(s, st, timestamp);
7822     if (ret < 0)
7823         return ret;
7824
7825     sample = av_index_search_timestamp(st, timestamp, flags);
7826     av_log(s, AV_LOG_TRACE, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
7827     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
7828         sample = 0;
7829     if (sample < 0) /* not sure what to do */
7830         return AVERROR_INVALIDDATA;
7831     mov_current_sample_set(sc, sample);
7832     av_log(s, AV_LOG_TRACE, "stream %d, found sample %d\n", st->index, sc->current_sample);
7833     /* adjust ctts index */
7834     if (sc->ctts_data) {
7835         time_sample = 0;
7836         for (i = 0; i < sc->ctts_count; i++) {
7837             int next = time_sample + sc->ctts_data[i].count;
7838             if (next > sc->current_sample) {
7839                 sc->ctts_index = i;
7840                 sc->ctts_sample = sc->current_sample - time_sample;
7841                 break;
7842             }
7843             time_sample = next;
7844         }
7845     }
7846
7847     /* adjust stsd index */
7848     time_sample = 0;
7849     for (i = 0; i < sc->stsc_count; i++) {
7850         int64_t next = time_sample + mov_get_stsc_samples(sc, i);
7851         if (next > sc->current_sample) {
7852             sc->stsc_index = i;
7853             sc->stsc_sample = sc->current_sample - time_sample;
7854             break;
7855         }
7856         av_assert0(next == (int)next);
7857         time_sample = next;
7858     }
7859
7860     return sample;
7861 }
7862
7863 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
7864 {
7865     MOVContext *mc = s->priv_data;
7866     AVStream *st;
7867     int sample;
7868     int i;
7869
7870     if (stream_index >= s->nb_streams)
7871         return AVERROR_INVALIDDATA;
7872
7873     st = s->streams[stream_index];
7874     sample = mov_seek_stream(s, st, sample_time, flags);
7875     if (sample < 0)
7876         return sample;
7877
7878     if (mc->seek_individually) {
7879         /* adjust seek timestamp to found sample timestamp */
7880         int64_t seek_timestamp = st->index_entries[sample].timestamp;
7881
7882         for (i = 0; i < s->nb_streams; i++) {
7883             int64_t timestamp;
7884             MOVStreamContext *sc = s->streams[i]->priv_data;
7885             st = s->streams[i];
7886             st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
7887
7888             if (stream_index == i)
7889                 continue;
7890
7891             timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
7892             mov_seek_stream(s, st, timestamp, flags);
7893         }
7894     } else {
7895         for (i = 0; i < s->nb_streams; i++) {
7896             MOVStreamContext *sc;
7897             st = s->streams[i];
7898             sc = st->priv_data;
7899             mov_current_sample_set(sc, 0);
7900         }
7901         while (1) {
7902             MOVStreamContext *sc;
7903             AVIndexEntry *entry = mov_find_next_sample(s, &st);
7904             if (!entry)
7905                 return AVERROR_INVALIDDATA;
7906             sc = st->priv_data;
7907             if (sc->ffindex == stream_index && sc->current_sample == sample)
7908                 break;
7909             mov_current_sample_inc(sc);
7910         }
7911     }
7912     return 0;
7913 }
7914
7915 #define OFFSET(x) offsetof(MOVContext, x)
7916 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
7917 static const AVOption mov_options[] = {
7918     {"use_absolute_path",
7919         "allow using absolute path when opening alias, this is a possible security issue",
7920         OFFSET(use_absolute_path), AV_OPT_TYPE_BOOL, {.i64 = 0},
7921         0, 1, FLAGS},
7922     {"seek_streams_individually",
7923         "Seek each stream individually to the to the closest point",
7924         OFFSET(seek_individually), AV_OPT_TYPE_BOOL, { .i64 = 1 },
7925         0, 1, FLAGS},
7926     {"ignore_editlist", "Ignore the edit list atom.", OFFSET(ignore_editlist), AV_OPT_TYPE_BOOL, {.i64 = 0},
7927         0, 1, FLAGS},
7928     {"advanced_editlist",
7929         "Modify the AVIndex according to the editlists. Use this option to decode in the order specified by the edits.",
7930         OFFSET(advanced_editlist), AV_OPT_TYPE_BOOL, {.i64 = 1},
7931         0, 1, FLAGS},
7932     {"ignore_chapters", "", OFFSET(ignore_chapters), AV_OPT_TYPE_BOOL, {.i64 = 0},
7933         0, 1, FLAGS},
7934     {"use_mfra_for",
7935         "use mfra for fragment timestamps",
7936         OFFSET(use_mfra_for), AV_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
7937         -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
7938         "use_mfra_for"},
7939     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
7940         FLAGS, "use_mfra_for" },
7941     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
7942         FLAGS, "use_mfra_for" },
7943     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
7944         FLAGS, "use_mfra_for" },
7945     { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
7946         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7947     { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
7948         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7949     { "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
7950         AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7951     { "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
7952         "Fixed key used for handling Audible AAX files", OFFSET(audible_fixed_key),
7953         AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd20a51d67"},
7954         .flags = AV_OPT_FLAG_DECODING_PARAM },
7955     { "decryption_key", "The media decryption key (hex)", OFFSET(decryption_key), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7956     { "enable_drefs", "Enable external track support.", OFFSET(enable_drefs), AV_OPT_TYPE_BOOL,
7957         {.i64 = 0}, 0, 1, FLAGS },
7958
7959     { NULL },
7960 };
7961
7962 static const AVClass mov_class = {
7963     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
7964     .item_name  = av_default_item_name,
7965     .option     = mov_options,
7966     .version    = LIBAVUTIL_VERSION_INT,
7967 };
7968
7969 AVInputFormat ff_mov_demuxer = {
7970     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
7971     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
7972     .priv_class     = &mov_class,
7973     .priv_data_size = sizeof(MOVContext),
7974     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
7975     .read_probe     = mov_probe,
7976     .read_header    = mov_read_header,
7977     .read_packet    = mov_read_packet,
7978     .read_close     = mov_read_close,
7979     .read_seek      = mov_read_seek,
7980     .flags          = AVFMT_NO_BYTE_SEEK,
7981 };