]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
lavf/mov.c: Guess video codec delay based on PTS while parsing MOV header.
[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;
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_free(sc->stts_data);
2852     sc->stts_count = 0;
2853     sc->stts_data = av_malloc_array(entries, sizeof(*sc->stts_data));
2854     if (!sc->stts_data)
2855         return AVERROR(ENOMEM);
2856
2857     for (i = 0; i < entries && !pb->eof_reached; i++) {
2858         int sample_duration;
2859         unsigned int sample_count;
2860
2861         sample_count=avio_rb32(pb);
2862         sample_duration = avio_rb32(pb);
2863
2864         sc->stts_data[i].count= sample_count;
2865         sc->stts_data[i].duration= sample_duration;
2866
2867         av_log(c->fc, AV_LOG_TRACE, "sample_count=%d, sample_duration=%d\n",
2868                 sample_count, sample_duration);
2869
2870         if (   i+1 == entries
2871             && i
2872             && sample_count == 1
2873             && total_sample_count > 100
2874             && sample_duration/10 > duration / total_sample_count)
2875             sample_duration = duration / total_sample_count;
2876         duration+=(int64_t)sample_duration*sample_count;
2877         total_sample_count+=sample_count;
2878     }
2879
2880     sc->stts_count = i;
2881
2882     sc->duration_for_fps  += duration;
2883     sc->nb_frames_for_fps += total_sample_count;
2884
2885     if (pb->eof_reached) {
2886         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STTS atom\n");
2887         return AVERROR_EOF;
2888     }
2889
2890     st->nb_frames= total_sample_count;
2891     if (duration)
2892         st->duration= duration;
2893     sc->track_end = duration;
2894     return 0;
2895 }
2896
2897 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2898 {
2899     if (duration < 0) {
2900         if (duration == INT_MIN) {
2901             av_log(NULL, AV_LOG_WARNING, "mov_update_dts_shift(): dts_shift set to %d\n", INT_MAX);
2902             duration++;
2903         }
2904         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2905     }
2906 }
2907
2908 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2909 {
2910     AVStream *st;
2911     MOVStreamContext *sc;
2912     unsigned int i, entries, ctts_count = 0;
2913
2914     if (c->fc->nb_streams < 1)
2915         return 0;
2916     st = c->fc->streams[c->fc->nb_streams-1];
2917     sc = st->priv_data;
2918
2919     avio_r8(pb); /* version */
2920     avio_rb24(pb); /* flags */
2921     entries = avio_rb32(pb);
2922
2923     av_log(c->fc, AV_LOG_TRACE, "track[%u].ctts.entries = %u\n", c->fc->nb_streams - 1, entries);
2924
2925     if (!entries)
2926         return 0;
2927     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2928         return AVERROR_INVALIDDATA;
2929     av_freep(&sc->ctts_data);
2930     sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size, entries * sizeof(*sc->ctts_data));
2931     if (!sc->ctts_data)
2932         return AVERROR(ENOMEM);
2933
2934     for (i = 0; i < entries && !pb->eof_reached; i++) {
2935         int count    =avio_rb32(pb);
2936         int duration =avio_rb32(pb);
2937
2938         if (count <= 0) {
2939             av_log(c->fc, AV_LOG_TRACE,
2940                    "ignoring CTTS entry with count=%d duration=%d\n",
2941                    count, duration);
2942             continue;
2943         }
2944
2945         add_ctts_entry(&sc->ctts_data, &ctts_count, &sc->ctts_allocated_size,
2946                        count, duration);
2947
2948         av_log(c->fc, AV_LOG_TRACE, "count=%d, duration=%d\n",
2949                 count, duration);
2950
2951         if (FFNABS(duration) < -(1<<28) && i+2<entries) {
2952             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2953             av_freep(&sc->ctts_data);
2954             sc->ctts_count = 0;
2955             return 0;
2956         }
2957
2958         if (i+2<entries)
2959             mov_update_dts_shift(sc, duration);
2960     }
2961
2962     sc->ctts_count = ctts_count;
2963
2964     if (pb->eof_reached) {
2965         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted CTTS atom\n");
2966         return AVERROR_EOF;
2967     }
2968
2969     av_log(c->fc, AV_LOG_TRACE, "dts shift %d\n", sc->dts_shift);
2970
2971     return 0;
2972 }
2973
2974 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2975 {
2976     AVStream *st;
2977     MOVStreamContext *sc;
2978     unsigned int i, entries;
2979     uint8_t version;
2980     uint32_t grouping_type;
2981
2982     if (c->fc->nb_streams < 1)
2983         return 0;
2984     st = c->fc->streams[c->fc->nb_streams-1];
2985     sc = st->priv_data;
2986
2987     version = avio_r8(pb); /* version */
2988     avio_rb24(pb); /* flags */
2989     grouping_type = avio_rl32(pb);
2990     if (grouping_type != MKTAG( 'r','a','p',' '))
2991         return 0; /* only support 'rap ' grouping */
2992     if (version == 1)
2993         avio_rb32(pb); /* grouping_type_parameter */
2994
2995     entries = avio_rb32(pb);
2996     if (!entries)
2997         return 0;
2998     if (sc->rap_group)
2999         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
3000     av_free(sc->rap_group);
3001     sc->rap_group_count = 0;
3002     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
3003     if (!sc->rap_group)
3004         return AVERROR(ENOMEM);
3005
3006     for (i = 0; i < entries && !pb->eof_reached; i++) {
3007         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
3008         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
3009     }
3010
3011     sc->rap_group_count = i;
3012
3013     if (pb->eof_reached) {
3014         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted SBGP atom\n");
3015         return AVERROR_EOF;
3016     }
3017
3018     return 0;
3019 }
3020
3021 /**
3022  * Get ith edit list entry (media time, duration).
3023  */
3024 static int get_edit_list_entry(MOVContext *mov,
3025                                const MOVStreamContext *msc,
3026                                unsigned int edit_list_index,
3027                                int64_t *edit_list_media_time,
3028                                int64_t *edit_list_duration,
3029                                int64_t global_timescale)
3030 {
3031     if (edit_list_index == msc->elst_count) {
3032         return 0;
3033     }
3034     *edit_list_media_time = msc->elst_data[edit_list_index].time;
3035     *edit_list_duration = msc->elst_data[edit_list_index].duration;
3036
3037     /* duration is in global timescale units;convert to msc timescale */
3038     if (global_timescale == 0) {
3039       avpriv_request_sample(mov->fc, "Support for mvhd.timescale = 0 with editlists");
3040       return 0;
3041     }
3042     *edit_list_duration = av_rescale(*edit_list_duration, msc->time_scale,
3043                                      global_timescale);
3044     return 1;
3045 }
3046
3047 /**
3048  * Find the closest previous frame to the timestamp_pts, in e_old index
3049  * entries. Searching for just any frame / just key frames can be controlled by
3050  * last argument 'flag'.
3051  * Note that if ctts_data is not NULL, we will always search for a key frame
3052  * irrespective of the value of 'flag'. If we don't find any keyframe, we will
3053  * return the first frame of the video.
3054  *
3055  * Here the timestamp_pts is considered to be a presentation timestamp and
3056  * the timestamp of index entries are considered to be decoding timestamps.
3057  *
3058  * Returns 0 if successful in finding a frame, else returns -1.
3059  * Places the found index corresponding output arg.
3060  *
3061  * If ctts_old is not NULL, then refines the searched entry by searching
3062  * backwards from the found timestamp, to find the frame with correct PTS.
3063  *
3064  * Places the found ctts_index and ctts_sample in corresponding output args.
3065  */
3066 static int find_prev_closest_index(AVStream *st,
3067                                    AVIndexEntry *e_old,
3068                                    int nb_old,
3069                                    MOVStts* ctts_data,
3070                                    int64_t ctts_count,
3071                                    int64_t timestamp_pts,
3072                                    int flag,
3073                                    int64_t* index,
3074                                    int64_t* ctts_index,
3075                                    int64_t* ctts_sample)
3076 {
3077     MOVStreamContext *msc = st->priv_data;
3078     AVIndexEntry *e_keep = st->index_entries;
3079     int nb_keep = st->nb_index_entries;
3080     int64_t i = 0;
3081     int64_t index_ctts_count;
3082
3083     av_assert0(index);
3084
3085     // If dts_shift > 0, then all the index timestamps will have to be offset by
3086     // at least dts_shift amount to obtain PTS.
3087     // Hence we decrement the searched timestamp_pts by dts_shift to find the closest index element.
3088     if (msc->dts_shift > 0) {
3089         timestamp_pts -= msc->dts_shift;
3090     }
3091
3092     st->index_entries = e_old;
3093     st->nb_index_entries = nb_old;
3094     *index = av_index_search_timestamp(st, timestamp_pts, flag | AVSEEK_FLAG_BACKWARD);
3095
3096     // Keep going backwards in the index entries until the timestamp is the same.
3097     if (*index >= 0) {
3098         for (i = *index; i > 0 && e_old[i].timestamp == e_old[i - 1].timestamp;
3099              i--) {
3100             if ((flag & AVSEEK_FLAG_ANY) ||
3101                 (e_old[i - 1].flags & AVINDEX_KEYFRAME)) {
3102                 *index = i - 1;
3103             }
3104         }
3105     }
3106
3107     // If we have CTTS then refine the search, by searching backwards over PTS
3108     // computed by adding corresponding CTTS durations to index timestamps.
3109     if (ctts_data && *index >= 0) {
3110         av_assert0(ctts_index);
3111         av_assert0(ctts_sample);
3112         // Find out the ctts_index for the found frame.
3113         *ctts_index = 0;
3114         *ctts_sample = 0;
3115         for (index_ctts_count = 0; index_ctts_count < *index; index_ctts_count++) {
3116             if (*ctts_index < ctts_count) {
3117                 (*ctts_sample)++;
3118                 if (ctts_data[*ctts_index].count == *ctts_sample) {
3119                     (*ctts_index)++;
3120                     *ctts_sample = 0;
3121                 }
3122             }
3123         }
3124
3125         while (*index >= 0 && (*ctts_index) >= 0) {
3126             // Find a "key frame" with PTS <= timestamp_pts (So that we can decode B-frames correctly).
3127             // No need to add dts_shift to the timestamp here becase timestamp_pts has already been
3128             // compensated by dts_shift above.
3129             if ((e_old[*index].timestamp + ctts_data[*ctts_index].duration) <= timestamp_pts &&
3130                 (e_old[*index].flags & AVINDEX_KEYFRAME)) {
3131                 break;
3132             }
3133
3134             (*index)--;
3135             if (*ctts_sample == 0) {
3136                 (*ctts_index)--;
3137                 if (*ctts_index >= 0)
3138                   *ctts_sample = ctts_data[*ctts_index].count - 1;
3139             } else {
3140                 (*ctts_sample)--;
3141             }
3142         }
3143     }
3144
3145     /* restore AVStream state*/
3146     st->index_entries = e_keep;
3147     st->nb_index_entries = nb_keep;
3148     return *index >= 0 ? 0 : -1;
3149 }
3150
3151 /**
3152  * Add index entry with the given values, to the end of st->index_entries.
3153  * Returns the new size st->index_entries if successful, else returns -1.
3154  *
3155  * This function is similar to ff_add_index_entry in libavformat/utils.c
3156  * except that here we are always unconditionally adding an index entry to
3157  * the end, instead of searching the entries list and skipping the add if
3158  * there is an existing entry with the same timestamp.
3159  * This is needed because the mov_fix_index calls this func with the same
3160  * unincremented timestamp for successive discarded frames.
3161  */
3162 static int64_t add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
3163                                int size, int distance, int flags)
3164 {
3165     AVIndexEntry *entries, *ie;
3166     int64_t index = -1;
3167     const size_t min_size_needed = (st->nb_index_entries + 1) * sizeof(AVIndexEntry);
3168
3169     // Double the allocation each time, to lower memory fragmentation.
3170     // Another difference from ff_add_index_entry function.
3171     const size_t requested_size =
3172         min_size_needed > st->index_entries_allocated_size ?
3173         FFMAX(min_size_needed, 2 * st->index_entries_allocated_size) :
3174         min_size_needed;
3175
3176     if((unsigned)st->nb_index_entries + 1 >= UINT_MAX / sizeof(AVIndexEntry))
3177         return -1;
3178
3179     entries = av_fast_realloc(st->index_entries,
3180                               &st->index_entries_allocated_size,
3181                               requested_size);
3182     if(!entries)
3183         return -1;
3184
3185     st->index_entries= entries;
3186
3187     index= st->nb_index_entries++;
3188     ie= &entries[index];
3189
3190     ie->pos = pos;
3191     ie->timestamp = timestamp;
3192     ie->min_distance= distance;
3193     ie->size= size;
3194     ie->flags = flags;
3195     return index;
3196 }
3197
3198 /**
3199  * Rewrite timestamps of index entries in the range [end_index - frame_duration_buffer_size, end_index)
3200  * by subtracting end_ts successively by the amounts given in frame_duration_buffer.
3201  */
3202 static void fix_index_entry_timestamps(AVStream* st, int end_index, int64_t end_ts,
3203                                        int64_t* frame_duration_buffer,
3204                                        int frame_duration_buffer_size) {
3205     int i = 0;
3206     av_assert0(end_index >= 0 && end_index <= st->nb_index_entries);
3207     for (i = 0; i < frame_duration_buffer_size; i++) {
3208         end_ts -= frame_duration_buffer[frame_duration_buffer_size - 1 - i];
3209         st->index_entries[end_index - 1 - i].timestamp = end_ts;
3210     }
3211 }
3212
3213 /**
3214  * Append a new ctts entry to ctts_data.
3215  * Returns the new ctts_count if successful, else returns -1.
3216  */
3217 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
3218                               int count, int duration)
3219 {
3220     MOVStts *ctts_buf_new;
3221     const size_t min_size_needed = (*ctts_count + 1) * sizeof(MOVStts);
3222     const size_t requested_size =
3223         min_size_needed > *allocated_size ?
3224         FFMAX(min_size_needed, 2 * (*allocated_size)) :
3225         min_size_needed;
3226
3227     if((unsigned)(*ctts_count) + 1 >= UINT_MAX / sizeof(MOVStts))
3228         return -1;
3229
3230     ctts_buf_new = av_fast_realloc(*ctts_data, allocated_size, requested_size);
3231
3232     if(!ctts_buf_new)
3233         return -1;
3234
3235     *ctts_data = ctts_buf_new;
3236
3237     ctts_buf_new[*ctts_count].count = count;
3238     ctts_buf_new[*ctts_count].duration = duration;
3239
3240     *ctts_count = (*ctts_count) + 1;
3241     return *ctts_count;
3242 }
3243
3244 #define MAX_REORDER_DELAY 16
3245 static void mov_estimate_video_delay(MOVContext *c, AVStream* st) {
3246     MOVStreamContext *msc = st->priv_data;
3247     int ind;
3248     int ctts_ind = 0;
3249     int ctts_sample = 0;
3250     int64_t pts_buf[MAX_REORDER_DELAY + 1]; // Circular buffer to sort pts.
3251     int buf_start = 0;
3252     int buf_size = 0;
3253     int j, r, num_swaps;
3254
3255     if (st->codecpar->video_delay <= 0 && msc->ctts_data &&
3256         st->codecpar->codec_id == AV_CODEC_ID_H264) {
3257         st->codecpar->video_delay = 0;
3258         for(ind = 0; ind < st->nb_index_entries && ctts_ind < msc->ctts_count; ++ind) {
3259             if (buf_size == (MAX_REORDER_DELAY + 1)) {
3260                 // If circular buffer is full, then move the first element forward.
3261                 buf_start = (buf_start + 1) % buf_size;
3262             } else {
3263                 ++buf_size;
3264             }
3265
3266             // Point j to the last elem of the buffer and insert the current pts there.
3267             j = (buf_start + buf_size - 1) % buf_size;
3268             pts_buf[j] = st->index_entries[ind].timestamp + msc->ctts_data[ctts_ind].duration;
3269
3270             // The timestamps that are already in the sorted buffer, and are greater than the
3271             // current pts, are exactly the timestamps that need to be buffered to output PTS
3272             // in correct sorted order.
3273             // Hence the video delay (which is the buffer size used to sort DTS and output PTS),
3274             // can be computed as the maximum no. of swaps any particular timestamp needs to
3275             // go through, to keep this buffer in sorted order.
3276             num_swaps = 0;
3277             while (j != buf_start) {
3278                 r = (j - 1 + buf_size) % buf_size;
3279                 if (pts_buf[j] < pts_buf[r]) {
3280                     FFSWAP(int64_t, pts_buf[j], pts_buf[r]);
3281                     ++num_swaps;
3282                 }
3283                 j = r;
3284             }
3285             st->codecpar->video_delay = FFMAX(st->codecpar->video_delay, num_swaps);
3286
3287             ctts_sample++;
3288             if (ctts_sample == msc->ctts_data[ctts_ind].count) {
3289                 ctts_ind++;
3290                 ctts_sample = 0;
3291             }
3292         }
3293         av_log(c->fc, AV_LOG_DEBUG, "Setting codecpar->delay to %d for stream st: %d\n",
3294                st->codecpar->video_delay, st->index);
3295     }
3296 }
3297
3298 static void mov_current_sample_inc(MOVStreamContext *sc)
3299 {
3300     sc->current_sample++;
3301     sc->current_index++;
3302     if (sc->index_ranges &&
3303         sc->current_index >= sc->current_index_range->end &&
3304         sc->current_index_range->end) {
3305         sc->current_index_range++;
3306         sc->current_index = sc->current_index_range->start;
3307     }
3308 }
3309
3310 static void mov_current_sample_dec(MOVStreamContext *sc)
3311 {
3312     sc->current_sample--;
3313     sc->current_index--;
3314     if (sc->index_ranges &&
3315         sc->current_index < sc->current_index_range->start &&
3316         sc->current_index_range > sc->index_ranges) {
3317         sc->current_index_range--;
3318         sc->current_index = sc->current_index_range->end - 1;
3319     }
3320 }
3321
3322 static void mov_current_sample_set(MOVStreamContext *sc, int current_sample)
3323 {
3324     int64_t range_size;
3325
3326     sc->current_sample = current_sample;
3327     sc->current_index = current_sample;
3328     if (!sc->index_ranges) {
3329         return;
3330     }
3331
3332     for (sc->current_index_range = sc->index_ranges;
3333         sc->current_index_range->end;
3334         sc->current_index_range++) {
3335         range_size = sc->current_index_range->end - sc->current_index_range->start;
3336         if (range_size > current_sample) {
3337             sc->current_index = sc->current_index_range->start + current_sample;
3338             break;
3339         }
3340         current_sample -= range_size;
3341     }
3342 }
3343
3344 /**
3345  * Fix st->index_entries, so that it contains only the entries (and the entries
3346  * which are needed to decode them) that fall in the edit list time ranges.
3347  * Also fixes the timestamps of the index entries to match the timeline
3348  * specified the edit lists.
3349  */
3350 static void mov_fix_index(MOVContext *mov, AVStream *st)
3351 {
3352     MOVStreamContext *msc = st->priv_data;
3353     AVIndexEntry *e_old = st->index_entries;
3354     int nb_old = st->nb_index_entries;
3355     const AVIndexEntry *e_old_end = e_old + nb_old;
3356     const AVIndexEntry *current = NULL;
3357     MOVStts *ctts_data_old = msc->ctts_data;
3358     int64_t ctts_index_old = 0;
3359     int64_t ctts_sample_old = 0;
3360     int64_t ctts_count_old = msc->ctts_count;
3361     int64_t edit_list_media_time = 0;
3362     int64_t edit_list_duration = 0;
3363     int64_t frame_duration = 0;
3364     int64_t edit_list_dts_counter = 0;
3365     int64_t edit_list_dts_entry_end = 0;
3366     int64_t edit_list_start_ctts_sample = 0;
3367     int64_t curr_cts;
3368     int64_t curr_ctts = 0;
3369     int64_t min_corrected_pts = -1;
3370     int64_t empty_edits_sum_duration = 0;
3371     int64_t edit_list_index = 0;
3372     int64_t index;
3373     int flags;
3374     int64_t start_dts = 0;
3375     int64_t edit_list_start_encountered = 0;
3376     int64_t search_timestamp = 0;
3377     int64_t* frame_duration_buffer = NULL;
3378     int num_discarded_begin = 0;
3379     int first_non_zero_audio_edit = -1;
3380     int packet_skip_samples = 0;
3381     MOVIndexRange *current_index_range;
3382     int i;
3383     int found_keyframe_after_edit = 0;
3384
3385     if (!msc->elst_data || msc->elst_count <= 0 || nb_old <= 0) {
3386         return;
3387     }
3388
3389     // allocate the index ranges array
3390     msc->index_ranges = av_malloc((msc->elst_count + 1) * sizeof(msc->index_ranges[0]));
3391     if (!msc->index_ranges) {
3392         av_log(mov->fc, AV_LOG_ERROR, "Cannot allocate index ranges buffer\n");
3393         return;
3394     }
3395     msc->current_index_range = msc->index_ranges;
3396     current_index_range = msc->index_ranges - 1;
3397
3398     // Clean AVStream from traces of old index
3399     st->index_entries = NULL;
3400     st->index_entries_allocated_size = 0;
3401     st->nb_index_entries = 0;
3402
3403     // Clean ctts fields of MOVStreamContext
3404     msc->ctts_data = NULL;
3405     msc->ctts_count = 0;
3406     msc->ctts_index = 0;
3407     msc->ctts_sample = 0;
3408     msc->ctts_allocated_size = 0;
3409
3410     // If the dts_shift is positive (in case of negative ctts values in mov),
3411     // then negate the DTS by dts_shift
3412     if (msc->dts_shift > 0) {
3413         edit_list_dts_entry_end -= msc->dts_shift;
3414         av_log(mov->fc, AV_LOG_DEBUG, "Shifting DTS by %d because of negative CTTS.\n", msc->dts_shift);
3415     }
3416
3417     start_dts = edit_list_dts_entry_end;
3418
3419     while (get_edit_list_entry(mov, msc, edit_list_index, &edit_list_media_time,
3420                                &edit_list_duration, mov->time_scale)) {
3421         av_log(mov->fc, AV_LOG_DEBUG, "Processing st: %d, edit list %"PRId64" - media time: %"PRId64", duration: %"PRId64"\n",
3422                st->index, edit_list_index, edit_list_media_time, edit_list_duration);
3423         edit_list_index++;
3424         edit_list_dts_counter = edit_list_dts_entry_end;
3425         edit_list_dts_entry_end += edit_list_duration;
3426         num_discarded_begin = 0;
3427         if (edit_list_media_time == -1) {
3428             empty_edits_sum_duration += edit_list_duration;
3429             continue;
3430         }
3431
3432         // If we encounter a non-negative edit list reset the skip_samples/start_pad fields and set them
3433         // according to the edit list below.
3434         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3435             if (first_non_zero_audio_edit < 0) {
3436                 first_non_zero_audio_edit = 1;
3437             } else {
3438                 first_non_zero_audio_edit = 0;
3439             }
3440
3441             if (first_non_zero_audio_edit > 0)
3442                 st->skip_samples = msc->start_pad = 0;
3443         }
3444
3445         // While reordering frame index according to edit list we must handle properly
3446         // the scenario when edit list entry starts from none key frame.
3447         // We find closest previous key frame and preserve it and consequent frames in index.
3448         // All frames which are outside edit list entry time boundaries will be dropped after decoding.
3449         search_timestamp = edit_list_media_time;
3450         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3451             // Audio decoders like AAC need need a decoder delay samples previous to the current sample,
3452             // to correctly decode this frame. Hence for audio we seek to a frame 1 sec. before the
3453             // edit_list_media_time to cover the decoder delay.
3454             search_timestamp = FFMAX(search_timestamp - msc->time_scale, e_old[0].timestamp);
3455         }
3456
3457         if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, 0,
3458                                     &index, &ctts_index_old, &ctts_sample_old) < 0) {
3459             av_log(mov->fc, AV_LOG_WARNING,
3460                    "st: %d edit list: %"PRId64" Missing key frame while searching for timestamp: %"PRId64"\n",
3461                    st->index, edit_list_index, search_timestamp);
3462             if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, AVSEEK_FLAG_ANY,
3463                                         &index, &ctts_index_old, &ctts_sample_old) < 0) {
3464                 av_log(mov->fc, AV_LOG_WARNING,
3465                        "st: %d edit list %"PRId64" Cannot find an index entry before timestamp: %"PRId64".\n",
3466                        st->index, edit_list_index, search_timestamp);
3467                 index = 0;
3468                 ctts_index_old = 0;
3469                 ctts_sample_old = 0;
3470             }
3471         }
3472         current = e_old + index;
3473         edit_list_start_ctts_sample = ctts_sample_old;
3474
3475         // Iterate over index and arrange it according to edit list
3476         edit_list_start_encountered = 0;
3477         found_keyframe_after_edit = 0;
3478         for (; current < e_old_end; current++, index++) {
3479             // check  if frame outside edit list mark it for discard
3480             frame_duration = (current + 1 <  e_old_end) ?
3481                              ((current + 1)->timestamp - current->timestamp) : edit_list_duration;
3482
3483             flags = current->flags;
3484
3485             // frames (pts) before or after edit list
3486             curr_cts = current->timestamp + msc->dts_shift;
3487             curr_ctts = 0;
3488
3489             if (ctts_data_old && ctts_index_old < ctts_count_old) {
3490                 curr_ctts = ctts_data_old[ctts_index_old].duration;
3491                 av_log(mov->fc, AV_LOG_DEBUG, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
3492                        curr_cts, curr_ctts, ctts_index_old, ctts_count_old);
3493                 curr_cts += curr_ctts;
3494                 ctts_sample_old++;
3495                 if (ctts_sample_old == ctts_data_old[ctts_index_old].count) {
3496                     if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3497                                        &msc->ctts_allocated_size,
3498                                        ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3499                                        ctts_data_old[ctts_index_old].duration) == -1) {
3500                         av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3501                                ctts_index_old,
3502                                ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3503                                ctts_data_old[ctts_index_old].duration);
3504                         break;
3505                     }
3506                     ctts_index_old++;
3507                     ctts_sample_old = 0;
3508                     edit_list_start_ctts_sample = 0;
3509                 }
3510             }
3511
3512             if (curr_cts < edit_list_media_time || curr_cts >= (edit_list_duration + edit_list_media_time)) {
3513                 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id != AV_CODEC_ID_VORBIS &&
3514                     curr_cts < edit_list_media_time && curr_cts + frame_duration > edit_list_media_time &&
3515                     first_non_zero_audio_edit > 0) {
3516                     packet_skip_samples = edit_list_media_time - curr_cts;
3517                     st->skip_samples += packet_skip_samples;
3518
3519                     // Shift the index entry timestamp by packet_skip_samples to be correct.
3520                     edit_list_dts_counter -= packet_skip_samples;
3521                     if (edit_list_start_encountered == 0)  {
3522                         edit_list_start_encountered = 1;
3523                         // Make timestamps strictly monotonically increasing for audio, by rewriting timestamps for
3524                         // discarded packets.
3525                         if (frame_duration_buffer) {
3526                             fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3527                                                        frame_duration_buffer, num_discarded_begin);
3528                             av_freep(&frame_duration_buffer);
3529                         }
3530                     }
3531
3532                     av_log(mov->fc, AV_LOG_DEBUG, "skip %d audio samples from curr_cts: %"PRId64"\n", packet_skip_samples, curr_cts);
3533                 } else {
3534                     flags |= AVINDEX_DISCARD_FRAME;
3535                     av_log(mov->fc, AV_LOG_DEBUG, "drop a frame at curr_cts: %"PRId64" @ %"PRId64"\n", curr_cts, index);
3536
3537                     if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && edit_list_start_encountered == 0) {
3538                         num_discarded_begin++;
3539                         frame_duration_buffer = av_realloc(frame_duration_buffer,
3540                                                            num_discarded_begin * sizeof(int64_t));
3541                         if (!frame_duration_buffer) {
3542                             av_log(mov->fc, AV_LOG_ERROR, "Cannot reallocate frame duration buffer\n");
3543                             break;
3544                         }
3545                         frame_duration_buffer[num_discarded_begin - 1] = frame_duration;
3546
3547                         // Increment skip_samples for the first non-zero audio edit list
3548                         if (first_non_zero_audio_edit > 0 && st->codecpar->codec_id != AV_CODEC_ID_VORBIS) {
3549                             st->skip_samples += frame_duration;
3550                         }
3551                     }
3552                 }
3553             } else {
3554                 if (min_corrected_pts < 0) {
3555                     min_corrected_pts = edit_list_dts_counter + curr_ctts + msc->dts_shift;
3556                 } else {
3557                     min_corrected_pts = FFMIN(min_corrected_pts, edit_list_dts_counter + curr_ctts + msc->dts_shift);
3558                 }
3559                 if (edit_list_start_encountered == 0) {
3560                     edit_list_start_encountered = 1;
3561                     // Make timestamps strictly monotonically increasing for audio, by rewriting timestamps for
3562                     // discarded packets.
3563                     if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && frame_duration_buffer) {
3564                         fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3565                                                    frame_duration_buffer, num_discarded_begin);
3566                         av_freep(&frame_duration_buffer);
3567                     }
3568                 }
3569             }
3570
3571             if (add_index_entry(st, current->pos, edit_list_dts_counter, current->size,
3572                                 current->min_distance, flags) == -1) {
3573                 av_log(mov->fc, AV_LOG_ERROR, "Cannot add index entry\n");
3574                 break;
3575             }
3576
3577             // Update the index ranges array
3578             if (current_index_range < msc->index_ranges || index != current_index_range->end) {
3579                 current_index_range++;
3580                 current_index_range->start = index;
3581             }
3582             current_index_range->end = index + 1;
3583
3584             // Only start incrementing DTS in frame_duration amounts, when we encounter a frame in edit list.
3585             if (edit_list_start_encountered > 0) {
3586                 edit_list_dts_counter = edit_list_dts_counter + frame_duration;
3587             }
3588
3589             // Break when found first key frame after edit entry completion
3590             if ((curr_cts + frame_duration >= (edit_list_duration + edit_list_media_time)) &&
3591                 ((flags & AVINDEX_KEYFRAME) || ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)))) {
3592                 if (ctts_data_old) {
3593                     // If we have CTTS and this is the first keyframe after edit elist,
3594                     // wait for one more, because there might be trailing B-frames after this I-frame
3595                     // that do belong to the edit.
3596                     if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO && found_keyframe_after_edit == 0) {
3597                         found_keyframe_after_edit = 1;
3598                         continue;
3599                     }
3600                     if (ctts_sample_old != 0) {
3601                         if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3602                                            &msc->ctts_allocated_size,
3603                                            ctts_sample_old - edit_list_start_ctts_sample,
3604                                            ctts_data_old[ctts_index_old].duration) == -1) {
3605                             av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3606                                    ctts_index_old, ctts_sample_old - edit_list_start_ctts_sample,
3607                                    ctts_data_old[ctts_index_old].duration);
3608                             break;
3609                         }
3610                     }
3611                 }
3612                 break;
3613             }
3614         }
3615     }
3616     // If there are empty edits, then min_corrected_pts might be positive intentionally. So we subtract the
3617     // sum duration of emtpy edits here.
3618     min_corrected_pts -= empty_edits_sum_duration;
3619
3620     // If the minimum pts turns out to be greater than zero after fixing the index, then we subtract the
3621     // dts by that amount to make the first pts zero.
3622     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && min_corrected_pts > 0) {
3623         av_log(mov->fc, AV_LOG_DEBUG, "Offset DTS by %"PRId64" to make first pts zero.\n", min_corrected_pts);
3624         for (i = 0; i < st->nb_index_entries; ++i) {
3625             st->index_entries[i].timestamp -= min_corrected_pts;
3626         }
3627     }
3628
3629     // Update av stream length
3630     st->duration = edit_list_dts_entry_end - start_dts;
3631     msc->start_pad = st->skip_samples;
3632
3633     // Free the old index and the old CTTS structures
3634     av_free(e_old);
3635     av_free(ctts_data_old);
3636     av_freep(&frame_duration_buffer);
3637
3638     // Null terminate the index ranges array
3639     current_index_range++;
3640     current_index_range->start = 0;
3641     current_index_range->end = 0;
3642     msc->current_index = msc->index_ranges[0].start;
3643 }
3644
3645 static void mov_build_index(MOVContext *mov, AVStream *st)
3646 {
3647     MOVStreamContext *sc = st->priv_data;
3648     int64_t current_offset;
3649     int64_t current_dts = 0;
3650     unsigned int stts_index = 0;
3651     unsigned int stsc_index = 0;
3652     unsigned int stss_index = 0;
3653     unsigned int stps_index = 0;
3654     unsigned int i, j;
3655     uint64_t stream_size = 0;
3656     MOVStts *ctts_data_old = sc->ctts_data;
3657     unsigned int ctts_count_old = sc->ctts_count;
3658
3659     if (sc->elst_count) {
3660         int i, edit_start_index = 0, multiple_edits = 0;
3661         int64_t empty_duration = 0; // empty duration of the first edit list entry
3662         int64_t start_time = 0; // start time of the media
3663
3664         for (i = 0; i < sc->elst_count; i++) {
3665             const MOVElst *e = &sc->elst_data[i];
3666             if (i == 0 && e->time == -1) {
3667                 /* if empty, the first entry is the start time of the stream
3668                  * relative to the presentation itself */
3669                 empty_duration = e->duration;
3670                 edit_start_index = 1;
3671             } else if (i == edit_start_index && e->time >= 0) {
3672                 start_time = e->time;
3673             } else {
3674                 multiple_edits = 1;
3675             }
3676         }
3677
3678         if (multiple_edits && !mov->advanced_editlist)
3679             av_log(mov->fc, AV_LOG_WARNING, "multiple edit list entries, "
3680                    "Use -advanced_editlist to correctly decode otherwise "
3681                    "a/v desync might occur\n");
3682
3683         /* adjust first dts according to edit list */
3684         if ((empty_duration || start_time) && mov->time_scale > 0) {
3685             if (empty_duration)
3686                 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
3687             sc->time_offset = start_time - empty_duration;
3688             if (!mov->advanced_editlist)
3689                 current_dts = -sc->time_offset;
3690         }
3691
3692         if (!multiple_edits && !mov->advanced_editlist &&
3693             st->codecpar->codec_id == AV_CODEC_ID_AAC && start_time > 0)
3694             sc->start_pad = start_time;
3695     }
3696
3697     /* only use old uncompressed audio chunk demuxing when stts specifies it */
3698     if (!(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
3699           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
3700         unsigned int current_sample = 0;
3701         unsigned int stts_sample = 0;
3702         unsigned int sample_size;
3703         unsigned int distance = 0;
3704         unsigned int rap_group_index = 0;
3705         unsigned int rap_group_sample = 0;
3706         int64_t last_dts = 0;
3707         int64_t dts_correction = 0;
3708         int rap_group_present = sc->rap_group_count && sc->rap_group;
3709         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
3710
3711         current_dts -= sc->dts_shift;
3712         last_dts     = current_dts;
3713
3714         if (!sc->sample_count || st->nb_index_entries)
3715             return;
3716         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3717             return;
3718         if (av_reallocp_array(&st->index_entries,
3719                               st->nb_index_entries + sc->sample_count,
3720                               sizeof(*st->index_entries)) < 0) {
3721             st->nb_index_entries = 0;
3722             return;
3723         }
3724         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
3725
3726         if (ctts_data_old) {
3727             // Expand ctts entries such that we have a 1-1 mapping with samples
3728             if (sc->sample_count >= UINT_MAX / sizeof(*sc->ctts_data))
3729                 return;
3730             sc->ctts_count = 0;
3731             sc->ctts_allocated_size = 0;
3732             sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size,
3733                                     sc->sample_count * sizeof(*sc->ctts_data));
3734             if (!sc->ctts_data) {
3735                 av_free(ctts_data_old);
3736                 return;
3737             }
3738             for (i = 0; i < ctts_count_old &&
3739                         sc->ctts_count < sc->sample_count; i++)
3740                 for (j = 0; j < ctts_data_old[i].count &&
3741                             sc->ctts_count < sc->sample_count; j++)
3742                     add_ctts_entry(&sc->ctts_data, &sc->ctts_count,
3743                                    &sc->ctts_allocated_size, 1,
3744                                    ctts_data_old[i].duration);
3745             av_free(ctts_data_old);
3746         }
3747
3748         for (i = 0; i < sc->chunk_count; i++) {
3749             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
3750             current_offset = sc->chunk_offsets[i];
3751             while (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3752                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3753                 stsc_index++;
3754
3755             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
3756                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
3757                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
3758                 sc->stsz_sample_size = sc->sample_size;
3759             }
3760             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
3761                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
3762                 sc->stsz_sample_size = sc->sample_size;
3763             }
3764
3765             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
3766                 int keyframe = 0;
3767                 if (current_sample >= sc->sample_count) {
3768                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
3769                     return;
3770                 }
3771
3772                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
3773                     keyframe = 1;
3774                     if (stss_index + 1 < sc->keyframe_count)
3775                         stss_index++;
3776                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
3777                     keyframe = 1;
3778                     if (stps_index + 1 < sc->stps_count)
3779                         stps_index++;
3780                 }
3781                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
3782                     if (sc->rap_group[rap_group_index].index > 0)
3783                         keyframe = 1;
3784                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
3785                         rap_group_sample = 0;
3786                         rap_group_index++;
3787                     }
3788                 }
3789                 if (sc->keyframe_absent
3790                     && !sc->stps_count
3791                     && !rap_group_present
3792                     && (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
3793                      keyframe = 1;
3794                 if (keyframe)
3795                     distance = 0;
3796                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
3797                 if (sc->pseudo_stream_id == -1 ||
3798                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
3799                     AVIndexEntry *e;
3800                     if (sample_size > 0x3FFFFFFF) {
3801                         av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", sample_size);
3802                         return;
3803                     }
3804                     e = &st->index_entries[st->nb_index_entries++];
3805                     e->pos = current_offset;
3806                     e->timestamp = current_dts;
3807                     e->size = sample_size;
3808                     e->min_distance = distance;
3809                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
3810                     av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %u, offset %"PRIx64", dts %"PRId64", "
3811                             "size %u, distance %u, keyframe %d\n", st->index, current_sample,
3812                             current_offset, current_dts, sample_size, distance, keyframe);
3813                     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
3814                         ff_rfps_add_frame(mov->fc, st, current_dts);
3815                 }
3816
3817                 current_offset += sample_size;
3818                 stream_size += sample_size;
3819
3820                 /* A negative sample duration is invalid based on the spec,
3821                  * but some samples need it to correct the DTS. */
3822                 if (sc->stts_data[stts_index].duration < 0) {
3823                     av_log(mov->fc, AV_LOG_WARNING,
3824                            "Invalid SampleDelta %d in STTS, at %d st:%d\n",
3825                            sc->stts_data[stts_index].duration, stts_index,
3826                            st->index);
3827                     dts_correction += sc->stts_data[stts_index].duration - 1;
3828                     sc->stts_data[stts_index].duration = 1;
3829                 }
3830                 current_dts += sc->stts_data[stts_index].duration;
3831                 if (!dts_correction || current_dts + dts_correction > last_dts) {
3832                     current_dts += dts_correction;
3833                     dts_correction = 0;
3834                 } else {
3835                     /* Avoid creating non-monotonous DTS */
3836                     dts_correction += current_dts - last_dts - 1;
3837                     current_dts = last_dts + 1;
3838                 }
3839                 last_dts = current_dts;
3840                 distance++;
3841                 stts_sample++;
3842                 current_sample++;
3843                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
3844                     stts_sample = 0;
3845                     stts_index++;
3846                 }
3847             }
3848         }
3849         if (st->duration > 0)
3850             st->codecpar->bit_rate = stream_size*8*sc->time_scale/st->duration;
3851     } else {
3852         unsigned chunk_samples, total = 0;
3853
3854         // compute total chunk count
3855         for (i = 0; i < sc->stsc_count; i++) {
3856             unsigned count, chunk_count;
3857
3858             chunk_samples = sc->stsc_data[i].count;
3859             if (i != sc->stsc_count - 1 &&
3860                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
3861                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
3862                 return;
3863             }
3864
3865             if (sc->samples_per_frame >= 160) { // gsm
3866                 count = chunk_samples / sc->samples_per_frame;
3867             } else if (sc->samples_per_frame > 1) {
3868                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
3869                 count = (chunk_samples+samples-1) / samples;
3870             } else {
3871                 count = (chunk_samples+1023) / 1024;
3872             }
3873
3874             if (mov_stsc_index_valid(i, sc->stsc_count))
3875                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
3876             else
3877                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
3878             total += chunk_count * count;
3879         }
3880
3881         av_log(mov->fc, AV_LOG_TRACE, "chunk count %u\n", total);
3882         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3883             return;
3884         if (av_reallocp_array(&st->index_entries,
3885                               st->nb_index_entries + total,
3886                               sizeof(*st->index_entries)) < 0) {
3887             st->nb_index_entries = 0;
3888             return;
3889         }
3890         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
3891
3892         // populate index
3893         for (i = 0; i < sc->chunk_count; i++) {
3894             current_offset = sc->chunk_offsets[i];
3895             if (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3896                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3897                 stsc_index++;
3898             chunk_samples = sc->stsc_data[stsc_index].count;
3899
3900             while (chunk_samples > 0) {
3901                 AVIndexEntry *e;
3902                 unsigned size, samples;
3903
3904                 if (sc->samples_per_frame > 1 && !sc->bytes_per_frame) {
3905                     avpriv_request_sample(mov->fc,
3906                            "Zero bytes per frame, but %d samples per frame",
3907                            sc->samples_per_frame);
3908                     return;
3909                 }
3910
3911                 if (sc->samples_per_frame >= 160) { // gsm
3912                     samples = sc->samples_per_frame;
3913                     size = sc->bytes_per_frame;
3914                 } else {
3915                     if (sc->samples_per_frame > 1) {
3916                         samples = FFMIN((1024 / sc->samples_per_frame)*
3917                                         sc->samples_per_frame, chunk_samples);
3918                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
3919                     } else {
3920                         samples = FFMIN(1024, chunk_samples);
3921                         size = samples * sc->sample_size;
3922                     }
3923                 }
3924
3925                 if (st->nb_index_entries >= total) {
3926                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %u\n", total);
3927                     return;
3928                 }
3929                 if (size > 0x3FFFFFFF) {
3930                     av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", size);
3931                     return;
3932                 }
3933                 e = &st->index_entries[st->nb_index_entries++];
3934                 e->pos = current_offset;
3935                 e->timestamp = current_dts;
3936                 e->size = size;
3937                 e->min_distance = 0;
3938                 e->flags = AVINDEX_KEYFRAME;
3939                 av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, chunk %u, offset %"PRIx64", dts %"PRId64", "
3940                        "size %u, duration %u\n", st->index, i, current_offset, current_dts,
3941                        size, samples);
3942
3943                 current_offset += size;
3944                 current_dts += samples;
3945                 chunk_samples -= samples;
3946             }
3947         }
3948     }
3949
3950     if (!mov->ignore_editlist && mov->advanced_editlist) {
3951         // Fix index according to edit lists.
3952         mov_fix_index(mov, st);
3953     }
3954
3955     mov_estimate_video_delay(mov, st);
3956 }
3957
3958 static int test_same_origin(const char *src, const char *ref) {
3959     char src_proto[64];
3960     char ref_proto[64];
3961     char src_auth[256];
3962     char ref_auth[256];
3963     char src_host[256];
3964     char ref_host[256];
3965     int src_port=-1;
3966     int ref_port=-1;
3967
3968     av_url_split(src_proto, sizeof(src_proto), src_auth, sizeof(src_auth), src_host, sizeof(src_host), &src_port, NULL, 0, src);
3969     av_url_split(ref_proto, sizeof(ref_proto), ref_auth, sizeof(ref_auth), ref_host, sizeof(ref_host), &ref_port, NULL, 0, ref);
3970
3971     if (strlen(src) == 0) {
3972         return -1;
3973     } else if (strlen(src_auth) + 1 >= sizeof(src_auth) ||
3974         strlen(ref_auth) + 1 >= sizeof(ref_auth) ||
3975         strlen(src_host) + 1 >= sizeof(src_host) ||
3976         strlen(ref_host) + 1 >= sizeof(ref_host)) {
3977         return 0;
3978     } else if (strcmp(src_proto, ref_proto) ||
3979                strcmp(src_auth, ref_auth) ||
3980                strcmp(src_host, ref_host) ||
3981                src_port != ref_port) {
3982         return 0;
3983     } else
3984         return 1;
3985 }
3986
3987 static int mov_open_dref(MOVContext *c, AVIOContext **pb, const char *src, MOVDref *ref)
3988 {
3989     /* try relative path, we do not try the absolute because it can leak information about our
3990        system to an attacker */
3991     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
3992         char filename[1025];
3993         const char *src_path;
3994         int i, l;
3995
3996         /* find a source dir */
3997         src_path = strrchr(src, '/');
3998         if (src_path)
3999             src_path++;
4000         else
4001             src_path = src;
4002
4003         /* find a next level down to target */
4004         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
4005             if (ref->path[l] == '/') {
4006                 if (i == ref->nlvl_to - 1)
4007                     break;
4008                 else
4009                     i++;
4010             }
4011
4012         /* compose filename if next level down to target was found */
4013         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
4014             memcpy(filename, src, src_path - src);
4015             filename[src_path - src] = 0;
4016
4017             for (i = 1; i < ref->nlvl_from; i++)
4018                 av_strlcat(filename, "../", sizeof(filename));
4019
4020             av_strlcat(filename, ref->path + l + 1, sizeof(filename));
4021             if (!c->use_absolute_path) {
4022                 int same_origin = test_same_origin(src, filename);
4023
4024                 if (!same_origin) {
4025                     av_log(c->fc, AV_LOG_ERROR,
4026                         "Reference with mismatching origin, %s not tried for security reasons, "
4027                         "set demuxer option use_absolute_path to allow it anyway\n",
4028                         ref->path);
4029                     return AVERROR(ENOENT);
4030                 }
4031
4032                 if(strstr(ref->path + l + 1, "..") ||
4033                    strstr(ref->path + l + 1, ":") ||
4034                    (ref->nlvl_from > 1 && same_origin < 0) ||
4035                    (filename[0] == '/' && src_path == src))
4036                     return AVERROR(ENOENT);
4037             }
4038
4039             if (strlen(filename) + 1 == sizeof(filename))
4040                 return AVERROR(ENOENT);
4041             if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, NULL))
4042                 return 0;
4043         }
4044     } else if (c->use_absolute_path) {
4045         av_log(c->fc, AV_LOG_WARNING, "Using absolute path on user request, "
4046                "this is a possible security issue\n");
4047         if (!c->fc->io_open(c->fc, pb, ref->path, AVIO_FLAG_READ, NULL))
4048             return 0;
4049     } else {
4050         av_log(c->fc, AV_LOG_ERROR,
4051                "Absolute path %s not tried for security reasons, "
4052                "set demuxer option use_absolute_path to allow absolute paths\n",
4053                ref->path);
4054     }
4055
4056     return AVERROR(ENOENT);
4057 }
4058
4059 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
4060 {
4061     if (sc->time_scale <= 0) {
4062         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
4063         sc->time_scale = c->time_scale;
4064         if (sc->time_scale <= 0)
4065             sc->time_scale = 1;
4066     }
4067 }
4068
4069 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4070 {
4071     AVStream *st;
4072     MOVStreamContext *sc;
4073     int ret;
4074
4075     st = avformat_new_stream(c->fc, NULL);
4076     if (!st) return AVERROR(ENOMEM);
4077     st->id = c->fc->nb_streams;
4078     sc = av_mallocz(sizeof(MOVStreamContext));
4079     if (!sc) return AVERROR(ENOMEM);
4080
4081     st->priv_data = sc;
4082     st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
4083     sc->ffindex = st->index;
4084     c->trak_index = st->index;
4085
4086     if ((ret = mov_read_default(c, pb, atom)) < 0)
4087         return ret;
4088
4089     c->trak_index = -1;
4090
4091     /* sanity checks */
4092     if ((sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
4093                             (!sc->sample_size && !sc->sample_count))) ||
4094         (!sc->chunk_count && sc->sample_count)) {
4095         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
4096                st->index);
4097         return 0;
4098     }
4099
4100     fix_timescale(c, sc);
4101
4102     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
4103
4104     mov_build_index(c, st);
4105
4106     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
4107         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
4108         if (c->enable_drefs) {
4109             if (mov_open_dref(c, &sc->pb, c->fc->filename, dref) < 0)
4110                 av_log(c->fc, AV_LOG_ERROR,
4111                        "stream %d, error opening alias: path='%s', dir='%s', "
4112                        "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
4113                        st->index, dref->path, dref->dir, dref->filename,
4114                        dref->volume, dref->nlvl_from, dref->nlvl_to);
4115         } else {
4116             av_log(c->fc, AV_LOG_WARNING,
4117                    "Skipped opening external track: "
4118                    "stream %d, alias: path='%s', dir='%s', "
4119                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d."
4120                    "Set enable_drefs to allow this.\n",
4121                    st->index, dref->path, dref->dir, dref->filename,
4122                    dref->volume, dref->nlvl_from, dref->nlvl_to);
4123         }
4124     } else {
4125         sc->pb = c->fc->pb;
4126         sc->pb_is_copied = 1;
4127     }
4128
4129     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
4130         if (!st->sample_aspect_ratio.num && st->codecpar->width && st->codecpar->height &&
4131             sc->height && sc->width &&
4132             (st->codecpar->width != sc->width || st->codecpar->height != sc->height)) {
4133             st->sample_aspect_ratio = av_d2q(((double)st->codecpar->height * sc->width) /
4134                                              ((double)st->codecpar->width * sc->height), INT_MAX);
4135         }
4136
4137 #if FF_API_R_FRAME_RATE
4138         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
4139             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
4140                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
4141 #endif
4142     }
4143
4144     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
4145     if (!st->codecpar->extradata_size && st->codecpar->codec_id == AV_CODEC_ID_H264 &&
4146         TAG_IS_AVCI(st->codecpar->codec_tag)) {
4147         ret = ff_generate_avci_extradata(st);
4148         if (ret < 0)
4149             return ret;
4150     }
4151
4152     switch (st->codecpar->codec_id) {
4153 #if CONFIG_H261_DECODER
4154     case AV_CODEC_ID_H261:
4155 #endif
4156 #if CONFIG_H263_DECODER
4157     case AV_CODEC_ID_H263:
4158 #endif
4159 #if CONFIG_MPEG4_DECODER
4160     case AV_CODEC_ID_MPEG4:
4161 #endif
4162         st->codecpar->width = 0; /* let decoder init width/height */
4163         st->codecpar->height= 0;
4164         break;
4165     }
4166
4167     // If the duration of the mp3 packets is not constant, then they could need a parser
4168     if (st->codecpar->codec_id == AV_CODEC_ID_MP3
4169         && sc->stts_count > 3
4170         && sc->stts_count*10 > st->nb_frames
4171         && sc->time_scale == st->codecpar->sample_rate) {
4172             st->need_parsing = AVSTREAM_PARSE_FULL;
4173     }
4174     /* Do not need those anymore. */
4175     av_freep(&sc->chunk_offsets);
4176     av_freep(&sc->sample_sizes);
4177     av_freep(&sc->keyframes);
4178     av_freep(&sc->stts_data);
4179     av_freep(&sc->stps_data);
4180     av_freep(&sc->elst_data);
4181     av_freep(&sc->rap_group);
4182
4183     return 0;
4184 }
4185
4186 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4187 {
4188     int ret;
4189     c->itunes_metadata = 1;
4190     ret = mov_read_default(c, pb, atom);
4191     c->itunes_metadata = 0;
4192     return ret;
4193 }
4194
4195 static int mov_read_keys(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4196 {
4197     uint32_t count;
4198     uint32_t i;
4199
4200     if (atom.size < 8)
4201         return 0;
4202
4203     avio_skip(pb, 4);
4204     count = avio_rb32(pb);
4205     if (count > UINT_MAX / sizeof(*c->meta_keys) - 1) {
4206         av_log(c->fc, AV_LOG_ERROR,
4207                "The 'keys' atom with the invalid key count: %"PRIu32"\n", count);
4208         return AVERROR_INVALIDDATA;
4209     }
4210
4211     c->meta_keys_count = count + 1;
4212     c->meta_keys = av_mallocz(c->meta_keys_count * sizeof(*c->meta_keys));
4213     if (!c->meta_keys)
4214         return AVERROR(ENOMEM);
4215
4216     for (i = 1; i <= count; ++i) {
4217         uint32_t key_size = avio_rb32(pb);
4218         uint32_t type = avio_rl32(pb);
4219         if (key_size < 8) {
4220             av_log(c->fc, AV_LOG_ERROR,
4221                    "The key# %"PRIu32" in meta has invalid size:"
4222                    "%"PRIu32"\n", i, key_size);
4223             return AVERROR_INVALIDDATA;
4224         }
4225         key_size -= 8;
4226         if (type != MKTAG('m','d','t','a')) {
4227             avio_skip(pb, key_size);
4228         }
4229         c->meta_keys[i] = av_mallocz(key_size + 1);
4230         if (!c->meta_keys[i])
4231             return AVERROR(ENOMEM);
4232         avio_read(pb, c->meta_keys[i], key_size);
4233     }
4234
4235     return 0;
4236 }
4237
4238 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4239 {
4240     int64_t end = avio_tell(pb) + atom.size;
4241     uint8_t *key = NULL, *val = NULL, *mean = NULL;
4242     int i;
4243     int ret = 0;
4244     AVStream *st;
4245     MOVStreamContext *sc;
4246
4247     if (c->fc->nb_streams < 1)
4248         return 0;
4249     st = c->fc->streams[c->fc->nb_streams-1];
4250     sc = st->priv_data;
4251
4252     for (i = 0; i < 3; i++) {
4253         uint8_t **p;
4254         uint32_t len, tag;
4255
4256         if (end - avio_tell(pb) <= 12)
4257             break;
4258
4259         len = avio_rb32(pb);
4260         tag = avio_rl32(pb);
4261         avio_skip(pb, 4); // flags
4262
4263         if (len < 12 || len - 12 > end - avio_tell(pb))
4264             break;
4265         len -= 12;
4266
4267         if (tag == MKTAG('m', 'e', 'a', 'n'))
4268             p = &mean;
4269         else if (tag == MKTAG('n', 'a', 'm', 'e'))
4270             p = &key;
4271         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
4272             avio_skip(pb, 4);
4273             len -= 4;
4274             p = &val;
4275         } else
4276             break;
4277
4278         *p = av_malloc(len + 1);
4279         if (!*p) {
4280             ret = AVERROR(ENOMEM);
4281             break;
4282         }
4283         ret = ffio_read_size(pb, *p, len);
4284         if (ret < 0) {
4285             av_freep(p);
4286             break;
4287         }
4288         (*p)[len] = 0;
4289     }
4290
4291     if (mean && key && val) {
4292         if (strcmp(key, "iTunSMPB") == 0) {
4293             int priming, remainder, samples;
4294             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
4295                 if(priming>0 && priming<16384)
4296                     sc->start_pad = priming;
4297             }
4298         }
4299         if (strcmp(key, "cdec") != 0) {
4300             av_dict_set(&c->fc->metadata, key, val,
4301                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
4302             key = val = NULL;
4303         }
4304     } else {
4305         av_log(c->fc, AV_LOG_VERBOSE,
4306                "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
4307     }
4308
4309     avio_seek(pb, end, SEEK_SET);
4310     av_freep(&key);
4311     av_freep(&val);
4312     av_freep(&mean);
4313     return ret;
4314 }
4315
4316 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4317 {
4318     while (atom.size > 8) {
4319         uint32_t tag = avio_rl32(pb);
4320         atom.size -= 4;
4321         if (tag == MKTAG('h','d','l','r')) {
4322             avio_seek(pb, -8, SEEK_CUR);
4323             atom.size += 8;
4324             return mov_read_default(c, pb, atom);
4325         }
4326     }
4327     return 0;
4328 }
4329
4330 // return 1 when matrix is identity, 0 otherwise
4331 #define IS_MATRIX_IDENT(matrix)            \
4332     ( (matrix)[0][0] == (1 << 16) &&       \
4333       (matrix)[1][1] == (1 << 16) &&       \
4334       (matrix)[2][2] == (1 << 30) &&       \
4335      !(matrix)[0][1] && !(matrix)[0][2] && \
4336      !(matrix)[1][0] && !(matrix)[1][2] && \
4337      !(matrix)[2][0] && !(matrix)[2][1])
4338
4339 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4340 {
4341     int i, j, e;
4342     int width;
4343     int height;
4344     int display_matrix[3][3];
4345     int res_display_matrix[3][3] = { { 0 } };
4346     AVStream *st;
4347     MOVStreamContext *sc;
4348     int version;
4349     int flags;
4350
4351     if (c->fc->nb_streams < 1)
4352         return 0;
4353     st = c->fc->streams[c->fc->nb_streams-1];
4354     sc = st->priv_data;
4355
4356     version = avio_r8(pb);
4357     flags = avio_rb24(pb);
4358     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
4359
4360     if (version == 1) {
4361         avio_rb64(pb);
4362         avio_rb64(pb);
4363     } else {
4364         avio_rb32(pb); /* creation time */
4365         avio_rb32(pb); /* modification time */
4366     }
4367     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
4368     avio_rb32(pb); /* reserved */
4369
4370     /* highlevel (considering edits) duration in movie timebase */
4371     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
4372     avio_rb32(pb); /* reserved */
4373     avio_rb32(pb); /* reserved */
4374
4375     avio_rb16(pb); /* layer */
4376     avio_rb16(pb); /* alternate group */
4377     avio_rb16(pb); /* volume */
4378     avio_rb16(pb); /* reserved */
4379
4380     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
4381     // they're kept in fixed point format through all calculations
4382     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
4383     // side data, but the scale factor is not needed to calculate aspect ratio
4384     for (i = 0; i < 3; i++) {
4385         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
4386         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
4387         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
4388     }
4389
4390     width = avio_rb32(pb);       // 16.16 fixed point track width
4391     height = avio_rb32(pb);      // 16.16 fixed point track height
4392     sc->width = width >> 16;
4393     sc->height = height >> 16;
4394
4395     // apply the moov display matrix (after the tkhd one)
4396     for (i = 0; i < 3; i++) {
4397         const int sh[3] = { 16, 16, 30 };
4398         for (j = 0; j < 3; j++) {
4399             for (e = 0; e < 3; e++) {
4400                 res_display_matrix[i][j] +=
4401                     ((int64_t) display_matrix[i][e] *
4402                      c->movie_display_matrix[e][j]) >> sh[e];
4403             }
4404         }
4405     }
4406
4407     // save the matrix when it is not the default identity
4408     if (!IS_MATRIX_IDENT(res_display_matrix)) {
4409         double rotate;
4410
4411         av_freep(&sc->display_matrix);
4412         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
4413         if (!sc->display_matrix)
4414             return AVERROR(ENOMEM);
4415
4416         for (i = 0; i < 3; i++)
4417             for (j = 0; j < 3; j++)
4418                 sc->display_matrix[i * 3 + j] = res_display_matrix[i][j];
4419
4420 #if FF_API_OLD_ROTATE_API
4421         rotate = av_display_rotation_get(sc->display_matrix);
4422         if (!isnan(rotate)) {
4423             char rotate_buf[64];
4424             rotate = -rotate;
4425             if (rotate < 0) // for backward compatibility
4426                 rotate += 360;
4427             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
4428             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
4429         }
4430 #endif
4431     }
4432
4433     // transform the display width/height according to the matrix
4434     // to keep the same scale, use [width height 1<<16]
4435     if (width && height && sc->display_matrix) {
4436         double disp_transform[2];
4437
4438         for (i = 0; i < 2; i++)
4439             disp_transform[i] = hypot(sc->display_matrix[0 + i],
4440                                       sc->display_matrix[3 + i]);
4441
4442         if (disp_transform[0] > 0       && disp_transform[1] > 0 &&
4443             disp_transform[0] < (1<<24) && disp_transform[1] < (1<<24) &&
4444             fabs((disp_transform[0] / disp_transform[1]) - 1.0) > 0.01)
4445             st->sample_aspect_ratio = av_d2q(
4446                 disp_transform[0] / disp_transform[1],
4447                 INT_MAX);
4448     }
4449     return 0;
4450 }
4451
4452 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4453 {
4454     MOVFragment *frag = &c->fragment;
4455     MOVTrackExt *trex = NULL;
4456     int flags, track_id, i;
4457
4458     avio_r8(pb); /* version */
4459     flags = avio_rb24(pb);
4460
4461     track_id = avio_rb32(pb);
4462     if (!track_id)
4463         return AVERROR_INVALIDDATA;
4464     frag->track_id = track_id;
4465     set_frag_stream(&c->frag_index, track_id);
4466     for (i = 0; i < c->trex_count; i++)
4467         if (c->trex_data[i].track_id == frag->track_id) {
4468             trex = &c->trex_data[i];
4469             break;
4470         }
4471     if (!trex) {
4472         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
4473         return AVERROR_INVALIDDATA;
4474     }
4475
4476     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
4477                              avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
4478                              frag->moof_offset : frag->implicit_offset;
4479     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
4480
4481     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
4482                      avio_rb32(pb) : trex->duration;
4483     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
4484                      avio_rb32(pb) : trex->size;
4485     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
4486                      avio_rb32(pb) : trex->flags;
4487     av_log(c->fc, AV_LOG_TRACE, "frag flags 0x%x\n", frag->flags);
4488
4489     return 0;
4490 }
4491
4492 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4493 {
4494     unsigned i, num;
4495     void *new_tracks;
4496
4497     num = atom.size / 4;
4498     if (!(new_tracks = av_malloc_array(num, sizeof(int))))
4499         return AVERROR(ENOMEM);
4500
4501     av_free(c->chapter_tracks);
4502     c->chapter_tracks = new_tracks;
4503     c->nb_chapter_tracks = num;
4504
4505     for (i = 0; i < num && !pb->eof_reached; i++)
4506         c->chapter_tracks[i] = avio_rb32(pb);
4507
4508     return 0;
4509 }
4510
4511 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4512 {
4513     MOVTrackExt *trex;
4514     int err;
4515
4516     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
4517         return AVERROR_INVALIDDATA;
4518     if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
4519                                  sizeof(*c->trex_data))) < 0) {
4520         c->trex_count = 0;
4521         return err;
4522     }
4523
4524     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
4525
4526     trex = &c->trex_data[c->trex_count++];
4527     avio_r8(pb); /* version */
4528     avio_rb24(pb); /* flags */
4529     trex->track_id = avio_rb32(pb);
4530     trex->stsd_id  = avio_rb32(pb);
4531     trex->duration = avio_rb32(pb);
4532     trex->size     = avio_rb32(pb);
4533     trex->flags    = avio_rb32(pb);
4534     return 0;
4535 }
4536
4537 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4538 {
4539     MOVFragment *frag = &c->fragment;
4540     AVStream *st = NULL;
4541     MOVStreamContext *sc;
4542     int version, i;
4543     MOVFragmentStreamInfo * frag_stream_info;
4544     int64_t base_media_decode_time;
4545
4546     for (i = 0; i < c->fc->nb_streams; i++) {
4547         if (c->fc->streams[i]->id == frag->track_id) {
4548             st = c->fc->streams[i];
4549             break;
4550         }
4551     }
4552     if (!st) {
4553         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4554         return AVERROR_INVALIDDATA;
4555     }
4556     sc = st->priv_data;
4557     if (sc->pseudo_stream_id + 1 != frag->stsd_id)
4558         return 0;
4559     version = avio_r8(pb);
4560     avio_rb24(pb); /* flags */
4561     if (version) {
4562         base_media_decode_time = avio_rb64(pb);
4563     } else {
4564         base_media_decode_time = avio_rb32(pb);
4565     }
4566
4567     frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4568     if (frag_stream_info)
4569         frag_stream_info->tfdt_dts = base_media_decode_time;
4570     sc->track_end = base_media_decode_time;
4571
4572     return 0;
4573 }
4574
4575 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4576 {
4577     MOVFragment *frag = &c->fragment;
4578     AVStream *st = NULL;
4579     MOVStreamContext *sc;
4580     MOVStts *ctts_data;
4581     uint64_t offset;
4582     int64_t dts, pts = AV_NOPTS_VALUE;
4583     int data_offset = 0;
4584     unsigned entries, first_sample_flags = frag->flags;
4585     int flags, distance, i;
4586     int64_t prev_dts = AV_NOPTS_VALUE;
4587     int next_frag_index = -1, index_entry_pos;
4588     size_t requested_size;
4589     AVIndexEntry *new_entries;
4590     MOVFragmentStreamInfo * frag_stream_info;
4591
4592     for (i = 0; i < c->fc->nb_streams; i++) {
4593         if (c->fc->streams[i]->id == frag->track_id) {
4594             st = c->fc->streams[i];
4595             break;
4596         }
4597     }
4598     if (!st) {
4599         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4600         return AVERROR_INVALIDDATA;
4601     }
4602     sc = st->priv_data;
4603     if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
4604         return 0;
4605
4606     // Find the next frag_index index that has a valid index_entry for
4607     // the current track_id.
4608     //
4609     // A valid index_entry means the trun for the fragment was read
4610     // and it's samples are in index_entries at the given position.
4611     // New index entries will be inserted before the index_entry found.
4612     index_entry_pos = st->nb_index_entries;
4613     for (i = c->frag_index.current + 1; i < c->frag_index.nb_items; i++) {
4614         frag_stream_info = get_frag_stream_info(&c->frag_index, i, frag->track_id);
4615         if (frag_stream_info && frag_stream_info->index_entry >= 0) {
4616             next_frag_index = i;
4617             index_entry_pos = frag_stream_info->index_entry;
4618             break;
4619         }
4620     }
4621
4622     avio_r8(pb); /* version */
4623     flags = avio_rb24(pb);
4624     entries = avio_rb32(pb);
4625     av_log(c->fc, AV_LOG_TRACE, "flags 0x%x entries %u\n", flags, entries);
4626
4627     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
4628         return AVERROR_INVALIDDATA;
4629     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
4630     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
4631
4632     frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4633     if (frag_stream_info)
4634     {
4635         if (frag_stream_info->first_tfra_pts != AV_NOPTS_VALUE &&
4636             c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
4637             pts = frag_stream_info->first_tfra_pts;
4638             av_log(c->fc, AV_LOG_DEBUG, "found mfra time %"PRId64
4639                     ", using it for pts\n", pts);
4640         } else if (frag_stream_info->sidx_pts != AV_NOPTS_VALUE) {
4641             // FIXME: sidx earliest_presentation_time is *PTS*, s.b.
4642             // pts = frag_stream_info->sidx_pts;
4643             dts = frag_stream_info->sidx_pts - sc->time_offset;
4644             av_log(c->fc, AV_LOG_DEBUG, "found sidx time %"PRId64
4645                     ", using it for pts\n", pts);
4646         } else if (frag_stream_info->tfdt_dts != AV_NOPTS_VALUE) {
4647             dts = frag_stream_info->tfdt_dts - sc->time_offset;
4648             av_log(c->fc, AV_LOG_DEBUG, "found tfdt time %"PRId64
4649                     ", using it for dts\n", dts);
4650         } else {
4651             dts = sc->track_end - sc->time_offset;
4652             av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4653                     ", using it for dts\n", dts);
4654         }
4655     } else {
4656         dts = sc->track_end - sc->time_offset;
4657         av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4658                 ", using it for dts\n", dts);
4659     }
4660     offset   = frag->base_data_offset + data_offset;
4661     distance = 0;
4662     av_log(c->fc, AV_LOG_TRACE, "first sample flags 0x%x\n", first_sample_flags);
4663
4664     // realloc space for new index entries
4665     if((unsigned)st->nb_index_entries + entries >= UINT_MAX / sizeof(AVIndexEntry)) {
4666         entries = UINT_MAX / sizeof(AVIndexEntry) - st->nb_index_entries;
4667         av_log(c->fc, AV_LOG_ERROR, "Failed to add index entry\n");
4668     }
4669     if (entries <= 0)
4670         return -1;
4671
4672     requested_size = (st->nb_index_entries + entries) * sizeof(AVIndexEntry);
4673     new_entries = av_fast_realloc(st->index_entries,
4674                                   &st->index_entries_allocated_size,
4675                                   requested_size);
4676     if(!new_entries)
4677         return AVERROR(ENOMEM);
4678     st->index_entries= new_entries;
4679
4680     requested_size = (st->nb_index_entries + entries) * sizeof(*sc->ctts_data);
4681     ctts_data = av_fast_realloc(sc->ctts_data, &sc->ctts_allocated_size,
4682                                 requested_size);
4683     if (!ctts_data)
4684         return AVERROR(ENOMEM);
4685     sc->ctts_data = ctts_data;
4686
4687     // In case there were samples without ctts entries, ensure they get
4688     // zero valued entries. This ensures clips which mix boxes with and
4689     // without ctts entries don't pickup uninitialized data.
4690     memset(sc->ctts_data + sc->ctts_count, 0,
4691            (st->nb_index_entries - sc->ctts_count) * sizeof(*sc->ctts_data));
4692
4693     if (index_entry_pos < st->nb_index_entries) {
4694         // Make hole in index_entries and ctts_data for new samples
4695         memmove(st->index_entries + index_entry_pos + entries,
4696                 st->index_entries + index_entry_pos,
4697                 sizeof(*st->index_entries) *
4698                 (st->nb_index_entries - index_entry_pos));
4699         memmove(sc->ctts_data + index_entry_pos + entries,
4700                 sc->ctts_data + index_entry_pos,
4701                 sizeof(*sc->ctts_data) * (sc->ctts_count - index_entry_pos));
4702         if (index_entry_pos < sc->current_sample) {
4703             sc->current_sample += entries;
4704         }
4705     }
4706
4707     st->nb_index_entries += entries;
4708     sc->ctts_count = st->nb_index_entries;
4709
4710     // Record the index_entry position in frag_index of this fragment
4711     if (frag_stream_info)
4712         frag_stream_info->index_entry = index_entry_pos;
4713
4714     if (index_entry_pos > 0)
4715         prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4716
4717     for (i = 0; i < entries && !pb->eof_reached; i++) {
4718         unsigned sample_size = frag->size;
4719         int sample_flags = i ? frag->flags : first_sample_flags;
4720         unsigned sample_duration = frag->duration;
4721         unsigned ctts_duration = 0;
4722         int keyframe = 0;
4723         int index_entry_flags = 0;
4724
4725         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
4726         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
4727         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
4728         if (flags & MOV_TRUN_SAMPLE_CTS)      ctts_duration   = avio_rb32(pb);
4729
4730         mov_update_dts_shift(sc, ctts_duration);
4731         if (pts != AV_NOPTS_VALUE) {
4732             dts = pts - sc->dts_shift;
4733             if (flags & MOV_TRUN_SAMPLE_CTS) {
4734                 dts -= ctts_duration;
4735             } else {
4736                 dts -= sc->time_offset;
4737             }
4738             av_log(c->fc, AV_LOG_DEBUG,
4739                    "pts %"PRId64" calculated dts %"PRId64
4740                    " sc->dts_shift %d ctts.duration %d"
4741                    " sc->time_offset %"PRId64
4742                    " flags & MOV_TRUN_SAMPLE_CTS %d\n",
4743                    pts, dts,
4744                    sc->dts_shift, ctts_duration,
4745                    sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
4746             pts = AV_NOPTS_VALUE;
4747         }
4748
4749         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4750             keyframe = 1;
4751         else
4752             keyframe =
4753                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
4754                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
4755         if (keyframe) {
4756             distance = 0;
4757             index_entry_flags |= AVINDEX_KEYFRAME;
4758         }
4759         // Fragments can overlap in time.  Discard overlapping frames after
4760         // decoding.
4761         if (prev_dts >= dts)
4762             index_entry_flags |= AVINDEX_DISCARD_FRAME;
4763
4764         st->index_entries[index_entry_pos].pos = offset;
4765         st->index_entries[index_entry_pos].timestamp = dts;
4766         st->index_entries[index_entry_pos].size= sample_size;
4767         st->index_entries[index_entry_pos].min_distance= distance;
4768         st->index_entries[index_entry_pos].flags = index_entry_flags;
4769
4770         sc->ctts_data[index_entry_pos].count = 1;
4771         sc->ctts_data[index_entry_pos].duration = ctts_duration;
4772         index_entry_pos++;
4773
4774         av_log(c->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
4775                 "size %u, distance %d, keyframe %d\n", st->index,
4776                 index_entry_pos, offset, dts, sample_size, distance, keyframe);
4777         distance++;
4778         dts += sample_duration;
4779         offset += sample_size;
4780         sc->data_size += sample_size;
4781         sc->duration_for_fps += sample_duration;
4782         sc->nb_frames_for_fps ++;
4783     }
4784     if (i < entries) {
4785         // EOF found before reading all entries.  Fix the hole this would
4786         // leave in index_entries and ctts_data
4787         int gap = entries - i;
4788         memmove(st->index_entries + index_entry_pos,
4789                 st->index_entries + index_entry_pos + gap,
4790                 sizeof(*st->index_entries) *
4791                 (st->nb_index_entries - (index_entry_pos + gap)));
4792         memmove(sc->ctts_data + index_entry_pos,
4793                 sc->ctts_data + index_entry_pos + gap,
4794                 sizeof(*sc->ctts_data) *
4795                 (sc->ctts_count - (index_entry_pos + gap)));
4796
4797         st->nb_index_entries -= gap;
4798         sc->ctts_count -= gap;
4799         if (index_entry_pos < sc->current_sample) {
4800             sc->current_sample -= gap;
4801         }
4802         entries = i;
4803     }
4804
4805     // The end of this new fragment may overlap in time with the start
4806     // of the next fragment in index_entries. Mark the samples in the next
4807     // fragment that overlap with AVINDEX_DISCARD_FRAME
4808     prev_dts = AV_NOPTS_VALUE;
4809     if (index_entry_pos > 0)
4810         prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4811     for (i = index_entry_pos; i < st->nb_index_entries; i++) {
4812         if (prev_dts < st->index_entries[i].timestamp)
4813             break;
4814         st->index_entries[i].flags |= AVINDEX_DISCARD_FRAME;
4815     }
4816
4817     // If a hole was created to insert the new index_entries into,
4818     // the index_entry recorded for all subsequent moof must
4819     // be incremented by the number of entries inserted.
4820     fix_frag_index_entries(&c->frag_index, next_frag_index,
4821                            frag->track_id, entries);
4822
4823     if (pb->eof_reached) {
4824         av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted TRUN atom\n");
4825         return AVERROR_EOF;
4826     }
4827
4828     frag->implicit_offset = offset;
4829
4830     sc->track_end = dts + sc->time_offset;
4831     if (st->duration < sc->track_end)
4832         st->duration = sc->track_end;
4833
4834     return 0;
4835 }
4836
4837 static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4838 {
4839     int64_t offset = avio_tell(pb) + atom.size, pts, timestamp;
4840     uint8_t version;
4841     unsigned i, j, track_id, item_count;
4842     AVStream *st = NULL;
4843     AVStream *ref_st = NULL;
4844     MOVStreamContext *sc, *ref_sc = NULL;
4845     AVRational timescale;
4846
4847     version = avio_r8(pb);
4848     if (version > 1) {
4849         avpriv_request_sample(c->fc, "sidx version %u", version);
4850         return 0;
4851     }
4852
4853     avio_rb24(pb); // flags
4854
4855     track_id = avio_rb32(pb); // Reference ID
4856     for (i = 0; i < c->fc->nb_streams; i++) {
4857         if (c->fc->streams[i]->id == track_id) {
4858             st = c->fc->streams[i];
4859             break;
4860         }
4861     }
4862     if (!st) {
4863         av_log(c->fc, AV_LOG_WARNING, "could not find corresponding track id %d\n", track_id);
4864         return 0;
4865     }
4866
4867     sc = st->priv_data;
4868
4869     timescale = av_make_q(1, avio_rb32(pb));
4870
4871     if (timescale.den <= 0) {
4872         av_log(c->fc, AV_LOG_ERROR, "Invalid sidx timescale 1/%d\n", timescale.den);
4873         return AVERROR_INVALIDDATA;
4874     }
4875
4876     if (version == 0) {
4877         pts = avio_rb32(pb);
4878         offset += avio_rb32(pb);
4879     } else {
4880         pts = avio_rb64(pb);
4881         offset += avio_rb64(pb);
4882     }
4883
4884     avio_rb16(pb); // reserved
4885
4886     item_count = avio_rb16(pb);
4887
4888     for (i = 0; i < item_count; i++) {
4889         int index;
4890         MOVFragmentStreamInfo * frag_stream_info;
4891         uint32_t size = avio_rb32(pb);
4892         uint32_t duration = avio_rb32(pb);
4893         if (size & 0x80000000) {
4894             avpriv_request_sample(c->fc, "sidx reference_type 1");
4895             return AVERROR_PATCHWELCOME;
4896         }
4897         avio_rb32(pb); // sap_flags
4898         timestamp = av_rescale_q(pts, st->time_base, timescale);
4899
4900         index = update_frag_index(c, offset);
4901         frag_stream_info = get_frag_stream_info(&c->frag_index, index, track_id);
4902         if (frag_stream_info)
4903             frag_stream_info->sidx_pts = timestamp;
4904
4905         offset += size;
4906         pts += duration;
4907     }
4908
4909     st->duration = sc->track_end = pts;
4910
4911     sc->has_sidx = 1;
4912
4913     if (offset == avio_size(pb)) {
4914         // Find first entry in fragment index that came from an sidx.
4915         // This will pretty much always be the first entry.
4916         for (i = 0; i < c->frag_index.nb_items; i++) {
4917             MOVFragmentIndexItem * item = &c->frag_index.item[i];
4918             for (j = 0; ref_st == NULL && j < item->nb_stream_info; j++) {
4919                 MOVFragmentStreamInfo * si;
4920                 si = &item->stream_info[j];
4921                 if (si->sidx_pts != AV_NOPTS_VALUE) {
4922                     ref_st = c->fc->streams[j];
4923                     ref_sc = ref_st->priv_data;
4924                     break;
4925                 }
4926             }
4927         }
4928         for (i = 0; i < c->fc->nb_streams; i++) {
4929             st = c->fc->streams[i];
4930             sc = st->priv_data;
4931             if (!sc->has_sidx) {
4932                 st->duration = sc->track_end = av_rescale(ref_st->duration, sc->time_scale, ref_sc->time_scale);
4933             }
4934         }
4935
4936         c->frag_index.complete = 1;
4937     }
4938
4939     return 0;
4940 }
4941
4942 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
4943 /* like the files created with Adobe Premiere 5.0, for samples see */
4944 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
4945 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4946 {
4947     int err;
4948
4949     if (atom.size < 8)
4950         return 0; /* continue */
4951     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
4952         avio_skip(pb, atom.size - 4);
4953         return 0;
4954     }
4955     atom.type = avio_rl32(pb);
4956     atom.size -= 8;
4957     if (atom.type != MKTAG('m','d','a','t')) {
4958         avio_skip(pb, atom.size);
4959         return 0;
4960     }
4961     err = mov_read_mdat(c, pb, atom);
4962     return err;
4963 }
4964
4965 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4966 {
4967 #if CONFIG_ZLIB
4968     AVIOContext ctx;
4969     uint8_t *cmov_data;
4970     uint8_t *moov_data; /* uncompressed data */
4971     long cmov_len, moov_len;
4972     int ret = -1;
4973
4974     avio_rb32(pb); /* dcom atom */
4975     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
4976         return AVERROR_INVALIDDATA;
4977     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
4978         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
4979         return AVERROR_INVALIDDATA;
4980     }
4981     avio_rb32(pb); /* cmvd atom */
4982     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
4983         return AVERROR_INVALIDDATA;
4984     moov_len = avio_rb32(pb); /* uncompressed size */
4985     cmov_len = atom.size - 6 * 4;
4986
4987     cmov_data = av_malloc(cmov_len);
4988     if (!cmov_data)
4989         return AVERROR(ENOMEM);
4990     moov_data = av_malloc(moov_len);
4991     if (!moov_data) {
4992         av_free(cmov_data);
4993         return AVERROR(ENOMEM);
4994     }
4995     ret = ffio_read_size(pb, cmov_data, cmov_len);
4996     if (ret < 0)
4997         goto free_and_return;
4998
4999     ret = AVERROR_INVALIDDATA;
5000     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
5001         goto free_and_return;
5002     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
5003         goto free_and_return;
5004     ctx.seekable = AVIO_SEEKABLE_NORMAL;
5005     atom.type = MKTAG('m','o','o','v');
5006     atom.size = moov_len;
5007     ret = mov_read_default(c, &ctx, atom);
5008 free_and_return:
5009     av_free(moov_data);
5010     av_free(cmov_data);
5011     return ret;
5012 #else
5013     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
5014     return AVERROR(ENOSYS);
5015 #endif
5016 }
5017
5018 /* edit list atom */
5019 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5020 {
5021     MOVStreamContext *sc;
5022     int i, edit_count, version;
5023     int64_t elst_entry_size;
5024
5025     if (c->fc->nb_streams < 1 || c->ignore_editlist)
5026         return 0;
5027     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
5028
5029     version = avio_r8(pb); /* version */
5030     avio_rb24(pb); /* flags */
5031     edit_count = avio_rb32(pb); /* entries */
5032     atom.size -= 8;
5033
5034     elst_entry_size = version == 1 ? 20 : 12;
5035     if (atom.size != edit_count * elst_entry_size) {
5036         if (c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5037             av_log(c->fc, AV_LOG_ERROR, "Invalid edit list entry_count: %d for elst atom of size: %"PRId64" bytes.\n",
5038                    edit_count, atom.size + 8);
5039             return AVERROR_INVALIDDATA;
5040         } else {
5041             edit_count = atom.size / elst_entry_size;
5042             if (edit_count * elst_entry_size != atom.size) {
5043                 av_log(c->fc, AV_LOG_WARNING, "ELST atom of %"PRId64" bytes, bigger than %d entries.", atom.size, edit_count);
5044             }
5045         }
5046     }
5047
5048     if (!edit_count)
5049         return 0;
5050     if (sc->elst_data)
5051         av_log(c->fc, AV_LOG_WARNING, "Duplicated ELST atom\n");
5052     av_free(sc->elst_data);
5053     sc->elst_count = 0;
5054     sc->elst_data = av_malloc_array(edit_count, sizeof(*sc->elst_data));
5055     if (!sc->elst_data)
5056         return AVERROR(ENOMEM);
5057
5058     av_log(c->fc, AV_LOG_TRACE, "track[%u].edit_count = %i\n", c->fc->nb_streams - 1, edit_count);
5059     for (i = 0; i < edit_count && atom.size > 0 && !pb->eof_reached; i++) {
5060         MOVElst *e = &sc->elst_data[i];
5061
5062         if (version == 1) {
5063             e->duration = avio_rb64(pb);
5064             e->time     = avio_rb64(pb);
5065             atom.size -= 16;
5066         } else {
5067             e->duration = avio_rb32(pb); /* segment duration */
5068             e->time     = (int32_t)avio_rb32(pb); /* media time */
5069             atom.size -= 8;
5070         }
5071         e->rate = avio_rb32(pb) / 65536.0;
5072         atom.size -= 4;
5073         av_log(c->fc, AV_LOG_TRACE, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
5074                e->duration, e->time, e->rate);
5075
5076         if (e->time < 0 && e->time != -1 &&
5077             c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5078             av_log(c->fc, AV_LOG_ERROR, "Track %d, edit %d: Invalid edit list media time=%"PRId64"\n",
5079                    c->fc->nb_streams-1, i, e->time);
5080             return AVERROR_INVALIDDATA;
5081         }
5082     }
5083     sc->elst_count = i;
5084
5085     return 0;
5086 }
5087
5088 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5089 {
5090     MOVStreamContext *sc;
5091
5092     if (c->fc->nb_streams < 1)
5093         return AVERROR_INVALIDDATA;
5094     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5095     sc->timecode_track = avio_rb32(pb);
5096     return 0;
5097 }
5098
5099 static int mov_read_vpcc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5100 {
5101     AVStream *st;
5102     int version, color_range, color_primaries, color_trc, color_space;
5103
5104     if (c->fc->nb_streams < 1)
5105         return 0;
5106     st = c->fc->streams[c->fc->nb_streams - 1];
5107
5108     if (atom.size < 5) {
5109         av_log(c->fc, AV_LOG_ERROR, "Empty VP Codec Configuration box\n");
5110         return AVERROR_INVALIDDATA;
5111     }
5112
5113     version = avio_r8(pb);
5114     if (version != 1) {
5115         av_log(c->fc, AV_LOG_WARNING, "Unsupported VP Codec Configuration box version %d\n", version);
5116         return 0;
5117     }
5118     avio_skip(pb, 3); /* flags */
5119
5120     avio_skip(pb, 2); /* profile + level */
5121     color_range     = avio_r8(pb); /* bitDepth, chromaSubsampling, videoFullRangeFlag */
5122     color_primaries = avio_r8(pb);
5123     color_trc       = avio_r8(pb);
5124     color_space     = avio_r8(pb);
5125     if (avio_rb16(pb)) /* codecIntializationDataSize */
5126         return AVERROR_INVALIDDATA;
5127
5128     if (!av_color_primaries_name(color_primaries))
5129         color_primaries = AVCOL_PRI_UNSPECIFIED;
5130     if (!av_color_transfer_name(color_trc))
5131         color_trc = AVCOL_TRC_UNSPECIFIED;
5132     if (!av_color_space_name(color_space))
5133         color_space = AVCOL_SPC_UNSPECIFIED;
5134
5135     st->codecpar->color_range     = (color_range & 1) ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
5136     st->codecpar->color_primaries = color_primaries;
5137     st->codecpar->color_trc       = color_trc;
5138     st->codecpar->color_space     = color_space;
5139
5140     return 0;
5141 }
5142
5143 static int mov_read_smdm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5144 {
5145     MOVStreamContext *sc;
5146     const int chroma_den = 50000;
5147     const int luma_den = 10000;
5148     int i, j, version;
5149
5150     if (c->fc->nb_streams < 1)
5151         return AVERROR_INVALIDDATA;
5152
5153     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5154
5155     if (atom.size < 5) {
5156         av_log(c->fc, AV_LOG_ERROR, "Empty Mastering Display Metadata box\n");
5157         return AVERROR_INVALIDDATA;
5158     }
5159
5160     version = avio_r8(pb);
5161     if (version) {
5162         av_log(c->fc, AV_LOG_WARNING, "Unsupported Mastering Display Metadata box version %d\n", version);
5163         return 0;
5164     }
5165     avio_skip(pb, 3); /* flags */
5166
5167     sc->mastering = av_mastering_display_metadata_alloc();
5168     if (!sc->mastering)
5169         return AVERROR(ENOMEM);
5170
5171     for (i = 0; i < 3; i++)
5172         for (j = 0; j < 2; j++)
5173             sc->mastering->display_primaries[i][j] =
5174                 av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5175     for (i = 0; i < 2; i++)
5176         sc->mastering->white_point[i] =
5177             av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5178     sc->mastering->max_luminance =
5179         av_make_q(lrint(((double)avio_rb32(pb) / (1 <<  8)) * luma_den), luma_den);
5180     sc->mastering->min_luminance =
5181         av_make_q(lrint(((double)avio_rb32(pb) / (1 << 14)) * luma_den), luma_den);
5182
5183     sc->mastering->has_primaries = 1;
5184     sc->mastering->has_luminance = 1;
5185
5186     return 0;
5187 }
5188
5189 static int mov_read_mdcv(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5190 {
5191     MOVStreamContext *sc;
5192     const int mapping[3] = {1, 2, 0};
5193     const int chroma_den = 50000;
5194     const int luma_den = 10000;
5195     int i;
5196
5197     if (c->fc->nb_streams < 1)
5198         return AVERROR_INVALIDDATA;
5199
5200     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5201
5202     if (atom.size < 24) {
5203         av_log(c->fc, AV_LOG_ERROR, "Invalid Mastering Display Color Volume box\n");
5204         return AVERROR_INVALIDDATA;
5205     }
5206
5207     sc->mastering = av_mastering_display_metadata_alloc();
5208     if (!sc->mastering)
5209         return AVERROR(ENOMEM);
5210
5211     for (i = 0; i < 3; i++) {
5212         const int j = mapping[i];
5213         sc->mastering->display_primaries[j][0].num = avio_rb16(pb);
5214         sc->mastering->display_primaries[j][0].den = chroma_den;
5215         sc->mastering->display_primaries[j][1].num = avio_rb16(pb);
5216         sc->mastering->display_primaries[j][1].den = chroma_den;
5217     }
5218     sc->mastering->white_point[0].num = avio_rb16(pb);
5219     sc->mastering->white_point[0].den = chroma_den;
5220     sc->mastering->white_point[1].num = avio_rb16(pb);
5221     sc->mastering->white_point[1].den = chroma_den;
5222
5223     sc->mastering->max_luminance.num = avio_rb32(pb);
5224     sc->mastering->max_luminance.den = luma_den;
5225     sc->mastering->min_luminance.num = avio_rb32(pb);
5226     sc->mastering->min_luminance.den = luma_den;
5227
5228     sc->mastering->has_luminance = 1;
5229     sc->mastering->has_primaries = 1;
5230
5231     return 0;
5232 }
5233
5234 static int mov_read_coll(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5235 {
5236     MOVStreamContext *sc;
5237     int version;
5238
5239     if (c->fc->nb_streams < 1)
5240         return AVERROR_INVALIDDATA;
5241
5242     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5243
5244     if (atom.size < 5) {
5245         av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level box\n");
5246         return AVERROR_INVALIDDATA;
5247     }
5248
5249     version = avio_r8(pb);
5250     if (version) {
5251         av_log(c->fc, AV_LOG_WARNING, "Unsupported Content Light Level box version %d\n", version);
5252         return 0;
5253     }
5254     avio_skip(pb, 3); /* flags */
5255
5256     sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5257     if (!sc->coll)
5258         return AVERROR(ENOMEM);
5259
5260     sc->coll->MaxCLL  = avio_rb16(pb);
5261     sc->coll->MaxFALL = avio_rb16(pb);
5262
5263     return 0;
5264 }
5265
5266 static int mov_read_clli(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5267 {
5268     MOVStreamContext *sc;
5269
5270     if (c->fc->nb_streams < 1)
5271         return AVERROR_INVALIDDATA;
5272
5273     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5274
5275     if (atom.size < 4) {
5276         av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level Info box\n");
5277         return AVERROR_INVALIDDATA;
5278     }
5279
5280     sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5281     if (!sc->coll)
5282         return AVERROR(ENOMEM);
5283
5284     sc->coll->MaxCLL  = avio_rb16(pb);
5285     sc->coll->MaxFALL = avio_rb16(pb);
5286
5287     return 0;
5288 }
5289
5290 static int mov_read_st3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5291 {
5292     AVStream *st;
5293     MOVStreamContext *sc;
5294     enum AVStereo3DType type;
5295     int mode;
5296
5297     if (c->fc->nb_streams < 1)
5298         return 0;
5299
5300     st = c->fc->streams[c->fc->nb_streams - 1];
5301     sc = st->priv_data;
5302
5303     if (atom.size < 5) {
5304         av_log(c->fc, AV_LOG_ERROR, "Empty stereoscopic video box\n");
5305         return AVERROR_INVALIDDATA;
5306     }
5307     avio_skip(pb, 4); /* version + flags */
5308
5309     mode = avio_r8(pb);
5310     switch (mode) {
5311     case 0:
5312         type = AV_STEREO3D_2D;
5313         break;
5314     case 1:
5315         type = AV_STEREO3D_TOPBOTTOM;
5316         break;
5317     case 2:
5318         type = AV_STEREO3D_SIDEBYSIDE;
5319         break;
5320     default:
5321         av_log(c->fc, AV_LOG_WARNING, "Unknown st3d mode value %d\n", mode);
5322         return 0;
5323     }
5324
5325     sc->stereo3d = av_stereo3d_alloc();
5326     if (!sc->stereo3d)
5327         return AVERROR(ENOMEM);
5328
5329     sc->stereo3d->type = type;
5330     return 0;
5331 }
5332
5333 static int mov_read_sv3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5334 {
5335     AVStream *st;
5336     MOVStreamContext *sc;
5337     int size, version, layout;
5338     int32_t yaw, pitch, roll;
5339     uint32_t l = 0, t = 0, r = 0, b = 0;
5340     uint32_t tag, padding = 0;
5341     enum AVSphericalProjection projection;
5342
5343     if (c->fc->nb_streams < 1)
5344         return 0;
5345
5346     st = c->fc->streams[c->fc->nb_streams - 1];
5347     sc = st->priv_data;
5348
5349     if (atom.size < 8) {
5350         av_log(c->fc, AV_LOG_ERROR, "Empty spherical video box\n");
5351         return AVERROR_INVALIDDATA;
5352     }
5353
5354     size = avio_rb32(pb);
5355     if (size <= 12 || size > atom.size)
5356         return AVERROR_INVALIDDATA;
5357
5358     tag = avio_rl32(pb);
5359     if (tag != MKTAG('s','v','h','d')) {
5360         av_log(c->fc, AV_LOG_ERROR, "Missing spherical video header\n");
5361         return 0;
5362     }
5363     version = avio_r8(pb);
5364     if (version != 0) {
5365         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5366                version);
5367         return 0;
5368     }
5369     avio_skip(pb, 3); /* flags */
5370     avio_skip(pb, size - 12); /* metadata_source */
5371
5372     size = avio_rb32(pb);
5373     if (size > atom.size)
5374         return AVERROR_INVALIDDATA;
5375
5376     tag = avio_rl32(pb);
5377     if (tag != MKTAG('p','r','o','j')) {
5378         av_log(c->fc, AV_LOG_ERROR, "Missing projection box\n");
5379         return 0;
5380     }
5381
5382     size = avio_rb32(pb);
5383     if (size > atom.size)
5384         return AVERROR_INVALIDDATA;
5385
5386     tag = avio_rl32(pb);
5387     if (tag != MKTAG('p','r','h','d')) {
5388         av_log(c->fc, AV_LOG_ERROR, "Missing projection header box\n");
5389         return 0;
5390     }
5391     version = avio_r8(pb);
5392     if (version != 0) {
5393         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5394                version);
5395         return 0;
5396     }
5397     avio_skip(pb, 3); /* flags */
5398
5399     /* 16.16 fixed point */
5400     yaw   = avio_rb32(pb);
5401     pitch = avio_rb32(pb);
5402     roll  = avio_rb32(pb);
5403
5404     size = avio_rb32(pb);
5405     if (size > atom.size)
5406         return AVERROR_INVALIDDATA;
5407
5408     tag = avio_rl32(pb);
5409     version = avio_r8(pb);
5410     if (version != 0) {
5411         av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5412                version);
5413         return 0;
5414     }
5415     avio_skip(pb, 3); /* flags */
5416     switch (tag) {
5417     case MKTAG('c','b','m','p'):
5418         layout = avio_rb32(pb);
5419         if (layout) {
5420             av_log(c->fc, AV_LOG_WARNING,
5421                    "Unsupported cubemap layout %d\n", layout);
5422             return 0;
5423         }
5424         projection = AV_SPHERICAL_CUBEMAP;
5425         padding = avio_rb32(pb);
5426         break;
5427     case MKTAG('e','q','u','i'):
5428         t = avio_rb32(pb);
5429         b = avio_rb32(pb);
5430         l = avio_rb32(pb);
5431         r = avio_rb32(pb);
5432
5433         if (b >= UINT_MAX - t || r >= UINT_MAX - l) {
5434             av_log(c->fc, AV_LOG_ERROR,
5435                    "Invalid bounding rectangle coordinates "
5436                    "%"PRIu32",%"PRIu32",%"PRIu32",%"PRIu32"\n", l, t, r, b);
5437             return AVERROR_INVALIDDATA;
5438         }
5439
5440         if (l || t || r || b)
5441             projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE;
5442         else
5443             projection = AV_SPHERICAL_EQUIRECTANGULAR;
5444         break;
5445     default:
5446         av_log(c->fc, AV_LOG_ERROR, "Unknown projection type\n");
5447         return 0;
5448     }
5449
5450     sc->spherical = av_spherical_alloc(&sc->spherical_size);
5451     if (!sc->spherical)
5452         return AVERROR(ENOMEM);
5453
5454     sc->spherical->projection = projection;
5455
5456     sc->spherical->yaw   = yaw;
5457     sc->spherical->pitch = pitch;
5458     sc->spherical->roll  = roll;
5459
5460     sc->spherical->padding = padding;
5461
5462     sc->spherical->bound_left   = l;
5463     sc->spherical->bound_top    = t;
5464     sc->spherical->bound_right  = r;
5465     sc->spherical->bound_bottom = b;
5466
5467     return 0;
5468 }
5469
5470 static int mov_parse_uuid_spherical(MOVStreamContext *sc, AVIOContext *pb, size_t len)
5471 {
5472     int ret = 0;
5473     uint8_t *buffer = av_malloc(len + 1);
5474     const char *val;
5475
5476     if (!buffer)
5477         return AVERROR(ENOMEM);
5478     buffer[len] = '\0';
5479
5480     ret = ffio_read_size(pb, buffer, len);
5481     if (ret < 0)
5482         goto out;
5483
5484     /* Check for mandatory keys and values, try to support XML as best-effort */
5485     if (!sc->spherical &&
5486         av_stristr(buffer, "<GSpherical:StitchingSoftware>") &&
5487         (val = av_stristr(buffer, "<GSpherical:Spherical>")) &&
5488         av_stristr(val, "true") &&
5489         (val = av_stristr(buffer, "<GSpherical:Stitched>")) &&
5490         av_stristr(val, "true") &&
5491         (val = av_stristr(buffer, "<GSpherical:ProjectionType>")) &&
5492         av_stristr(val, "equirectangular")) {
5493         sc->spherical = av_spherical_alloc(&sc->spherical_size);
5494         if (!sc->spherical)
5495             goto out;
5496
5497         sc->spherical->projection = AV_SPHERICAL_EQUIRECTANGULAR;
5498
5499         if (av_stristr(buffer, "<GSpherical:StereoMode>") && !sc->stereo3d) {
5500             enum AVStereo3DType mode;
5501
5502             if (av_stristr(buffer, "left-right"))
5503                 mode = AV_STEREO3D_SIDEBYSIDE;
5504             else if (av_stristr(buffer, "top-bottom"))
5505                 mode = AV_STEREO3D_TOPBOTTOM;
5506             else
5507                 mode = AV_STEREO3D_2D;
5508
5509             sc->stereo3d = av_stereo3d_alloc();
5510             if (!sc->stereo3d)
5511                 goto out;
5512
5513             sc->stereo3d->type = mode;
5514         }
5515
5516         /* orientation */
5517         val = av_stristr(buffer, "<GSpherical:InitialViewHeadingDegrees>");
5518         if (val)
5519             sc->spherical->yaw = strtol(val, NULL, 10) * (1 << 16);
5520         val = av_stristr(buffer, "<GSpherical:InitialViewPitchDegrees>");
5521         if (val)
5522             sc->spherical->pitch = strtol(val, NULL, 10) * (1 << 16);
5523         val = av_stristr(buffer, "<GSpherical:InitialViewRollDegrees>");
5524         if (val)
5525             sc->spherical->roll = strtol(val, NULL, 10) * (1 << 16);
5526     }
5527
5528 out:
5529     av_free(buffer);
5530     return ret;
5531 }
5532
5533 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5534 {
5535     AVStream *st;
5536     MOVStreamContext *sc;
5537     int64_t ret;
5538     uint8_t uuid[16];
5539     static const uint8_t uuid_isml_manifest[] = {
5540         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
5541         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
5542     };
5543     static const uint8_t uuid_xmp[] = {
5544         0xbe, 0x7a, 0xcf, 0xcb, 0x97, 0xa9, 0x42, 0xe8,
5545         0x9c, 0x71, 0x99, 0x94, 0x91, 0xe3, 0xaf, 0xac
5546     };
5547     static const uint8_t uuid_spherical[] = {
5548         0xff, 0xcc, 0x82, 0x63, 0xf8, 0x55, 0x4a, 0x93,
5549         0x88, 0x14, 0x58, 0x7a, 0x02, 0x52, 0x1f, 0xdd,
5550     };
5551
5552     if (atom.size < sizeof(uuid) || atom.size >= FFMIN(INT_MAX, SIZE_MAX))
5553         return AVERROR_INVALIDDATA;
5554
5555     if (c->fc->nb_streams < 1)
5556         return 0;
5557     st = c->fc->streams[c->fc->nb_streams - 1];
5558     sc = st->priv_data;
5559
5560     ret = avio_read(pb, uuid, sizeof(uuid));
5561     if (ret < 0) {
5562         return ret;
5563     } else if (ret != sizeof(uuid)) {
5564         return AVERROR_INVALIDDATA;
5565     }
5566     if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
5567         uint8_t *buffer, *ptr;
5568         char *endptr;
5569         size_t len = atom.size - sizeof(uuid);
5570
5571         if (len < 4) {
5572             return AVERROR_INVALIDDATA;
5573         }
5574         ret = avio_skip(pb, 4); // zeroes
5575         len -= 4;
5576
5577         buffer = av_mallocz(len + 1);
5578         if (!buffer) {
5579             return AVERROR(ENOMEM);
5580         }
5581         ret = avio_read(pb, buffer, len);
5582         if (ret < 0) {
5583             av_free(buffer);
5584             return ret;
5585         } else if (ret != len) {
5586             av_free(buffer);
5587             return AVERROR_INVALIDDATA;
5588         }
5589
5590         ptr = buffer;
5591         while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
5592             ptr += sizeof("systemBitrate=\"") - 1;
5593             c->bitrates_count++;
5594             c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
5595             if (!c->bitrates) {
5596                 c->bitrates_count = 0;
5597                 av_free(buffer);
5598                 return AVERROR(ENOMEM);
5599             }
5600             errno = 0;
5601             ret = strtol(ptr, &endptr, 10);
5602             if (ret < 0 || errno || *endptr != '"') {
5603                 c->bitrates[c->bitrates_count - 1] = 0;
5604             } else {
5605                 c->bitrates[c->bitrates_count - 1] = ret;
5606             }
5607         }
5608
5609         av_free(buffer);
5610     } else if (!memcmp(uuid, uuid_xmp, sizeof(uuid))) {
5611         uint8_t *buffer;
5612         size_t len = atom.size - sizeof(uuid);
5613         if (c->export_xmp) {
5614             buffer = av_mallocz(len + 1);
5615             if (!buffer) {
5616                 return AVERROR(ENOMEM);
5617             }
5618             ret = avio_read(pb, buffer, len);
5619             if (ret < 0) {
5620                 av_free(buffer);
5621                 return ret;
5622             } else if (ret != len) {
5623                 av_free(buffer);
5624                 return AVERROR_INVALIDDATA;
5625             }
5626             buffer[len] = '\0';
5627             av_dict_set(&c->fc->metadata, "xmp", buffer, 0);
5628             av_free(buffer);
5629         } else {
5630             // skip all uuid atom, which makes it fast for long uuid-xmp file
5631             ret = avio_skip(pb, len);
5632             if (ret < 0)
5633                 return ret;
5634         }
5635     } else if (!memcmp(uuid, uuid_spherical, sizeof(uuid))) {
5636         size_t len = atom.size - sizeof(uuid);
5637         ret = mov_parse_uuid_spherical(sc, pb, len);
5638         if (ret < 0)
5639             return ret;
5640         if (!sc->spherical)
5641             av_log(c->fc, AV_LOG_WARNING, "Invalid spherical metadata found\n");
5642     }
5643
5644     return 0;
5645 }
5646
5647 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5648 {
5649     int ret;
5650     uint8_t content[16];
5651
5652     if (atom.size < 8)
5653         return 0;
5654
5655     ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
5656     if (ret < 0)
5657         return ret;
5658
5659     if (   !c->found_moov
5660         && !c->found_mdat
5661         && !memcmp(content, "Anevia\x1A\x1A", 8)
5662         && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
5663         c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
5664     }
5665
5666     return 0;
5667 }
5668
5669 static int mov_read_frma(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5670 {
5671     uint32_t format = avio_rl32(pb);
5672     MOVStreamContext *sc;
5673     enum AVCodecID id;
5674     AVStream *st;
5675
5676     if (c->fc->nb_streams < 1)
5677         return 0;
5678     st = c->fc->streams[c->fc->nb_streams - 1];
5679     sc = st->priv_data;
5680
5681     switch (sc->format)
5682     {
5683     case MKTAG('e','n','c','v'):        // encrypted video
5684     case MKTAG('e','n','c','a'):        // encrypted audio
5685         id = mov_codec_id(st, format);
5686         if (st->codecpar->codec_id != AV_CODEC_ID_NONE &&
5687             st->codecpar->codec_id != id) {
5688             av_log(c->fc, AV_LOG_WARNING,
5689                    "ignoring 'frma' atom of '%.4s', stream has codec id %d\n",
5690                    (char*)&format, st->codecpar->codec_id);
5691             break;
5692         }
5693
5694         st->codecpar->codec_id = id;
5695         sc->format = format;
5696         break;
5697
5698     default:
5699         if (format != sc->format) {
5700             av_log(c->fc, AV_LOG_WARNING,
5701                    "ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
5702                    (char*)&format, (char*)&sc->format);
5703         }
5704         break;
5705     }
5706
5707     return 0;
5708 }
5709
5710 static int mov_read_senc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5711 {
5712     AVStream *st;
5713     MOVStreamContext *sc;
5714     size_t auxiliary_info_size;
5715
5716     if (c->decryption_key_len == 0 || c->fc->nb_streams < 1)
5717         return 0;
5718
5719     st = c->fc->streams[c->fc->nb_streams - 1];
5720     sc = st->priv_data;
5721
5722     if (sc->cenc.aes_ctr) {
5723         av_log(c->fc, AV_LOG_ERROR, "duplicate senc atom\n");
5724         return AVERROR_INVALIDDATA;
5725     }
5726
5727     avio_r8(pb); /* version */
5728     sc->cenc.use_subsamples = avio_rb24(pb) & 0x02; /* flags */
5729
5730     avio_rb32(pb);        /* entries */
5731
5732     if (atom.size < 8 || atom.size > FFMIN(INT_MAX, SIZE_MAX)) {
5733         av_log(c->fc, AV_LOG_ERROR, "senc atom size %"PRId64" invalid\n", atom.size);
5734         return AVERROR_INVALIDDATA;
5735     }
5736
5737     /* save the auxiliary info as is */
5738     auxiliary_info_size = atom.size - 8;
5739
5740     sc->cenc.auxiliary_info = av_malloc(auxiliary_info_size);
5741     if (!sc->cenc.auxiliary_info) {
5742         return AVERROR(ENOMEM);
5743     }
5744
5745     sc->cenc.auxiliary_info_end = sc->cenc.auxiliary_info + auxiliary_info_size;
5746     sc->cenc.auxiliary_info_pos = sc->cenc.auxiliary_info;
5747     sc->cenc.auxiliary_info_index = 0;
5748
5749     if (avio_read(pb, sc->cenc.auxiliary_info, auxiliary_info_size) != auxiliary_info_size) {
5750         av_log(c->fc, AV_LOG_ERROR, "failed to read the auxiliary info");
5751         return AVERROR_INVALIDDATA;
5752     }
5753
5754     /* initialize the cipher */
5755     sc->cenc.aes_ctr = av_aes_ctr_alloc();
5756     if (!sc->cenc.aes_ctr) {
5757         return AVERROR(ENOMEM);
5758     }
5759
5760     return av_aes_ctr_init(sc->cenc.aes_ctr, c->decryption_key);
5761 }
5762
5763 static int mov_read_saiz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5764 {
5765     AVStream *st;
5766     MOVStreamContext *sc;
5767     size_t data_size;
5768     int atom_header_size;
5769     int flags;
5770
5771     if (c->decryption_key_len == 0 || c->fc->nb_streams < 1)
5772         return 0;
5773
5774     st = c->fc->streams[c->fc->nb_streams - 1];
5775     sc = st->priv_data;
5776
5777     if (sc->cenc.auxiliary_info_sizes || sc->cenc.auxiliary_info_default_size) {
5778         av_log(c->fc, AV_LOG_ERROR, "duplicate saiz atom\n");
5779         return AVERROR_INVALIDDATA;
5780     }
5781
5782     atom_header_size = 9;
5783
5784     avio_r8(pb); /* version */
5785     flags = avio_rb24(pb);
5786
5787     if ((flags & 0x01) != 0) {
5788         atom_header_size += 8;
5789
5790         avio_rb32(pb);    /* info type */
5791         avio_rb32(pb);    /* info type param */
5792     }
5793
5794     sc->cenc.auxiliary_info_default_size = avio_r8(pb);
5795     avio_rb32(pb);    /* entries */
5796
5797     if (atom.size <= atom_header_size) {
5798         return 0;
5799     }
5800
5801     if (atom.size > FFMIN(INT_MAX, SIZE_MAX)) {
5802         av_log(c->fc, AV_LOG_ERROR, "saiz atom auxiliary_info_sizes size %"PRId64" invalid\n", atom.size);
5803         return AVERROR_INVALIDDATA;
5804     }
5805
5806     /* save the auxiliary info sizes as is */
5807     data_size = atom.size - atom_header_size;
5808
5809     sc->cenc.auxiliary_info_sizes = av_malloc(data_size);
5810     if (!sc->cenc.auxiliary_info_sizes) {
5811         return AVERROR(ENOMEM);
5812     }
5813
5814     sc->cenc.auxiliary_info_sizes_count = data_size;
5815
5816     if (avio_read(pb, sc->cenc.auxiliary_info_sizes, data_size) != data_size) {
5817         av_log(c->fc, AV_LOG_ERROR, "failed to read the auxiliary info sizes");
5818         return AVERROR_INVALIDDATA;
5819     }
5820
5821     return 0;
5822 }
5823
5824 static int mov_read_dfla(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5825 {
5826     AVStream *st;
5827     int last, type, size, ret;
5828     uint8_t buf[4];
5829
5830     if (c->fc->nb_streams < 1)
5831         return 0;
5832     st = c->fc->streams[c->fc->nb_streams-1];
5833
5834     if ((uint64_t)atom.size > (1<<30) || atom.size < 42)
5835         return AVERROR_INVALIDDATA;
5836
5837     /* Check FlacSpecificBox version. */
5838     if (avio_r8(pb) != 0)
5839         return AVERROR_INVALIDDATA;
5840
5841     avio_rb24(pb); /* Flags */
5842
5843     avio_read(pb, buf, sizeof(buf));
5844     flac_parse_block_header(buf, &last, &type, &size);
5845
5846     if (type != FLAC_METADATA_TYPE_STREAMINFO || size != FLAC_STREAMINFO_SIZE) {
5847         av_log(c->fc, AV_LOG_ERROR, "STREAMINFO must be first FLACMetadataBlock\n");
5848         return AVERROR_INVALIDDATA;
5849     }
5850
5851     ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
5852     if (ret < 0)
5853         return ret;
5854
5855     if (!last)
5856         av_log(c->fc, AV_LOG_WARNING, "non-STREAMINFO FLACMetadataBlock(s) ignored\n");
5857
5858     return 0;
5859 }
5860
5861 static int mov_seek_auxiliary_info(MOVContext *c, MOVStreamContext *sc, int64_t index)
5862 {
5863     size_t auxiliary_info_seek_offset = 0;
5864     int i;
5865
5866     if (sc->cenc.auxiliary_info_default_size) {
5867         auxiliary_info_seek_offset = (size_t)sc->cenc.auxiliary_info_default_size * index;
5868     } else if (sc->cenc.auxiliary_info_sizes) {
5869         if (index > sc->cenc.auxiliary_info_sizes_count) {
5870             av_log(c, AV_LOG_ERROR, "current sample %"PRId64" greater than the number of auxiliary info sample sizes %"SIZE_SPECIFIER"\n",
5871                 index, sc->cenc.auxiliary_info_sizes_count);
5872             return AVERROR_INVALIDDATA;
5873         }
5874
5875         for (i = 0; i < index; i++) {
5876             auxiliary_info_seek_offset += sc->cenc.auxiliary_info_sizes[i];
5877         }
5878     }
5879
5880     if (auxiliary_info_seek_offset > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info) {
5881         av_log(c, AV_LOG_ERROR, "auxiliary info offset %"SIZE_SPECIFIER" greater than auxiliary info size %"SIZE_SPECIFIER"\n",
5882             auxiliary_info_seek_offset, (size_t)(sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info));
5883         return AVERROR_INVALIDDATA;
5884     }
5885
5886     sc->cenc.auxiliary_info_pos = sc->cenc.auxiliary_info + auxiliary_info_seek_offset;
5887     sc->cenc.auxiliary_info_index = index;
5888     return 0;
5889 }
5890
5891 static int cenc_filter(MOVContext *c, MOVStreamContext *sc, int64_t index, uint8_t *input, int size)
5892 {
5893     uint32_t encrypted_bytes;
5894     uint16_t subsample_count;
5895     uint16_t clear_bytes;
5896     uint8_t* input_end = input + size;
5897     int ret;
5898
5899     if (index != sc->cenc.auxiliary_info_index) {
5900         ret = mov_seek_auxiliary_info(c, sc, index);
5901         if (ret < 0) {
5902             return ret;
5903         }
5904     }
5905
5906     /* read the iv */
5907     if (AES_CTR_IV_SIZE > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
5908         av_log(c->fc, AV_LOG_ERROR, "failed to read iv from the auxiliary info\n");
5909         return AVERROR_INVALIDDATA;
5910     }
5911
5912     av_aes_ctr_set_iv(sc->cenc.aes_ctr, sc->cenc.auxiliary_info_pos);
5913     sc->cenc.auxiliary_info_pos += AES_CTR_IV_SIZE;
5914
5915     if (!sc->cenc.use_subsamples)
5916     {
5917         /* decrypt the whole packet */
5918         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, size);
5919         return 0;
5920     }
5921
5922     /* read the subsample count */
5923     if (sizeof(uint16_t) > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
5924         av_log(c->fc, AV_LOG_ERROR, "failed to read subsample count from the auxiliary info\n");
5925         return AVERROR_INVALIDDATA;
5926     }
5927
5928     subsample_count = AV_RB16(sc->cenc.auxiliary_info_pos);
5929     sc->cenc.auxiliary_info_pos += sizeof(uint16_t);
5930
5931     for (; subsample_count > 0; subsample_count--)
5932     {
5933         if (6 > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
5934             av_log(c->fc, AV_LOG_ERROR, "failed to read subsample from the auxiliary info\n");
5935             return AVERROR_INVALIDDATA;
5936         }
5937
5938         /* read the number of clear / encrypted bytes */
5939         clear_bytes = AV_RB16(sc->cenc.auxiliary_info_pos);
5940         sc->cenc.auxiliary_info_pos += sizeof(uint16_t);
5941         encrypted_bytes = AV_RB32(sc->cenc.auxiliary_info_pos);
5942         sc->cenc.auxiliary_info_pos += sizeof(uint32_t);
5943
5944         if ((uint64_t)clear_bytes + encrypted_bytes > input_end - input) {
5945             av_log(c->fc, AV_LOG_ERROR, "subsample size exceeds the packet size left\n");
5946             return AVERROR_INVALIDDATA;
5947         }
5948
5949         /* skip the clear bytes */
5950         input += clear_bytes;
5951
5952         /* decrypt the encrypted bytes */
5953         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, encrypted_bytes);
5954         input += encrypted_bytes;
5955     }
5956
5957     if (input < input_end) {
5958         av_log(c->fc, AV_LOG_ERROR, "leftover packet bytes after subsample processing\n");
5959         return AVERROR_INVALIDDATA;
5960     }
5961
5962     sc->cenc.auxiliary_info_index++;
5963     return 0;
5964 }
5965
5966 static int mov_read_dops(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5967 {
5968     const int OPUS_SEEK_PREROLL_MS = 80;
5969     AVStream *st;
5970     size_t size;
5971     int16_t pre_skip;
5972
5973     if (c->fc->nb_streams < 1)
5974         return 0;
5975     st = c->fc->streams[c->fc->nb_streams-1];
5976
5977     if ((uint64_t)atom.size > (1<<30) || atom.size < 11)
5978         return AVERROR_INVALIDDATA;
5979
5980     /* Check OpusSpecificBox version. */
5981     if (avio_r8(pb) != 0) {
5982         av_log(c->fc, AV_LOG_ERROR, "unsupported OpusSpecificBox version\n");
5983         return AVERROR_INVALIDDATA;
5984     }
5985
5986     /* OpusSpecificBox size plus magic for Ogg OpusHead header. */
5987     size = atom.size + 8;
5988
5989     if (ff_alloc_extradata(st->codecpar, size))
5990         return AVERROR(ENOMEM);
5991
5992     AV_WL32(st->codecpar->extradata, MKTAG('O','p','u','s'));
5993     AV_WL32(st->codecpar->extradata + 4, MKTAG('H','e','a','d'));
5994     AV_WB8(st->codecpar->extradata + 8, 1); /* OpusHead version */
5995     avio_read(pb, st->codecpar->extradata + 9, size - 9);
5996
5997     /* OpusSpecificBox is stored in big-endian, but OpusHead is
5998        little-endian; aside from the preceeding magic and version they're
5999        otherwise currently identical.  Data after output gain at offset 16
6000        doesn't need to be bytewapped. */
6001     pre_skip = AV_RB16(st->codecpar->extradata + 10);
6002     AV_WL16(st->codecpar->extradata + 10, pre_skip);
6003     AV_WL32(st->codecpar->extradata + 12, AV_RB32(st->codecpar->extradata + 12));
6004     AV_WL16(st->codecpar->extradata + 16, AV_RB16(st->codecpar->extradata + 16));
6005
6006     st->codecpar->initial_padding = pre_skip;
6007     st->codecpar->seek_preroll = av_rescale_q(OPUS_SEEK_PREROLL_MS,
6008                                               (AVRational){1, 1000},
6009                                               (AVRational){1, 48000});
6010
6011     return 0;
6012 }
6013
6014 static const MOVParseTableEntry mov_default_parse_table[] = {
6015 { MKTAG('A','C','L','R'), mov_read_aclr },
6016 { MKTAG('A','P','R','G'), mov_read_avid },
6017 { MKTAG('A','A','L','P'), mov_read_avid },
6018 { MKTAG('A','R','E','S'), mov_read_ares },
6019 { MKTAG('a','v','s','s'), mov_read_avss },
6020 { MKTAG('c','h','p','l'), mov_read_chpl },
6021 { MKTAG('c','o','6','4'), mov_read_stco },
6022 { MKTAG('c','o','l','r'), mov_read_colr },
6023 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
6024 { MKTAG('d','i','n','f'), mov_read_default },
6025 { MKTAG('D','p','x','E'), mov_read_dpxe },
6026 { MKTAG('d','r','e','f'), mov_read_dref },
6027 { MKTAG('e','d','t','s'), mov_read_default },
6028 { MKTAG('e','l','s','t'), mov_read_elst },
6029 { MKTAG('e','n','d','a'), mov_read_enda },
6030 { MKTAG('f','i','e','l'), mov_read_fiel },
6031 { MKTAG('a','d','r','m'), mov_read_adrm },
6032 { MKTAG('f','t','y','p'), mov_read_ftyp },
6033 { MKTAG('g','l','b','l'), mov_read_glbl },
6034 { MKTAG('h','d','l','r'), mov_read_hdlr },
6035 { MKTAG('i','l','s','t'), mov_read_ilst },
6036 { MKTAG('j','p','2','h'), mov_read_jp2h },
6037 { MKTAG('m','d','a','t'), mov_read_mdat },
6038 { MKTAG('m','d','h','d'), mov_read_mdhd },
6039 { MKTAG('m','d','i','a'), mov_read_default },
6040 { MKTAG('m','e','t','a'), mov_read_meta },
6041 { MKTAG('m','i','n','f'), mov_read_default },
6042 { MKTAG('m','o','o','f'), mov_read_moof },
6043 { MKTAG('m','o','o','v'), mov_read_moov },
6044 { MKTAG('m','v','e','x'), mov_read_default },
6045 { MKTAG('m','v','h','d'), mov_read_mvhd },
6046 { MKTAG('S','M','I',' '), mov_read_svq3 },
6047 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
6048 { MKTAG('a','v','c','C'), mov_read_glbl },
6049 { MKTAG('p','a','s','p'), mov_read_pasp },
6050 { MKTAG('s','i','d','x'), mov_read_sidx },
6051 { MKTAG('s','t','b','l'), mov_read_default },
6052 { MKTAG('s','t','c','o'), mov_read_stco },
6053 { MKTAG('s','t','p','s'), mov_read_stps },
6054 { MKTAG('s','t','r','f'), mov_read_strf },
6055 { MKTAG('s','t','s','c'), mov_read_stsc },
6056 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
6057 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
6058 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
6059 { MKTAG('s','t','t','s'), mov_read_stts },
6060 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
6061 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
6062 { MKTAG('t','f','d','t'), mov_read_tfdt },
6063 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
6064 { MKTAG('t','r','a','k'), mov_read_trak },
6065 { MKTAG('t','r','a','f'), mov_read_default },
6066 { MKTAG('t','r','e','f'), mov_read_default },
6067 { MKTAG('t','m','c','d'), mov_read_tmcd },
6068 { MKTAG('c','h','a','p'), mov_read_chap },
6069 { MKTAG('t','r','e','x'), mov_read_trex },
6070 { MKTAG('t','r','u','n'), mov_read_trun },
6071 { MKTAG('u','d','t','a'), mov_read_default },
6072 { MKTAG('w','a','v','e'), mov_read_wave },
6073 { MKTAG('e','s','d','s'), mov_read_esds },
6074 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
6075 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
6076 { MKTAG('d','d','t','s'), mov_read_ddts }, /* DTS audio descriptor */
6077 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
6078 { MKTAG('w','f','e','x'), mov_read_wfex },
6079 { MKTAG('c','m','o','v'), mov_read_cmov },
6080 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
6081 { MKTAG('d','v','c','1'), mov_read_dvc1 },
6082 { MKTAG('s','b','g','p'), mov_read_sbgp },
6083 { MKTAG('h','v','c','C'), mov_read_glbl },
6084 { MKTAG('u','u','i','d'), mov_read_uuid },
6085 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
6086 { MKTAG('f','r','e','e'), mov_read_free },
6087 { MKTAG('-','-','-','-'), mov_read_custom },
6088 { MKTAG('s','i','n','f'), mov_read_default },
6089 { MKTAG('f','r','m','a'), mov_read_frma },
6090 { MKTAG('s','e','n','c'), mov_read_senc },
6091 { MKTAG('s','a','i','z'), mov_read_saiz },
6092 { MKTAG('d','f','L','a'), mov_read_dfla },
6093 { MKTAG('s','t','3','d'), mov_read_st3d }, /* stereoscopic 3D video box */
6094 { MKTAG('s','v','3','d'), mov_read_sv3d }, /* spherical video box */
6095 { MKTAG('d','O','p','s'), mov_read_dops },
6096 { MKTAG('S','m','D','m'), mov_read_smdm },
6097 { MKTAG('C','o','L','L'), mov_read_coll },
6098 { MKTAG('v','p','c','C'), mov_read_vpcc },
6099 { MKTAG('m','d','c','v'), mov_read_mdcv },
6100 { MKTAG('c','l','l','i'), mov_read_clli },
6101 { 0, NULL }
6102 };
6103
6104 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6105 {
6106     int64_t total_size = 0;
6107     MOVAtom a;
6108     int i;
6109
6110     if (c->atom_depth > 10) {
6111         av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
6112         return AVERROR_INVALIDDATA;
6113     }
6114     c->atom_depth ++;
6115
6116     if (atom.size < 0)
6117         atom.size = INT64_MAX;
6118     while (total_size <= atom.size - 8 && !avio_feof(pb)) {
6119         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
6120         a.size = atom.size;
6121         a.type=0;
6122         if (atom.size >= 8) {
6123             a.size = avio_rb32(pb);
6124             a.type = avio_rl32(pb);
6125             if (a.type == MKTAG('f','r','e','e') &&
6126                 a.size >= 8 &&
6127                 c->fc->strict_std_compliance < FF_COMPLIANCE_STRICT &&
6128                 c->moov_retry) {
6129                 uint8_t buf[8];
6130                 uint32_t *type = (uint32_t *)buf + 1;
6131                 if (avio_read(pb, buf, 8) != 8)
6132                     return AVERROR_INVALIDDATA;
6133                 avio_seek(pb, -8, SEEK_CUR);
6134                 if (*type == MKTAG('m','v','h','d') ||
6135                     *type == MKTAG('c','m','o','v')) {
6136                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
6137                     a.type = MKTAG('m','o','o','v');
6138                 }
6139             }
6140             if (atom.type != MKTAG('r','o','o','t') &&
6141                 atom.type != MKTAG('m','o','o','v'))
6142             {
6143                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
6144                 {
6145                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
6146                     avio_skip(pb, -8);
6147                     c->atom_depth --;
6148                     return 0;
6149                 }
6150             }
6151             total_size += 8;
6152             if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
6153                 a.size = avio_rb64(pb) - 8;
6154                 total_size += 8;
6155             }
6156         }
6157         av_log(c->fc, AV_LOG_TRACE, "type:'%s' parent:'%s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
6158                av_fourcc2str(a.type), av_fourcc2str(atom.type), a.size, total_size, atom.size);
6159         if (a.size == 0) {
6160             a.size = atom.size - total_size + 8;
6161         }
6162         a.size -= 8;
6163         if (a.size < 0)
6164             break;
6165         a.size = FFMIN(a.size, atom.size - total_size);
6166
6167         for (i = 0; mov_default_parse_table[i].type; i++)
6168             if (mov_default_parse_table[i].type == a.type) {
6169                 parse = mov_default_parse_table[i].parse;
6170                 break;
6171             }
6172
6173         // container is user data
6174         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
6175                        atom.type == MKTAG('i','l','s','t')))
6176             parse = mov_read_udta_string;
6177
6178         // Supports parsing the QuickTime Metadata Keys.
6179         // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html
6180         if (!parse && c->found_hdlr_mdta &&
6181             atom.type == MKTAG('m','e','t','a') &&
6182             a.type == MKTAG('k','e','y','s')) {
6183             parse = mov_read_keys;
6184         }
6185
6186         if (!parse) { /* skip leaf atoms data */
6187             avio_skip(pb, a.size);
6188         } else {
6189             int64_t start_pos = avio_tell(pb);
6190             int64_t left;
6191             int err = parse(c, pb, a);
6192             if (err < 0) {
6193                 c->atom_depth --;
6194                 return err;
6195             }
6196             if (c->found_moov && c->found_mdat &&
6197                 ((!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete) ||
6198                  start_pos + a.size == avio_size(pb))) {
6199                 if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete)
6200                     c->next_root_atom = start_pos + a.size;
6201                 c->atom_depth --;
6202                 return 0;
6203             }
6204             left = a.size - avio_tell(pb) + start_pos;
6205             if (left > 0) /* skip garbage at atom end */
6206                 avio_skip(pb, left);
6207             else if (left < 0) {
6208                 av_log(c->fc, AV_LOG_WARNING,
6209                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
6210                        (char*)&a.type, -left);
6211                 avio_seek(pb, left, SEEK_CUR);
6212             }
6213         }
6214
6215         total_size += a.size;
6216     }
6217
6218     if (total_size < atom.size && atom.size < 0x7ffff)
6219         avio_skip(pb, atom.size - total_size);
6220
6221     c->atom_depth --;
6222     return 0;
6223 }
6224
6225 static int mov_probe(AVProbeData *p)
6226 {
6227     int64_t offset;
6228     uint32_t tag;
6229     int score = 0;
6230     int moov_offset = -1;
6231
6232     /* check file header */
6233     offset = 0;
6234     for (;;) {
6235         /* ignore invalid offset */
6236         if ((offset + 8) > (unsigned int)p->buf_size)
6237             break;
6238         tag = AV_RL32(p->buf + offset + 4);
6239         switch(tag) {
6240         /* check for obvious tags */
6241         case MKTAG('m','o','o','v'):
6242             moov_offset = offset + 4;
6243         case MKTAG('m','d','a','t'):
6244         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
6245         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
6246         case MKTAG('f','t','y','p'):
6247             if (AV_RB32(p->buf+offset) < 8 &&
6248                 (AV_RB32(p->buf+offset) != 1 ||
6249                  offset + 12 > (unsigned int)p->buf_size ||
6250                  AV_RB64(p->buf+offset + 8) == 0)) {
6251                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6252             } else if (tag == MKTAG('f','t','y','p') &&
6253                        (   AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')
6254                         || AV_RL32(p->buf + offset + 8) == MKTAG('j','p','x',' ')
6255                     )) {
6256                 score = FFMAX(score, 5);
6257             } else {
6258                 score = AVPROBE_SCORE_MAX;
6259             }
6260             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6261             break;
6262         /* those are more common words, so rate then a bit less */
6263         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
6264         case MKTAG('w','i','d','e'):
6265         case MKTAG('f','r','e','e'):
6266         case MKTAG('j','u','n','k'):
6267         case MKTAG('p','i','c','t'):
6268             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
6269             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6270             break;
6271         case MKTAG(0x82,0x82,0x7f,0x7d):
6272         case MKTAG('s','k','i','p'):
6273         case MKTAG('u','u','i','d'):
6274         case MKTAG('p','r','f','l'):
6275             /* if we only find those cause probedata is too small at least rate them */
6276             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6277             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6278             break;
6279         default:
6280             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6281         }
6282     }
6283     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
6284         /* moov atom in the header - we should make sure that this is not a
6285          * MOV-packed MPEG-PS */
6286         offset = moov_offset;
6287
6288         while(offset < (p->buf_size - 16)){ /* Sufficient space */
6289                /* We found an actual hdlr atom */
6290             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
6291                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
6292                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
6293                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
6294                 /* We found a media handler reference atom describing an
6295                  * MPEG-PS-in-MOV, return a
6296                  * low score to force expanding the probe window until
6297                  * mpegps_probe finds what it needs */
6298                 return 5;
6299             }else
6300                 /* Keep looking */
6301                 offset+=2;
6302         }
6303     }
6304
6305     return score;
6306 }
6307
6308 // must be done after parsing all trak because there's no order requirement
6309 static void mov_read_chapters(AVFormatContext *s)
6310 {
6311     MOVContext *mov = s->priv_data;
6312     AVStream *st;
6313     MOVStreamContext *sc;
6314     int64_t cur_pos;
6315     int i, j;
6316     int chapter_track;
6317
6318     for (j = 0; j < mov->nb_chapter_tracks; j++) {
6319         chapter_track = mov->chapter_tracks[j];
6320         st = NULL;
6321         for (i = 0; i < s->nb_streams; i++)
6322             if (s->streams[i]->id == chapter_track) {
6323                 st = s->streams[i];
6324                 break;
6325             }
6326         if (!st) {
6327             av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
6328             continue;
6329         }
6330
6331         sc = st->priv_data;
6332         cur_pos = avio_tell(sc->pb);
6333
6334         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6335             st->disposition |= AV_DISPOSITION_ATTACHED_PIC | AV_DISPOSITION_TIMED_THUMBNAILS;
6336             if (st->nb_index_entries) {
6337                 // Retrieve the first frame, if possible
6338                 AVPacket pkt;
6339                 AVIndexEntry *sample = &st->index_entries[0];
6340                 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
6341                     av_log(s, AV_LOG_ERROR, "Failed to retrieve first frame\n");
6342                     goto finish;
6343                 }
6344
6345                 if (av_get_packet(sc->pb, &pkt, sample->size) < 0)
6346                     goto finish;
6347
6348                 st->attached_pic              = pkt;
6349                 st->attached_pic.stream_index = st->index;
6350                 st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
6351             }
6352         } else {
6353             st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
6354             st->codecpar->codec_id = AV_CODEC_ID_BIN_DATA;
6355             st->discard = AVDISCARD_ALL;
6356             for (i = 0; i < st->nb_index_entries; i++) {
6357                 AVIndexEntry *sample = &st->index_entries[i];
6358                 int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
6359                 uint8_t *title;
6360                 uint16_t ch;
6361                 int len, title_len;
6362
6363                 if (end < sample->timestamp) {
6364                     av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
6365                     end = AV_NOPTS_VALUE;
6366                 }
6367
6368                 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
6369                     av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
6370                     goto finish;
6371                 }
6372
6373                 // the first two bytes are the length of the title
6374                 len = avio_rb16(sc->pb);
6375                 if (len > sample->size-2)
6376                     continue;
6377                 title_len = 2*len + 1;
6378                 if (!(title = av_mallocz(title_len)))
6379                     goto finish;
6380
6381                 // The samples could theoretically be in any encoding if there's an encd
6382                 // atom following, but in practice are only utf-8 or utf-16, distinguished
6383                 // instead by the presence of a BOM
6384                 if (!len) {
6385                     title[0] = 0;
6386                 } else {
6387                     ch = avio_rb16(sc->pb);
6388                     if (ch == 0xfeff)
6389                         avio_get_str16be(sc->pb, len, title, title_len);
6390                     else if (ch == 0xfffe)
6391                         avio_get_str16le(sc->pb, len, title, title_len);
6392                     else {
6393                         AV_WB16(title, ch);
6394                         if (len == 1 || len == 2)
6395                             title[len] = 0;
6396                         else
6397                             avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
6398                     }
6399                 }
6400
6401                 avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
6402                 av_freep(&title);
6403             }
6404         }
6405 finish:
6406         avio_seek(sc->pb, cur_pos, SEEK_SET);
6407     }
6408 }
6409
6410 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
6411                                              uint32_t value, int flags)
6412 {
6413     AVTimecode tc;
6414     char buf[AV_TIMECODE_STR_SIZE];
6415     AVRational rate = st->avg_frame_rate;
6416     int ret = av_timecode_init(&tc, rate, flags, 0, s);
6417     if (ret < 0)
6418         return ret;
6419     av_dict_set(&st->metadata, "timecode",
6420                 av_timecode_make_string(&tc, buf, value), 0);
6421     return 0;
6422 }
6423
6424 static int mov_read_rtmd_track(AVFormatContext *s, AVStream *st)
6425 {
6426     MOVStreamContext *sc = st->priv_data;
6427     char buf[AV_TIMECODE_STR_SIZE];
6428     int64_t cur_pos = avio_tell(sc->pb);
6429     int hh, mm, ss, ff, drop;
6430
6431     if (!st->nb_index_entries)
6432         return -1;
6433
6434     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
6435     avio_skip(s->pb, 13);
6436     hh = avio_r8(s->pb);
6437     mm = avio_r8(s->pb);
6438     ss = avio_r8(s->pb);
6439     drop = avio_r8(s->pb);
6440     ff = avio_r8(s->pb);
6441     snprintf(buf, AV_TIMECODE_STR_SIZE, "%02d:%02d:%02d%c%02d",
6442              hh, mm, ss, drop ? ';' : ':', ff);
6443     av_dict_set(&st->metadata, "timecode", buf, 0);
6444
6445     avio_seek(sc->pb, cur_pos, SEEK_SET);
6446     return 0;
6447 }
6448
6449 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
6450 {
6451     MOVStreamContext *sc = st->priv_data;
6452     int flags = 0;
6453     int64_t cur_pos = avio_tell(sc->pb);
6454     uint32_t value;
6455
6456     if (!st->nb_index_entries)
6457         return -1;
6458
6459     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
6460     value = avio_rb32(s->pb);
6461
6462     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
6463     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
6464     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
6465
6466     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
6467      * not the case) and thus assume "frame number format" instead of QT one.
6468      * No sample with tmcd track can be found with a QT timecode at the moment,
6469      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
6470      * format). */
6471     parse_timecode_in_framenum_format(s, st, value, flags);
6472
6473     avio_seek(sc->pb, cur_pos, SEEK_SET);
6474     return 0;
6475 }
6476
6477 static int mov_read_close(AVFormatContext *s)
6478 {
6479     MOVContext *mov = s->priv_data;
6480     int i, j;
6481
6482     for (i = 0; i < s->nb_streams; i++) {
6483         AVStream *st = s->streams[i];
6484         MOVStreamContext *sc = st->priv_data;
6485
6486         if (!sc)
6487             continue;
6488
6489         av_freep(&sc->ctts_data);
6490         for (j = 0; j < sc->drefs_count; j++) {
6491             av_freep(&sc->drefs[j].path);
6492             av_freep(&sc->drefs[j].dir);
6493         }
6494         av_freep(&sc->drefs);
6495
6496         sc->drefs_count = 0;
6497
6498         if (!sc->pb_is_copied)
6499             ff_format_io_close(s, &sc->pb);
6500
6501         sc->pb = NULL;
6502         av_freep(&sc->chunk_offsets);
6503         av_freep(&sc->stsc_data);
6504         av_freep(&sc->sample_sizes);
6505         av_freep(&sc->keyframes);
6506         av_freep(&sc->stts_data);
6507         av_freep(&sc->stps_data);
6508         av_freep(&sc->elst_data);
6509         av_freep(&sc->rap_group);
6510         av_freep(&sc->display_matrix);
6511         av_freep(&sc->index_ranges);
6512
6513         if (sc->extradata)
6514             for (j = 0; j < sc->stsd_count; j++)
6515                 av_free(sc->extradata[j]);
6516         av_freep(&sc->extradata);
6517         av_freep(&sc->extradata_size);
6518
6519         av_freep(&sc->cenc.auxiliary_info);
6520         av_freep(&sc->cenc.auxiliary_info_sizes);
6521         av_aes_ctr_free(sc->cenc.aes_ctr);
6522
6523         av_freep(&sc->stereo3d);
6524         av_freep(&sc->spherical);
6525         av_freep(&sc->mastering);
6526         av_freep(&sc->coll);
6527     }
6528
6529     if (mov->dv_demux) {
6530         avformat_free_context(mov->dv_fctx);
6531         mov->dv_fctx = NULL;
6532     }
6533
6534     if (mov->meta_keys) {
6535         for (i = 1; i < mov->meta_keys_count; i++) {
6536             av_freep(&mov->meta_keys[i]);
6537         }
6538         av_freep(&mov->meta_keys);
6539     }
6540
6541     av_freep(&mov->trex_data);
6542     av_freep(&mov->bitrates);
6543
6544     for (i = 0; i < mov->frag_index.nb_items; i++) {
6545         av_freep(&mov->frag_index.item[i].stream_info);
6546     }
6547     av_freep(&mov->frag_index.item);
6548
6549     av_freep(&mov->aes_decrypt);
6550     av_freep(&mov->chapter_tracks);
6551
6552     return 0;
6553 }
6554
6555 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
6556 {
6557     int i;
6558
6559     for (i = 0; i < s->nb_streams; i++) {
6560         AVStream *st = s->streams[i];
6561         MOVStreamContext *sc = st->priv_data;
6562
6563         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
6564             sc->timecode_track == tmcd_id)
6565             return 1;
6566     }
6567     return 0;
6568 }
6569
6570 /* look for a tmcd track not referenced by any video track, and export it globally */
6571 static void export_orphan_timecode(AVFormatContext *s)
6572 {
6573     int i;
6574
6575     for (i = 0; i < s->nb_streams; i++) {
6576         AVStream *st = s->streams[i];
6577
6578         if (st->codecpar->codec_tag  == MKTAG('t','m','c','d') &&
6579             !tmcd_is_referenced(s, i + 1)) {
6580             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
6581             if (tcr) {
6582                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
6583                 break;
6584             }
6585         }
6586     }
6587 }
6588
6589 static int read_tfra(MOVContext *mov, AVIOContext *f)
6590 {
6591     int version, fieldlength, i, j;
6592     int64_t pos = avio_tell(f);
6593     uint32_t size = avio_rb32(f);
6594     unsigned track_id, item_count;
6595
6596     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
6597         return 1;
6598     }
6599     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
6600
6601     version = avio_r8(f);
6602     avio_rb24(f);
6603     track_id = avio_rb32(f);
6604     fieldlength = avio_rb32(f);
6605     item_count = avio_rb32(f);
6606     for (i = 0; i < item_count; i++) {
6607         int64_t time, offset;
6608         int index;
6609         MOVFragmentStreamInfo * frag_stream_info;
6610
6611         if (avio_feof(f)) {
6612             return AVERROR_INVALIDDATA;
6613         }
6614
6615         if (version == 1) {
6616             time   = avio_rb64(f);
6617             offset = avio_rb64(f);
6618         } else {
6619             time   = avio_rb32(f);
6620             offset = avio_rb32(f);
6621         }
6622
6623         // The first sample of each stream in a fragment is always a random
6624         // access sample.  So it's entry in the tfra can be used as the
6625         // initial PTS of the fragment.
6626         index = update_frag_index(mov, offset);
6627         frag_stream_info = get_frag_stream_info(&mov->frag_index, index, track_id);
6628         if (frag_stream_info &&
6629             frag_stream_info->first_tfra_pts == AV_NOPTS_VALUE)
6630             frag_stream_info->first_tfra_pts = time;
6631
6632         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
6633             avio_r8(f);
6634         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
6635             avio_r8(f);
6636         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
6637             avio_r8(f);
6638     }
6639
6640     avio_seek(f, pos + size, SEEK_SET);
6641     return 0;
6642 }
6643
6644 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
6645 {
6646     int64_t stream_size = avio_size(f);
6647     int64_t original_pos = avio_tell(f);
6648     int64_t seek_ret;
6649     int32_t mfra_size;
6650     int ret = -1;
6651     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
6652         ret = seek_ret;
6653         goto fail;
6654     }
6655     mfra_size = avio_rb32(f);
6656     if (mfra_size < 0 || mfra_size > stream_size) {
6657         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
6658         goto fail;
6659     }
6660     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
6661         ret = seek_ret;
6662         goto fail;
6663     }
6664     if (avio_rb32(f) != mfra_size) {
6665         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
6666         goto fail;
6667     }
6668     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
6669         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
6670         goto fail;
6671     }
6672     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
6673     do {
6674         ret = read_tfra(c, f);
6675         if (ret < 0)
6676             goto fail;
6677     } while (!ret);
6678     ret = 0;
6679 fail:
6680     seek_ret = avio_seek(f, original_pos, SEEK_SET);
6681     if (seek_ret < 0) {
6682         av_log(c->fc, AV_LOG_ERROR,
6683                "failed to seek back after looking for mfra\n");
6684         ret = seek_ret;
6685     }
6686     return ret;
6687 }
6688
6689 static int mov_read_header(AVFormatContext *s)
6690 {
6691     MOVContext *mov = s->priv_data;
6692     AVIOContext *pb = s->pb;
6693     int j, err;
6694     MOVAtom atom = { AV_RL32("root") };
6695     int i;
6696
6697     if (mov->decryption_key_len != 0 && mov->decryption_key_len != AES_CTR_KEY_SIZE) {
6698         av_log(s, AV_LOG_ERROR, "Invalid decryption key len %d expected %d\n",
6699             mov->decryption_key_len, AES_CTR_KEY_SIZE);
6700         return AVERROR(EINVAL);
6701     }
6702
6703     mov->fc = s;
6704     mov->trak_index = -1;
6705     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
6706     if (pb->seekable & AVIO_SEEKABLE_NORMAL)
6707         atom.size = avio_size(pb);
6708     else
6709         atom.size = INT64_MAX;
6710
6711     /* check MOV header */
6712     do {
6713         if (mov->moov_retry)
6714             avio_seek(pb, 0, SEEK_SET);
6715         if ((err = mov_read_default(mov, pb, atom)) < 0) {
6716             av_log(s, AV_LOG_ERROR, "error reading header\n");
6717             mov_read_close(s);
6718             return err;
6719         }
6720     } while ((pb->seekable & AVIO_SEEKABLE_NORMAL) && !mov->found_moov && !mov->moov_retry++);
6721     if (!mov->found_moov) {
6722         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
6723         mov_read_close(s);
6724         return AVERROR_INVALIDDATA;
6725     }
6726     av_log(mov->fc, AV_LOG_TRACE, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
6727
6728     if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
6729         if (mov->nb_chapter_tracks > 0 && !mov->ignore_chapters)
6730             mov_read_chapters(s);
6731         for (i = 0; i < s->nb_streams; i++)
6732             if (s->streams[i]->codecpar->codec_tag == AV_RL32("tmcd")) {
6733                 mov_read_timecode_track(s, s->streams[i]);
6734             } else if (s->streams[i]->codecpar->codec_tag == AV_RL32("rtmd")) {
6735                 mov_read_rtmd_track(s, s->streams[i]);
6736             }
6737     }
6738
6739     /* copy timecode metadata from tmcd tracks to the related video streams */
6740     for (i = 0; i < s->nb_streams; i++) {
6741         AVStream *st = s->streams[i];
6742         MOVStreamContext *sc = st->priv_data;
6743         if (sc->timecode_track > 0) {
6744             AVDictionaryEntry *tcr;
6745             int tmcd_st_id = -1;
6746
6747             for (j = 0; j < s->nb_streams; j++)
6748                 if (s->streams[j]->id == sc->timecode_track)
6749                     tmcd_st_id = j;
6750
6751             if (tmcd_st_id < 0 || tmcd_st_id == i)
6752                 continue;
6753             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
6754             if (tcr)
6755                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
6756         }
6757     }
6758     export_orphan_timecode(s);
6759
6760     for (i = 0; i < s->nb_streams; i++) {
6761         AVStream *st = s->streams[i];
6762         MOVStreamContext *sc = st->priv_data;
6763         fix_timescale(mov, sc);
6764         if(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id == AV_CODEC_ID_AAC) {
6765             st->skip_samples = sc->start_pad;
6766         }
6767         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
6768             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
6769                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
6770         if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
6771             if (st->codecpar->width <= 0 || st->codecpar->height <= 0) {
6772                 st->codecpar->width  = sc->width;
6773                 st->codecpar->height = sc->height;
6774             }
6775             if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
6776                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
6777                     return err;
6778             }
6779         }
6780         if (mov->handbrake_version &&
6781             mov->handbrake_version <= 1000000*0 + 1000*10 + 2 &&  // 0.10.2
6782             st->codecpar->codec_id == AV_CODEC_ID_MP3
6783         ) {
6784             av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");
6785             st->need_parsing = AVSTREAM_PARSE_FULL;
6786         }
6787     }
6788
6789     if (mov->trex_data) {
6790         for (i = 0; i < s->nb_streams; i++) {
6791             AVStream *st = s->streams[i];
6792             MOVStreamContext *sc = st->priv_data;
6793             if (st->duration > 0) {
6794                 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
6795                     av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
6796                            sc->data_size, sc->time_scale);
6797                     mov_read_close(s);
6798                     return AVERROR_INVALIDDATA;
6799                 }
6800                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
6801             }
6802         }
6803     }
6804
6805     if (mov->use_mfra_for > 0) {
6806         for (i = 0; i < s->nb_streams; i++) {
6807             AVStream *st = s->streams[i];
6808             MOVStreamContext *sc = st->priv_data;
6809             if (sc->duration_for_fps > 0) {
6810                 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
6811                     av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
6812                            sc->data_size, sc->time_scale);
6813                     mov_read_close(s);
6814                     return AVERROR_INVALIDDATA;
6815                 }
6816                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale /
6817                     sc->duration_for_fps;
6818             }
6819         }
6820     }
6821
6822     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
6823         if (mov->bitrates[i]) {
6824             s->streams[i]->codecpar->bit_rate = mov->bitrates[i];
6825         }
6826     }
6827
6828     ff_rfps_calculate(s);
6829
6830     for (i = 0; i < s->nb_streams; i++) {
6831         AVStream *st = s->streams[i];
6832         MOVStreamContext *sc = st->priv_data;
6833
6834         switch (st->codecpar->codec_type) {
6835         case AVMEDIA_TYPE_AUDIO:
6836             err = ff_replaygain_export(st, s->metadata);
6837             if (err < 0) {
6838                 mov_read_close(s);
6839                 return err;
6840             }
6841             break;
6842         case AVMEDIA_TYPE_VIDEO:
6843             if (sc->display_matrix) {
6844                 err = av_stream_add_side_data(st, AV_PKT_DATA_DISPLAYMATRIX, (uint8_t*)sc->display_matrix,
6845                                               sizeof(int32_t) * 9);
6846                 if (err < 0)
6847                     return err;
6848
6849                 sc->display_matrix = NULL;
6850             }
6851             if (sc->stereo3d) {
6852                 err = av_stream_add_side_data(st, AV_PKT_DATA_STEREO3D,
6853                                               (uint8_t *)sc->stereo3d,
6854                                               sizeof(*sc->stereo3d));
6855                 if (err < 0)
6856                     return err;
6857
6858                 sc->stereo3d = NULL;
6859             }
6860             if (sc->spherical) {
6861                 err = av_stream_add_side_data(st, AV_PKT_DATA_SPHERICAL,
6862                                               (uint8_t *)sc->spherical,
6863                                               sc->spherical_size);
6864                 if (err < 0)
6865                     return err;
6866
6867                 sc->spherical = NULL;
6868             }
6869             if (sc->mastering) {
6870                 err = av_stream_add_side_data(st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA,
6871                                               (uint8_t *)sc->mastering,
6872                                               sizeof(*sc->mastering));
6873                 if (err < 0)
6874                     return err;
6875
6876                 sc->mastering = NULL;
6877             }
6878             if (sc->coll) {
6879                 err = av_stream_add_side_data(st, AV_PKT_DATA_CONTENT_LIGHT_LEVEL,
6880                                               (uint8_t *)sc->coll,
6881                                               sc->coll_size);
6882                 if (err < 0)
6883                     return err;
6884
6885                 sc->coll = NULL;
6886             }
6887             break;
6888         }
6889     }
6890     ff_configure_buffers_for_index(s, AV_TIME_BASE);
6891
6892     for (i = 0; i < mov->frag_index.nb_items; i++)
6893         if (mov->frag_index.item[i].moof_offset <= mov->fragment.moof_offset)
6894             mov->frag_index.item[i].headers_read = 1;
6895
6896     return 0;
6897 }
6898
6899 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
6900 {
6901     AVIndexEntry *sample = NULL;
6902     int64_t best_dts = INT64_MAX;
6903     int i;
6904     for (i = 0; i < s->nb_streams; i++) {
6905         AVStream *avst = s->streams[i];
6906         MOVStreamContext *msc = avst->priv_data;
6907         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
6908             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
6909             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
6910             av_log(s, AV_LOG_TRACE, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
6911             if (!sample || (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) && current_sample->pos < sample->pos) ||
6912                 ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
6913                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
6914                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
6915                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
6916                 sample = current_sample;
6917                 best_dts = dts;
6918                 *st = avst;
6919             }
6920         }
6921     }
6922     return sample;
6923 }
6924
6925 static int should_retry(AVIOContext *pb, int error_code) {
6926     if (error_code == AVERROR_EOF || avio_feof(pb))
6927         return 0;
6928
6929     return 1;
6930 }
6931
6932 static int mov_switch_root(AVFormatContext *s, int64_t target, int index)
6933 {
6934     int ret;
6935     MOVContext *mov = s->priv_data;
6936
6937     if (index >= 0 && index < mov->frag_index.nb_items)
6938         target = mov->frag_index.item[index].moof_offset;
6939     if (avio_seek(s->pb, target, SEEK_SET) != target) {
6940         av_log(mov->fc, AV_LOG_ERROR, "root atom offset 0x%"PRIx64": partial file\n", target);
6941         return AVERROR_INVALIDDATA;
6942     }
6943
6944     mov->next_root_atom = 0;
6945     if (index < 0 || index >= mov->frag_index.nb_items)
6946         index = search_frag_moof_offset(&mov->frag_index, target);
6947     if (index < mov->frag_index.nb_items) {
6948         if (index + 1 < mov->frag_index.nb_items)
6949             mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
6950         if (mov->frag_index.item[index].headers_read)
6951             return 0;
6952         mov->frag_index.item[index].headers_read = 1;
6953     }
6954
6955     mov->found_mdat = 0;
6956
6957     ret = mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX });
6958     if (ret < 0)
6959         return ret;
6960     if (avio_feof(s->pb))
6961         return AVERROR_EOF;
6962     av_log(s, AV_LOG_TRACE, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
6963
6964     return 1;
6965 }
6966
6967 static int mov_change_extradata(MOVStreamContext *sc, AVPacket *pkt)
6968 {
6969     uint8_t *side, *extradata;
6970     int extradata_size;
6971
6972     /* Save the current index. */
6973     sc->last_stsd_index = sc->stsc_data[sc->stsc_index].id - 1;
6974
6975     /* Notify the decoder that extradata changed. */
6976     extradata_size = sc->extradata_size[sc->last_stsd_index];
6977     extradata = sc->extradata[sc->last_stsd_index];
6978     if (extradata_size > 0 && extradata) {
6979         side = av_packet_new_side_data(pkt,
6980                                        AV_PKT_DATA_NEW_EXTRADATA,
6981                                        extradata_size);
6982         if (!side)
6983             return AVERROR(ENOMEM);
6984         memcpy(side, extradata, extradata_size);
6985     }
6986
6987     return 0;
6988 }
6989
6990 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
6991 {
6992     MOVContext *mov = s->priv_data;
6993     MOVStreamContext *sc;
6994     AVIndexEntry *sample;
6995     AVStream *st = NULL;
6996     int64_t current_index;
6997     int ret;
6998     mov->fc = s;
6999  retry:
7000     sample = mov_find_next_sample(s, &st);
7001     if (!sample || (mov->next_root_atom && sample->pos > mov->next_root_atom)) {
7002         if (!mov->next_root_atom)
7003             return AVERROR_EOF;
7004         if ((ret = mov_switch_root(s, mov->next_root_atom, -1)) < 0)
7005             return ret;
7006         goto retry;
7007     }
7008     sc = st->priv_data;
7009     /* must be done just before reading, to avoid infinite loop on sample */
7010     current_index = sc->current_index;
7011     mov_current_sample_inc(sc);
7012
7013     if (mov->next_root_atom) {
7014         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
7015         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
7016     }
7017
7018     if (st->discard != AVDISCARD_ALL) {
7019         int64_t ret64 = avio_seek(sc->pb, sample->pos, SEEK_SET);
7020         if (ret64 != sample->pos) {
7021             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
7022                    sc->ffindex, sample->pos);
7023             if (should_retry(sc->pb, ret64)) {
7024                 mov_current_sample_dec(sc);
7025             }
7026             return AVERROR_INVALIDDATA;
7027         }
7028
7029         if( st->discard == AVDISCARD_NONKEY && 0==(sample->flags & AVINDEX_KEYFRAME) ) {
7030             av_log(mov->fc, AV_LOG_DEBUG, "Nonkey frame from stream %d discarded due to AVDISCARD_NONKEY\n", sc->ffindex);
7031             goto retry;
7032         }
7033
7034         ret = av_get_packet(sc->pb, pkt, sample->size);
7035         if (ret < 0) {
7036             if (should_retry(sc->pb, ret)) {
7037                 mov_current_sample_dec(sc);
7038             }
7039             return ret;
7040         }
7041         if (sc->has_palette) {
7042             uint8_t *pal;
7043
7044             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
7045             if (!pal) {
7046                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
7047             } else {
7048                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
7049                 sc->has_palette = 0;
7050             }
7051         }
7052 #if CONFIG_DV_DEMUXER
7053         if (mov->dv_demux && sc->dv_audio_container) {
7054             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
7055             av_freep(&pkt->data);
7056             pkt->size = 0;
7057             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
7058             if (ret < 0)
7059                 return ret;
7060         }
7061 #endif
7062         if (st->codecpar->codec_id == AV_CODEC_ID_MP3 && !st->need_parsing && pkt->size > 4) {
7063             if (ff_mpa_check_header(AV_RB32(pkt->data)) < 0)
7064                 st->need_parsing = AVSTREAM_PARSE_FULL;
7065         }
7066     }
7067
7068     pkt->stream_index = sc->ffindex;
7069     pkt->dts = sample->timestamp;
7070     if (sample->flags & AVINDEX_DISCARD_FRAME) {
7071         pkt->flags |= AV_PKT_FLAG_DISCARD;
7072     }
7073     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
7074         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
7075         /* update ctts context */
7076         sc->ctts_sample++;
7077         if (sc->ctts_index < sc->ctts_count &&
7078             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
7079             sc->ctts_index++;
7080             sc->ctts_sample = 0;
7081         }
7082     } else {
7083         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
7084             st->index_entries[sc->current_sample].timestamp : st->duration;
7085         pkt->duration = next_dts - pkt->dts;
7086         pkt->pts = pkt->dts;
7087     }
7088     if (st->discard == AVDISCARD_ALL)
7089         goto retry;
7090     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
7091     pkt->pos = sample->pos;
7092
7093     /* Multiple stsd handling. */
7094     if (sc->stsc_data) {
7095         /* Keep track of the stsc index for the given sample, then check
7096         * if the stsd index is different from the last used one. */
7097         sc->stsc_sample++;
7098         if (mov_stsc_index_valid(sc->stsc_index, sc->stsc_count) &&
7099             mov_get_stsc_samples(sc, sc->stsc_index) == sc->stsc_sample) {
7100             sc->stsc_index++;
7101             sc->stsc_sample = 0;
7102         /* Do not check indexes after a switch. */
7103         } else if (sc->stsc_data[sc->stsc_index].id > 0 &&
7104                    sc->stsc_data[sc->stsc_index].id - 1 < sc->stsd_count &&
7105                    sc->stsc_data[sc->stsc_index].id - 1 != sc->last_stsd_index) {
7106             ret = mov_change_extradata(sc, pkt);
7107             if (ret < 0)
7108                 return ret;
7109         }
7110     }
7111
7112     if (mov->aax_mode)
7113         aax_filter(pkt->data, pkt->size, mov);
7114
7115     if (sc->cenc.aes_ctr) {
7116         ret = cenc_filter(mov, sc, current_index, pkt->data, pkt->size);
7117         if (ret) {
7118             return ret;
7119         }
7120     }
7121
7122     return 0;
7123 }
7124
7125 static int mov_seek_fragment(AVFormatContext *s, AVStream *st, int64_t timestamp)
7126 {
7127     MOVContext *mov = s->priv_data;
7128     int index;
7129
7130     if (!mov->frag_index.complete)
7131         return 0;
7132
7133     index = search_frag_timestamp(&mov->frag_index, st, timestamp);
7134     if (index < 0)
7135         index = 0;
7136     if (!mov->frag_index.item[index].headers_read)
7137         return mov_switch_root(s, -1, index);
7138     if (index + 1 < mov->frag_index.nb_items)
7139         mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
7140
7141     return 0;
7142 }
7143
7144 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
7145 {
7146     MOVStreamContext *sc = st->priv_data;
7147     int sample, time_sample, ret;
7148     unsigned int i;
7149
7150     timestamp -= sc->time_offset;
7151
7152     ret = mov_seek_fragment(s, st, timestamp);
7153     if (ret < 0)
7154         return ret;
7155
7156     sample = av_index_search_timestamp(st, timestamp, flags);
7157     av_log(s, AV_LOG_TRACE, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
7158     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
7159         sample = 0;
7160     if (sample < 0) /* not sure what to do */
7161         return AVERROR_INVALIDDATA;
7162     mov_current_sample_set(sc, sample);
7163     av_log(s, AV_LOG_TRACE, "stream %d, found sample %d\n", st->index, sc->current_sample);
7164     /* adjust ctts index */
7165     if (sc->ctts_data) {
7166         time_sample = 0;
7167         for (i = 0; i < sc->ctts_count; i++) {
7168             int next = time_sample + sc->ctts_data[i].count;
7169             if (next > sc->current_sample) {
7170                 sc->ctts_index = i;
7171                 sc->ctts_sample = sc->current_sample - time_sample;
7172                 break;
7173             }
7174             time_sample = next;
7175         }
7176     }
7177
7178     /* adjust stsd index */
7179     time_sample = 0;
7180     for (i = 0; i < sc->stsc_count; i++) {
7181         int next = time_sample + mov_get_stsc_samples(sc, i);
7182         if (next > sc->current_sample) {
7183             sc->stsc_index = i;
7184             sc->stsc_sample = sc->current_sample - time_sample;
7185             break;
7186         }
7187         time_sample = next;
7188     }
7189
7190     return sample;
7191 }
7192
7193 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
7194 {
7195     MOVContext *mc = s->priv_data;
7196     AVStream *st;
7197     int sample;
7198     int i;
7199
7200     if (stream_index >= s->nb_streams)
7201         return AVERROR_INVALIDDATA;
7202
7203     st = s->streams[stream_index];
7204     sample = mov_seek_stream(s, st, sample_time, flags);
7205     if (sample < 0)
7206         return sample;
7207
7208     if (mc->seek_individually) {
7209         /* adjust seek timestamp to found sample timestamp */
7210         int64_t seek_timestamp = st->index_entries[sample].timestamp;
7211
7212         for (i = 0; i < s->nb_streams; i++) {
7213             int64_t timestamp;
7214             MOVStreamContext *sc = s->streams[i]->priv_data;
7215             st = s->streams[i];
7216             st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
7217
7218             if (stream_index == i)
7219                 continue;
7220
7221             timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
7222             mov_seek_stream(s, st, timestamp, flags);
7223         }
7224     } else {
7225         for (i = 0; i < s->nb_streams; i++) {
7226             MOVStreamContext *sc;
7227             st = s->streams[i];
7228             sc = st->priv_data;
7229             mov_current_sample_set(sc, 0);
7230         }
7231         while (1) {
7232             MOVStreamContext *sc;
7233             AVIndexEntry *entry = mov_find_next_sample(s, &st);
7234             if (!entry)
7235                 return AVERROR_INVALIDDATA;
7236             sc = st->priv_data;
7237             if (sc->ffindex == stream_index && sc->current_sample == sample)
7238                 break;
7239             mov_current_sample_inc(sc);
7240         }
7241     }
7242     return 0;
7243 }
7244
7245 #define OFFSET(x) offsetof(MOVContext, x)
7246 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
7247 static const AVOption mov_options[] = {
7248     {"use_absolute_path",
7249         "allow using absolute path when opening alias, this is a possible security issue",
7250         OFFSET(use_absolute_path), AV_OPT_TYPE_BOOL, {.i64 = 0},
7251         0, 1, FLAGS},
7252     {"seek_streams_individually",
7253         "Seek each stream individually to the to the closest point",
7254         OFFSET(seek_individually), AV_OPT_TYPE_BOOL, { .i64 = 1 },
7255         0, 1, FLAGS},
7256     {"ignore_editlist", "Ignore the edit list atom.", OFFSET(ignore_editlist), AV_OPT_TYPE_BOOL, {.i64 = 0},
7257         0, 1, FLAGS},
7258     {"advanced_editlist",
7259         "Modify the AVIndex according to the editlists. Use this option to decode in the order specified by the edits.",
7260         OFFSET(advanced_editlist), AV_OPT_TYPE_BOOL, {.i64 = 1},
7261         0, 1, FLAGS},
7262     {"ignore_chapters", "", OFFSET(ignore_chapters), AV_OPT_TYPE_BOOL, {.i64 = 0},
7263         0, 1, FLAGS},
7264     {"use_mfra_for",
7265         "use mfra for fragment timestamps",
7266         OFFSET(use_mfra_for), AV_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
7267         -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
7268         "use_mfra_for"},
7269     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
7270         FLAGS, "use_mfra_for" },
7271     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
7272         FLAGS, "use_mfra_for" },
7273     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
7274         FLAGS, "use_mfra_for" },
7275     { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
7276         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7277     { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
7278         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7279     { "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
7280         AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7281     { "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
7282         "Fixed key used for handling Audible AAX files", OFFSET(audible_fixed_key),
7283         AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd20a51d67"},
7284         .flags = AV_OPT_FLAG_DECODING_PARAM },
7285     { "decryption_key", "The media decryption key (hex)", OFFSET(decryption_key), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7286     { "enable_drefs", "Enable external track support.", OFFSET(enable_drefs), AV_OPT_TYPE_BOOL,
7287         {.i64 = 0}, 0, 1, FLAGS },
7288
7289     { NULL },
7290 };
7291
7292 static const AVClass mov_class = {
7293     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
7294     .item_name  = av_default_item_name,
7295     .option     = mov_options,
7296     .version    = LIBAVUTIL_VERSION_INT,
7297 };
7298
7299 AVInputFormat ff_mov_demuxer = {
7300     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
7301     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
7302     .priv_class     = &mov_class,
7303     .priv_data_size = sizeof(MOVContext),
7304     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
7305     .read_probe     = mov_probe,
7306     .read_header    = mov_read_header,
7307     .read_packet    = mov_read_packet,
7308     .read_close     = mov_read_close,
7309     .read_seek      = mov_read_seek,
7310     .flags          = AVFMT_NO_BYTE_SEEK,
7311 };