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