]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
Merge commit '6f19bbcf8532d018d8d6d82e000738d0ac2385c9'
[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/sha.h"
45 #include "libavutil/timecode.h"
46 #include "libavcodec/ac3tab.h"
47 #include "libavcodec/mpegaudiodecheader.h"
48 #include "avformat.h"
49 #include "internal.h"
50 #include "avio_internal.h"
51 #include "riff.h"
52 #include "isom.h"
53 #include "libavcodec/get_bits.h"
54 #include "id3v1.h"
55 #include "mov_chan.h"
56 #include "replaygain.h"
57
58 #if CONFIG_ZLIB
59 #include <zlib.h>
60 #endif
61
62 #include "qtpalette.h"
63
64 /* those functions parse an atom */
65 /* links atom IDs to parse functions */
66 typedef struct MOVParseTableEntry {
67     uint32_t type;
68     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
69 } MOVParseTableEntry;
70
71 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
72 static int mov_read_mfra(MOVContext *c, AVIOContext *f);
73
74 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
75                                              unsigned len, const char *key)
76 {
77     char buf[16];
78
79     short current, total = 0;
80     avio_rb16(pb); // unknown
81     current = avio_rb16(pb);
82     if (len >= 6)
83         total = avio_rb16(pb);
84     if (!total)
85         snprintf(buf, sizeof(buf), "%d", current);
86     else
87         snprintf(buf, sizeof(buf), "%d/%d", current, total);
88     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
89     av_dict_set(&c->fc->metadata, key, buf, 0);
90
91     return 0;
92 }
93
94 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
95                                             unsigned len, const char *key)
96 {
97     /* bypass padding bytes */
98     avio_r8(pb);
99     avio_r8(pb);
100     avio_r8(pb);
101
102     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
103     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
104
105     return 0;
106 }
107
108 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
109                                         unsigned len, const char *key)
110 {
111     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
112     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
113
114     return 0;
115 }
116
117 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
118                              unsigned len, const char *key)
119 {
120     short genre;
121
122     avio_r8(pb); // unknown
123
124     genre = avio_r8(pb);
125     if (genre < 1 || genre > ID3v1_GENRE_MAX)
126         return 0;
127     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
128     av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);
129
130     return 0;
131 }
132
133 static const uint32_t mac_to_unicode[128] = {
134     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
135     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
136     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
137     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
138     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
139     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
140     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
141     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
142     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
143     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
144     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
145     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
146     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
147     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
148     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
149     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
150 };
151
152 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
153                                char *dst, int dstlen)
154 {
155     char *p = dst;
156     char *end = dst+dstlen-1;
157     int i;
158
159     for (i = 0; i < len; i++) {
160         uint8_t t, c = avio_r8(pb);
161         if (c < 0x80 && p < end)
162             *p++ = c;
163         else if (p < end)
164             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
165     }
166     *p = 0;
167     return p - dst;
168 }
169
170 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
171 {
172     AVPacket pkt;
173     AVStream *st;
174     MOVStreamContext *sc;
175     enum AVCodecID id;
176     int ret;
177
178     switch (type) {
179     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
180     case 0xe:  id = AV_CODEC_ID_PNG;   break;
181     case 0x1b: id = AV_CODEC_ID_BMP;   break;
182     default:
183         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
184         avio_skip(pb, len);
185         return 0;
186     }
187
188     st = avformat_new_stream(c->fc, NULL);
189     if (!st)
190         return AVERROR(ENOMEM);
191     sc = av_mallocz(sizeof(*sc));
192     if (!sc)
193         return AVERROR(ENOMEM);
194     st->priv_data = sc;
195
196     ret = av_get_packet(pb, &pkt, len);
197     if (ret < 0)
198         return ret;
199
200     if (pkt.size >= 8 && id != AV_CODEC_ID_BMP) {
201         if (AV_RB64(pkt.data) == 0x89504e470d0a1a0a) {
202             id = AV_CODEC_ID_PNG;
203         } else {
204             id = AV_CODEC_ID_MJPEG;
205         }
206     }
207
208     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
209
210     st->attached_pic              = pkt;
211     st->attached_pic.stream_index = st->index;
212     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
213
214     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
215     st->codecpar->codec_id   = id;
216
217     return 0;
218 }
219
220 // 3GPP TS 26.244
221 static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
222 {
223     char language[4] = { 0 };
224     char buf[200], place[100];
225     uint16_t langcode = 0;
226     double longitude, latitude, altitude;
227     const char *key = "location";
228
229     if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4) {
230         av_log(c->fc, AV_LOG_ERROR, "loci too short\n");
231         return AVERROR_INVALIDDATA;
232     }
233
234     avio_skip(pb, 4); // version+flags
235     langcode = avio_rb16(pb);
236     ff_mov_lang_to_iso639(langcode, language);
237     len -= 6;
238
239     len -= avio_get_str(pb, len, place, sizeof(place));
240     if (len < 1) {
241         av_log(c->fc, AV_LOG_ERROR, "place name too long\n");
242         return AVERROR_INVALIDDATA;
243     }
244     avio_skip(pb, 1); // role
245     len -= 1;
246
247     if (len < 12) {
248         av_log(c->fc, AV_LOG_ERROR,
249                "loci too short (%u bytes left, need at least %d)\n", len, 12);
250         return AVERROR_INVALIDDATA;
251     }
252     longitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
253     latitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
254     altitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
255
256     // Try to output in the same format as the ?xyz field
257     snprintf(buf, sizeof(buf), "%+08.4f%+09.4f",  latitude, longitude);
258     if (altitude)
259         av_strlcatf(buf, sizeof(buf), "%+f", altitude);
260     av_strlcatf(buf, sizeof(buf), "/%s", place);
261
262     if (*language && strcmp(language, "und")) {
263         char key2[16];
264         snprintf(key2, sizeof(key2), "%s-%s", key, language);
265         av_dict_set(&c->fc->metadata, key2, buf, 0);
266     }
267     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
268     return av_dict_set(&c->fc->metadata, key, buf, 0);
269 }
270
271 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
272 {
273     char tmp_key[5];
274     char key2[32], language[4] = {0};
275     char *str = NULL;
276     const char *key = NULL;
277     uint16_t langcode = 0;
278     uint32_t data_type = 0, str_size, str_size_alloc;
279     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
280     int raw = 0;
281     int num = 0;
282
283     switch (atom.type) {
284     case MKTAG( '@','P','R','M'): key = "premiere_version"; raw = 1; break;
285     case MKTAG( '@','P','R','Q'): key = "quicktime_version"; raw = 1; break;
286     case MKTAG( 'X','M','P','_'):
287         if (c->export_xmp) { key = "xmp"; raw = 1; } break;
288     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
289     case MKTAG( 'a','k','I','D'): key = "account_type";
290         parse = mov_metadata_int8_no_padding; break;
291     case MKTAG( 'a','p','I','D'): key = "account_id"; break;
292     case MKTAG( 'c','a','t','g'): key = "category"; break;
293     case MKTAG( 'c','p','i','l'): key = "compilation";
294         parse = mov_metadata_int8_no_padding; break;
295     case MKTAG( 'c','p','r','t'): key = "copyright"; break;
296     case MKTAG( 'd','e','s','c'): key = "description"; break;
297     case MKTAG( 'd','i','s','k'): key = "disc";
298         parse = mov_metadata_track_or_disc_number; break;
299     case MKTAG( 'e','g','i','d'): key = "episode_uid";
300         parse = mov_metadata_int8_no_padding; break;
301     case MKTAG( 'g','n','r','e'): key = "genre";
302         parse = mov_metadata_gnre; break;
303     case MKTAG( 'h','d','v','d'): key = "hd_video";
304         parse = mov_metadata_int8_no_padding; break;
305     case MKTAG( 'k','e','y','w'): key = "keywords";  break;
306     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
307     case MKTAG( 'l','o','c','i'):
308         return mov_metadata_loci(c, pb, atom.size);
309     case MKTAG( 'p','c','s','t'): key = "podcast";
310         parse = mov_metadata_int8_no_padding; break;
311     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
312         parse = mov_metadata_int8_no_padding; break;
313     case MKTAG( 'p','u','r','d'): key = "purchase_date"; break;
314     case MKTAG( 'r','t','n','g'): key = "rating";
315         parse = mov_metadata_int8_no_padding; break;
316     case MKTAG( 's','o','a','a'): key = "sort_album_artist"; break;
317     case MKTAG( 's','o','a','l'): key = "sort_album";   break;
318     case MKTAG( 's','o','a','r'): key = "sort_artist";  break;
319     case MKTAG( 's','o','c','o'): key = "sort_composer"; break;
320     case MKTAG( 's','o','n','m'): key = "sort_name";    break;
321     case MKTAG( 's','o','s','n'): key = "sort_show";    break;
322     case MKTAG( 's','t','i','k'): key = "media_type";
323         parse = mov_metadata_int8_no_padding; break;
324     case MKTAG( 't','r','k','n'): key = "track";
325         parse = mov_metadata_track_or_disc_number; break;
326     case MKTAG( 't','v','e','n'): key = "episode_id"; break;
327     case MKTAG( 't','v','e','s'): key = "episode_sort";
328         parse = mov_metadata_int8_bypass_padding; break;
329     case MKTAG( 't','v','n','n'): key = "network";   break;
330     case MKTAG( 't','v','s','h'): key = "show";      break;
331     case MKTAG( 't','v','s','n'): key = "season_number";
332         parse = mov_metadata_int8_bypass_padding; break;
333     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
334     case MKTAG(0xa9,'P','R','D'): key = "producer";  break;
335     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
336     case MKTAG(0xa9,'a','u','t'): key = "artist";    break;
337     case MKTAG(0xa9,'c','h','p'): key = "chapter";   break;
338     case MKTAG(0xa9,'c','m','t'): key = "comment";   break;
339     case MKTAG(0xa9,'c','o','m'): key = "composer";  break;
340     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
341     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
342     case MKTAG(0xa9,'d','i','r'): key = "director";  break;
343     case MKTAG(0xa9,'d','i','s'): key = "disclaimer"; break;
344     case MKTAG(0xa9,'e','d','1'): key = "edit_date"; break;
345     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
346     case MKTAG(0xa9,'f','m','t'): key = "original_format"; break;
347     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
348     case MKTAG(0xa9,'g','r','p'): key = "grouping";  break;
349     case MKTAG(0xa9,'h','s','t'): key = "host_computer"; break;
350     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
351     case MKTAG(0xa9,'l','y','r'): key = "lyrics";    break;
352     case MKTAG(0xa9,'m','a','k'): key = "make";      break;
353     case MKTAG(0xa9,'m','o','d'): key = "model";     break;
354     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
355     case MKTAG(0xa9,'o','p','e'): key = "original_artist"; break;
356     case MKTAG(0xa9,'p','r','d'): key = "producer";  break;
357     case MKTAG(0xa9,'p','r','f'): key = "performers"; break;
358     case MKTAG(0xa9,'r','e','q'): key = "playback_requirements"; break;
359     case MKTAG(0xa9,'s','r','c'): key = "original_source"; break;
360     case MKTAG(0xa9,'s','t','3'): key = "subtitle";  break;
361     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
362     case MKTAG(0xa9,'t','o','o'): key = "encoder";   break;
363     case MKTAG(0xa9,'t','r','k'): key = "track";     break;
364     case MKTAG(0xa9,'u','r','l'): key = "URL";       break;
365     case MKTAG(0xa9,'w','r','n'): key = "warning";   break;
366     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
367     case MKTAG(0xa9,'x','y','z'): key = "location";  break;
368     }
369 retry:
370     if (c->itunes_metadata && atom.size > 8) {
371         int data_size = avio_rb32(pb);
372         int tag = avio_rl32(pb);
373         if (tag == MKTAG('d','a','t','a') && data_size <= atom.size) {
374             data_type = avio_rb32(pb); // type
375             avio_rb32(pb); // unknown
376             str_size = data_size - 16;
377             atom.size -= 16;
378
379             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
380                 int ret = mov_read_covr(c, pb, data_type, str_size);
381                 if (ret < 0) {
382                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
383                 }
384                 return ret;
385             } else if (!key && c->found_hdlr_mdta && c->meta_keys) {
386                 uint32_t index = AV_RB32(&atom.type);
387                 if (index < c->meta_keys_count) {
388                     key = c->meta_keys[index];
389                 } else {
390                     av_log(c->fc, AV_LOG_WARNING,
391                            "The index of 'data' is out of range: %d >= %d.\n",
392                            index, c->meta_keys_count);
393                 }
394             }
395         } else return 0;
396     } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) {
397         str_size = avio_rb16(pb); // string length
398         if (str_size > atom.size) {
399             raw = 1;
400             avio_seek(pb, -2, SEEK_CUR);
401             av_log(c->fc, AV_LOG_WARNING, "UDTA parsing failed retrying raw\n");
402             goto retry;
403         }
404         langcode = avio_rb16(pb);
405         ff_mov_lang_to_iso639(langcode, language);
406         atom.size -= 4;
407     } else
408         str_size = atom.size;
409
410     if (c->export_all && !key) {
411         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
412         key = tmp_key;
413     }
414
415     if (!key)
416         return 0;
417     if (atom.size < 0 || str_size >= INT_MAX/2)
418         return AVERROR_INVALIDDATA;
419
420     // Allocates enough space if data_type is a int32 or float32 number, otherwise
421     // worst-case requirement for output string in case of utf8 coded input
422     num = (data_type >= 21 && data_type <= 23);
423     str_size_alloc = (num ? 512 : (raw ? str_size : str_size * 2)) + 1;
424     str = av_mallocz(str_size_alloc);
425     if (!str)
426         return AVERROR(ENOMEM);
427
428     if (parse)
429         parse(c, pb, str_size, key);
430     else {
431         if (!raw && (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff)))) { // MAC Encoded
432             mov_read_mac_string(c, pb, str_size, str, str_size_alloc);
433         } else if (data_type == 21) { // BE signed integer, variable size
434             int val = 0;
435             if (str_size == 1)
436                 val = (int8_t)avio_r8(pb);
437             else if (str_size == 2)
438                 val = (int16_t)avio_rb16(pb);
439             else if (str_size == 3)
440                 val = ((int32_t)(avio_rb24(pb)<<8))>>8;
441             else if (str_size == 4)
442                 val = (int32_t)avio_rb32(pb);
443             if (snprintf(str, str_size_alloc, "%d", val) >= str_size_alloc) {
444                 av_log(c->fc, AV_LOG_ERROR,
445                        "Failed to store the number (%d) in string.\n", val);
446                 av_free(str);
447                 return AVERROR_INVALIDDATA;
448             }
449         } else if (data_type == 22) { // BE unsigned integer, variable size
450             unsigned int val = 0;
451             if (str_size == 1)
452                 val = avio_r8(pb);
453             else if (str_size == 2)
454                 val = avio_rb16(pb);
455             else if (str_size == 3)
456                 val = avio_rb24(pb);
457             else if (str_size == 4)
458                 val = avio_rb32(pb);
459             if (snprintf(str, str_size_alloc, "%u", val) >= str_size_alloc) {
460                 av_log(c->fc, AV_LOG_ERROR,
461                        "Failed to store the number (%u) in string.\n", val);
462                 av_free(str);
463                 return AVERROR_INVALIDDATA;
464             }
465         } else if (data_type == 23 && str_size >= 4) {  // BE float32
466             float val = av_int2float(avio_rb32(pb));
467             if (snprintf(str, str_size_alloc, "%f", val) >= str_size_alloc) {
468                 av_log(c->fc, AV_LOG_ERROR,
469                        "Failed to store the float32 number (%f) in string.\n", val);
470                 av_free(str);
471                 return AVERROR_INVALIDDATA;
472             }
473         } else {
474             int ret = ffio_read_size(pb, str, str_size);
475             if (ret < 0) {
476                 av_free(str);
477                 return ret;
478             }
479             str[str_size] = 0;
480         }
481         c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
482         av_dict_set(&c->fc->metadata, key, str, 0);
483         if (*language && strcmp(language, "und")) {
484             snprintf(key2, sizeof(key2), "%s-%s", key, language);
485             av_dict_set(&c->fc->metadata, key2, str, 0);
486         }
487         if (!strcmp(key, "encoder")) {
488             int major, minor, micro;
489             if (sscanf(str, "HandBrake %d.%d.%d", &major, &minor, &micro) == 3) {
490                 c->handbrake_version = 1000000*major + 1000*minor + micro;
491             }
492         }
493     }
494     av_log(c->fc, AV_LOG_TRACE, "lang \"%3s\" ", language);
495     av_log(c->fc, AV_LOG_TRACE, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
496             key, str, (char*)&atom.type, str_size_alloc, atom.size);
497
498     av_freep(&str);
499     return 0;
500 }
501
502 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
503 {
504     int64_t start;
505     int i, nb_chapters, str_len, version;
506     char str[256+1];
507     int ret;
508
509     if (c->ignore_chapters)
510         return 0;
511
512     if ((atom.size -= 5) < 0)
513         return 0;
514
515     version = avio_r8(pb);
516     avio_rb24(pb);
517     if (version)
518         avio_rb32(pb); // ???
519     nb_chapters = avio_r8(pb);
520
521     for (i = 0; i < nb_chapters; i++) {
522         if (atom.size < 9)
523             return 0;
524
525         start = avio_rb64(pb);
526         str_len = avio_r8(pb);
527
528         if ((atom.size -= 9+str_len) < 0)
529             return 0;
530
531         ret = ffio_read_size(pb, str, str_len);
532         if (ret < 0)
533             return ret;
534         str[str_len] = 0;
535         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
536     }
537     return 0;
538 }
539
540 #define MIN_DATA_ENTRY_BOX_SIZE 12
541 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
542 {
543     AVStream *st;
544     MOVStreamContext *sc;
545     int entries, i, j;
546
547     if (c->fc->nb_streams < 1)
548         return 0;
549     st = c->fc->streams[c->fc->nb_streams-1];
550     sc = st->priv_data;
551
552     avio_rb32(pb); // version + flags
553     entries = avio_rb32(pb);
554     if (!entries ||
555         entries >  (atom.size - 1) / MIN_DATA_ENTRY_BOX_SIZE + 1 ||
556         entries >= UINT_MAX / sizeof(*sc->drefs))
557         return AVERROR_INVALIDDATA;
558     sc->drefs_count = 0;
559     av_free(sc->drefs);
560     sc->drefs_count = 0;
561     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
562     if (!sc->drefs)
563         return AVERROR(ENOMEM);
564     sc->drefs_count = entries;
565
566     for (i = 0; i < entries; i++) {
567         MOVDref *dref = &sc->drefs[i];
568         uint32_t size = avio_rb32(pb);
569         int64_t next = avio_tell(pb) + size - 4;
570
571         if (size < 12)
572             return AVERROR_INVALIDDATA;
573
574         dref->type = avio_rl32(pb);
575         avio_rb32(pb); // version + flags
576         av_log(c->fc, AV_LOG_TRACE, "type %.4s size %d\n", (char*)&dref->type, size);
577
578         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
579             /* macintosh alias record */
580             uint16_t volume_len, len;
581             int16_t type;
582             int ret;
583
584             avio_skip(pb, 10);
585
586             volume_len = avio_r8(pb);
587             volume_len = FFMIN(volume_len, 27);
588             ret = ffio_read_size(pb, dref->volume, 27);
589             if (ret < 0)
590                 return ret;
591             dref->volume[volume_len] = 0;
592             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
593
594             avio_skip(pb, 12);
595
596             len = avio_r8(pb);
597             len = FFMIN(len, 63);
598             ret = ffio_read_size(pb, dref->filename, 63);
599             if (ret < 0)
600                 return ret;
601             dref->filename[len] = 0;
602             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
603
604             avio_skip(pb, 16);
605
606             /* read next level up_from_alias/down_to_target */
607             dref->nlvl_from = avio_rb16(pb);
608             dref->nlvl_to   = avio_rb16(pb);
609             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
610                    dref->nlvl_from, dref->nlvl_to);
611
612             avio_skip(pb, 16);
613
614             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
615                 if(avio_feof(pb))
616                     return AVERROR_EOF;
617                 type = avio_rb16(pb);
618                 len = avio_rb16(pb);
619                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
620                 if (len&1)
621                     len += 1;
622                 if (type == 2) { // absolute path
623                     av_free(dref->path);
624                     dref->path = av_mallocz(len+1);
625                     if (!dref->path)
626                         return AVERROR(ENOMEM);
627
628                     ret = ffio_read_size(pb, dref->path, len);
629                     if (ret < 0) {
630                         av_freep(&dref->path);
631                         return ret;
632                     }
633                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
634                         len -= volume_len;
635                         memmove(dref->path, dref->path+volume_len, len);
636                         dref->path[len] = 0;
637                     }
638                     // trim string of any ending zeros
639                     for (j = len - 1; j >= 0; j--) {
640                         if (dref->path[j] == 0)
641                             len--;
642                         else
643                             break;
644                     }
645                     for (j = 0; j < len; j++)
646                         if (dref->path[j] == ':' || dref->path[j] == 0)
647                             dref->path[j] = '/';
648                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
649                 } else if (type == 0) { // directory name
650                     av_free(dref->dir);
651                     dref->dir = av_malloc(len+1);
652                     if (!dref->dir)
653                         return AVERROR(ENOMEM);
654
655                     ret = ffio_read_size(pb, dref->dir, len);
656                     if (ret < 0) {
657                         av_freep(&dref->dir);
658                         return ret;
659                     }
660                     dref->dir[len] = 0;
661                     for (j = 0; j < len; j++)
662                         if (dref->dir[j] == ':')
663                             dref->dir[j] = '/';
664                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
665                 } else
666                     avio_skip(pb, len);
667             }
668         } else {
669             av_log(c->fc, AV_LOG_DEBUG, "Unknown dref type 0x08%x size %d\n",
670                    dref->type, size);
671             entries--;
672             i--;
673         }
674         avio_seek(pb, next, SEEK_SET);
675     }
676     return 0;
677 }
678
679 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
680 {
681     AVStream *st;
682     uint32_t type;
683     uint32_t av_unused ctype;
684     int64_t title_size;
685     char *title_str;
686     int ret;
687
688     avio_r8(pb); /* version */
689     avio_rb24(pb); /* flags */
690
691     /* component type */
692     ctype = avio_rl32(pb);
693     type = avio_rl32(pb); /* component subtype */
694
695     av_log(c->fc, AV_LOG_TRACE, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
696     av_log(c->fc, AV_LOG_TRACE, "stype= %.4s\n", (char*)&type);
697
698     if (c->trak_index < 0) {  // meta not inside a trak
699         if (type == MKTAG('m','d','t','a')) {
700             c->found_hdlr_mdta = 1;
701         }
702         return 0;
703     }
704
705     st = c->fc->streams[c->fc->nb_streams-1];
706
707     if     (type == MKTAG('v','i','d','e'))
708         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
709     else if (type == MKTAG('s','o','u','n'))
710         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
711     else if (type == MKTAG('m','1','a',' '))
712         st->codecpar->codec_id = AV_CODEC_ID_MP2;
713     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
714         st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
715
716     avio_rb32(pb); /* component  manufacture */
717     avio_rb32(pb); /* component flags */
718     avio_rb32(pb); /* component flags mask */
719
720     title_size = atom.size - 24;
721     if (title_size > 0) {
722         title_str = av_malloc(title_size + 1); /* Add null terminator */
723         if (!title_str)
724             return AVERROR(ENOMEM);
725
726         ret = ffio_read_size(pb, title_str, title_size);
727         if (ret < 0) {
728             av_freep(&title_str);
729             return ret;
730         }
731         title_str[title_size] = 0;
732         if (title_str[0]) {
733             int off = (!c->isom && title_str[0] == title_size - 1);
734             av_dict_set(&st->metadata, "handler_name", title_str + off, 0);
735         }
736         av_freep(&title_str);
737     }
738
739     return 0;
740 }
741
742 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
743 {
744     AVStream *st;
745     int tag;
746
747     if (fc->nb_streams < 1)
748         return 0;
749     st = fc->streams[fc->nb_streams-1];
750
751     avio_rb32(pb); /* version + flags */
752     ff_mp4_read_descr(fc, pb, &tag);
753     if (tag == MP4ESDescrTag) {
754         ff_mp4_parse_es_descr(pb, NULL);
755     } else
756         avio_rb16(pb); /* ID */
757
758     ff_mp4_read_descr(fc, pb, &tag);
759     if (tag == MP4DecConfigDescrTag)
760         ff_mp4_read_dec_config_descr(fc, st, pb);
761     return 0;
762 }
763
764 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
765 {
766     return ff_mov_read_esds(c->fc, pb);
767 }
768
769 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
770 {
771     AVStream *st;
772     enum AVAudioServiceType *ast;
773     int ac3info, acmod, lfeon, bsmod;
774
775     if (c->fc->nb_streams < 1)
776         return 0;
777     st = c->fc->streams[c->fc->nb_streams-1];
778
779     ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
780                                                             sizeof(*ast));
781     if (!ast)
782         return AVERROR(ENOMEM);
783
784     ac3info = avio_rb24(pb);
785     bsmod = (ac3info >> 14) & 0x7;
786     acmod = (ac3info >> 11) & 0x7;
787     lfeon = (ac3info >> 10) & 0x1;
788     st->codecpar->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
789     st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
790     if (lfeon)
791         st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
792     *ast = bsmod;
793     if (st->codecpar->channels > 1 && bsmod == 0x7)
794         *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
795
796 #if FF_API_LAVF_AVCTX
797     FF_DISABLE_DEPRECATION_WARNINGS
798     st->codec->audio_service_type = *ast;
799     FF_ENABLE_DEPRECATION_WARNINGS
800 #endif
801
802     return 0;
803 }
804
805 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
806 {
807     AVStream *st;
808     enum AVAudioServiceType *ast;
809     int eac3info, acmod, lfeon, bsmod;
810
811     if (c->fc->nb_streams < 1)
812         return 0;
813     st = c->fc->streams[c->fc->nb_streams-1];
814
815     ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
816                                                             sizeof(*ast));
817     if (!ast)
818         return AVERROR(ENOMEM);
819
820     /* No need to parse fields for additional independent substreams and its
821      * associated dependent substreams since libavcodec's E-AC-3 decoder
822      * does not support them yet. */
823     avio_rb16(pb); /* data_rate and num_ind_sub */
824     eac3info = avio_rb24(pb);
825     bsmod = (eac3info >> 12) & 0x1f;
826     acmod = (eac3info >>  9) & 0x7;
827     lfeon = (eac3info >>  8) & 0x1;
828     st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
829     if (lfeon)
830         st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
831     st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
832     *ast = bsmod;
833     if (st->codecpar->channels > 1 && bsmod == 0x7)
834         *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
835
836 #if FF_API_LAVF_AVCTX
837     FF_DISABLE_DEPRECATION_WARNINGS
838     st->codec->audio_service_type = *ast;
839     FF_ENABLE_DEPRECATION_WARNINGS
840 #endif
841
842     return 0;
843 }
844
845 static int mov_read_ddts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
846 {
847     const uint32_t ddts_size = 20;
848     AVStream *st = NULL;
849     uint8_t *buf = NULL;
850     uint32_t frame_duration_code = 0;
851     uint32_t channel_layout_code = 0;
852     GetBitContext gb;
853
854     buf = av_malloc(ddts_size + FF_INPUT_BUFFER_PADDING_SIZE);
855     if (!buf) {
856         return AVERROR(ENOMEM);
857     }
858     if (avio_read(pb, buf, ddts_size) < ddts_size) {
859         av_free(buf);
860         return AVERROR_INVALIDDATA;
861     }
862
863     init_get_bits(&gb, buf, 8*ddts_size);
864
865     if (c->fc->nb_streams < 1) {
866         return 0;
867     }
868     st = c->fc->streams[c->fc->nb_streams-1];
869
870     st->codecpar->sample_rate = get_bits_long(&gb, 32);
871     skip_bits_long(&gb, 32); /* max bitrate */
872     st->codecpar->bit_rate = get_bits_long(&gb, 32);
873     st->codecpar->bits_per_coded_sample = get_bits(&gb, 8);
874     frame_duration_code = get_bits(&gb, 2);
875     skip_bits(&gb, 30); /* various fields */
876     channel_layout_code = get_bits(&gb, 16);
877
878     st->codecpar->frame_size =
879             (frame_duration_code == 0) ? 512 :
880             (frame_duration_code == 1) ? 1024 :
881             (frame_duration_code == 2) ? 2048 :
882             (frame_duration_code == 3) ? 4096 : 0;
883
884     if (channel_layout_code > 0xff) {
885         av_log(c->fc, AV_LOG_WARNING, "Unsupported DTS audio channel layout");
886     }
887     st->codecpar->channel_layout =
888             ((channel_layout_code & 0x1) ? AV_CH_FRONT_CENTER : 0) |
889             ((channel_layout_code & 0x2) ? AV_CH_FRONT_LEFT : 0) |
890             ((channel_layout_code & 0x2) ? AV_CH_FRONT_RIGHT : 0) |
891             ((channel_layout_code & 0x4) ? AV_CH_SIDE_LEFT : 0) |
892             ((channel_layout_code & 0x4) ? AV_CH_SIDE_RIGHT : 0) |
893             ((channel_layout_code & 0x8) ? AV_CH_LOW_FREQUENCY : 0);
894
895     st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
896
897     return 0;
898 }
899
900 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
901 {
902     AVStream *st;
903
904     if (c->fc->nb_streams < 1)
905         return 0;
906     st = c->fc->streams[c->fc->nb_streams-1];
907
908     if (atom.size < 16)
909         return 0;
910
911     /* skip version and flags */
912     avio_skip(pb, 4);
913
914     ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
915
916     return 0;
917 }
918
919 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
920 {
921     AVStream *st;
922     int ret;
923
924     if (c->fc->nb_streams < 1)
925         return 0;
926     st = c->fc->streams[c->fc->nb_streams-1];
927
928     if ((ret = ff_get_wav_header(c->fc, pb, st->codecpar, atom.size, 0)) < 0)
929         av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
930
931     return ret;
932 }
933
934 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
935 {
936     const int num = avio_rb32(pb);
937     const int den = avio_rb32(pb);
938     AVStream *st;
939
940     if (c->fc->nb_streams < 1)
941         return 0;
942     st = c->fc->streams[c->fc->nb_streams-1];
943
944     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
945         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
946         av_log(c->fc, AV_LOG_WARNING,
947                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
948                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
949                num, den);
950     } else if (den != 0) {
951         av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den,
952                   num, den, 32767);
953     }
954     return 0;
955 }
956
957 /* this atom contains actual media data */
958 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
959 {
960     if (atom.size == 0) /* wrong one (MP4) */
961         return 0;
962     c->found_mdat=1;
963     return 0; /* now go for moov */
964 }
965
966 #define DRM_BLOB_SIZE 56
967
968 static int mov_read_adrm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
969 {
970     uint8_t intermediate_key[20];
971     uint8_t intermediate_iv[20];
972     uint8_t input[64];
973     uint8_t output[64];
974     uint8_t file_checksum[20];
975     uint8_t calculated_checksum[20];
976     struct AVSHA *sha;
977     int i;
978     int ret = 0;
979     uint8_t *activation_bytes = c->activation_bytes;
980     uint8_t *fixed_key = c->audible_fixed_key;
981
982     c->aax_mode = 1;
983
984     sha = av_sha_alloc();
985     if (!sha)
986         return AVERROR(ENOMEM);
987     c->aes_decrypt = av_aes_alloc();
988     if (!c->aes_decrypt) {
989         ret = AVERROR(ENOMEM);
990         goto fail;
991     }
992
993     /* drm blob processing */
994     avio_read(pb, output, 8); // go to offset 8, absolute position 0x251
995     avio_read(pb, input, DRM_BLOB_SIZE);
996     avio_read(pb, output, 4); // go to offset 4, absolute position 0x28d
997     avio_read(pb, file_checksum, 20);
998
999     av_log(c->fc, AV_LOG_INFO, "[aax] file checksum == "); // required by external tools
1000     for (i = 0; i < 20; i++)
1001         av_log(c->fc, AV_LOG_INFO, "%02x", file_checksum[i]);
1002     av_log(c->fc, AV_LOG_INFO, "\n");
1003
1004     /* verify activation data */
1005     if (!activation_bytes) {
1006         av_log(c->fc, AV_LOG_WARNING, "[aax] activation_bytes option is missing!\n");
1007         ret = 0;  /* allow ffprobe to continue working on .aax files */
1008         goto fail;
1009     }
1010     if (c->activation_bytes_size != 4) {
1011         av_log(c->fc, AV_LOG_FATAL, "[aax] activation_bytes value needs to be 4 bytes!\n");
1012         ret = AVERROR(EINVAL);
1013         goto fail;
1014     }
1015
1016     /* verify fixed key */
1017     if (c->audible_fixed_key_size != 16) {
1018         av_log(c->fc, AV_LOG_FATAL, "[aax] audible_fixed_key value needs to be 16 bytes!\n");
1019         ret = AVERROR(EINVAL);
1020         goto fail;
1021     }
1022
1023     /* AAX (and AAX+) key derivation */
1024     av_sha_init(sha, 160);
1025     av_sha_update(sha, fixed_key, 16);
1026     av_sha_update(sha, activation_bytes, 4);
1027     av_sha_final(sha, intermediate_key);
1028     av_sha_init(sha, 160);
1029     av_sha_update(sha, fixed_key, 16);
1030     av_sha_update(sha, intermediate_key, 20);
1031     av_sha_update(sha, activation_bytes, 4);
1032     av_sha_final(sha, intermediate_iv);
1033     av_sha_init(sha, 160);
1034     av_sha_update(sha, intermediate_key, 16);
1035     av_sha_update(sha, intermediate_iv, 16);
1036     av_sha_final(sha, calculated_checksum);
1037     if (memcmp(calculated_checksum, file_checksum, 20)) { // critical error
1038         av_log(c->fc, AV_LOG_ERROR, "[aax] mismatch in checksums!\n");
1039         ret = AVERROR_INVALIDDATA;
1040         goto fail;
1041     }
1042     av_aes_init(c->aes_decrypt, intermediate_key, 128, 1);
1043     av_aes_crypt(c->aes_decrypt, output, input, DRM_BLOB_SIZE >> 4, intermediate_iv, 1);
1044     for (i = 0; i < 4; i++) {
1045         // file data (in output) is stored in big-endian mode
1046         if (activation_bytes[i] != output[3 - i]) { // critical error
1047             av_log(c->fc, AV_LOG_ERROR, "[aax] error in drm blob decryption!\n");
1048             ret = AVERROR_INVALIDDATA;
1049             goto fail;
1050         }
1051     }
1052     memcpy(c->file_key, output + 8, 16);
1053     memcpy(input, output + 26, 16);
1054     av_sha_init(sha, 160);
1055     av_sha_update(sha, input, 16);
1056     av_sha_update(sha, c->file_key, 16);
1057     av_sha_update(sha, fixed_key, 16);
1058     av_sha_final(sha, c->file_iv);
1059
1060 fail:
1061     av_free(sha);
1062
1063     return ret;
1064 }
1065
1066 // Audible AAX (and AAX+) bytestream decryption
1067 static int aax_filter(uint8_t *input, int size, MOVContext *c)
1068 {
1069     int blocks = 0;
1070     unsigned char iv[16];
1071
1072     memcpy(iv, c->file_iv, 16); // iv is overwritten
1073     blocks = size >> 4; // trailing bytes are not encrypted!
1074     av_aes_init(c->aes_decrypt, c->file_key, 128, 1);
1075     av_aes_crypt(c->aes_decrypt, input, input, blocks, iv, 1);
1076
1077     return 0;
1078 }
1079
1080 /* read major brand, minor version and compatible brands and store them as metadata */
1081 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1082 {
1083     uint32_t minor_ver;
1084     int comp_brand_size;
1085     char* comp_brands_str;
1086     uint8_t type[5] = {0};
1087     int ret = ffio_read_size(pb, type, 4);
1088     if (ret < 0)
1089         return ret;
1090
1091     if (strcmp(type, "qt  "))
1092         c->isom = 1;
1093     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
1094     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
1095     minor_ver = avio_rb32(pb); /* minor version */
1096     av_dict_set_int(&c->fc->metadata, "minor_version", minor_ver, 0);
1097
1098     comp_brand_size = atom.size - 8;
1099     if (comp_brand_size < 0)
1100         return AVERROR_INVALIDDATA;
1101     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
1102     if (!comp_brands_str)
1103         return AVERROR(ENOMEM);
1104
1105     ret = ffio_read_size(pb, comp_brands_str, comp_brand_size);
1106     if (ret < 0) {
1107         av_freep(&comp_brands_str);
1108         return ret;
1109     }
1110     comp_brands_str[comp_brand_size] = 0;
1111     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
1112     av_freep(&comp_brands_str);
1113
1114     return 0;
1115 }
1116
1117 /* this atom should contain all header atoms */
1118 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1119 {
1120     int ret;
1121
1122     if (c->found_moov) {
1123         av_log(c->fc, AV_LOG_WARNING, "Found duplicated MOOV Atom. Skipped it\n");
1124         avio_skip(pb, atom.size);
1125         return 0;
1126     }
1127
1128     if ((ret = mov_read_default(c, pb, atom)) < 0)
1129         return ret;
1130     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
1131     /* so we don't parse the whole file if over a network */
1132     c->found_moov=1;
1133     return 0; /* now go for mdat */
1134 }
1135
1136 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1137 {
1138     if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
1139         c->has_looked_for_mfra = 1;
1140         if (pb->seekable) {
1141             int ret;
1142             av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
1143                     "for a mfra\n");
1144             if ((ret = mov_read_mfra(c, pb)) < 0) {
1145                 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
1146                         "read the mfra (may be a live ismv)\n");
1147             }
1148         } else {
1149             av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but stream is not "
1150                     "seekable, can not look for mfra\n");
1151         }
1152     }
1153     c->fragment.moof_offset = c->fragment.implicit_offset = avio_tell(pb) - 8;
1154     av_log(c->fc, AV_LOG_TRACE, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
1155     return mov_read_default(c, pb, atom);
1156 }
1157
1158 static void mov_metadata_creation_time(AVDictionary **metadata, int64_t time)
1159 {
1160     if (time) {
1161         if(time >= 2082844800)
1162             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
1163         avpriv_dict_set_timestamp(metadata, "creation_time", time * 1000000);
1164     }
1165 }
1166
1167 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1168 {
1169     AVStream *st;
1170     MOVStreamContext *sc;
1171     int version;
1172     char language[4] = {0};
1173     unsigned lang;
1174     int64_t creation_time;
1175
1176     if (c->fc->nb_streams < 1)
1177         return 0;
1178     st = c->fc->streams[c->fc->nb_streams-1];
1179     sc = st->priv_data;
1180
1181     if (sc->time_scale) {
1182         av_log(c->fc, AV_LOG_ERROR, "Multiple mdhd?\n");
1183         return AVERROR_INVALIDDATA;
1184     }
1185
1186     version = avio_r8(pb);
1187     if (version > 1) {
1188         avpriv_request_sample(c->fc, "Version %d", version);
1189         return AVERROR_PATCHWELCOME;
1190     }
1191     avio_rb24(pb); /* flags */
1192     if (version == 1) {
1193         creation_time = avio_rb64(pb);
1194         avio_rb64(pb);
1195     } else {
1196         creation_time = avio_rb32(pb);
1197         avio_rb32(pb); /* modification time */
1198     }
1199     mov_metadata_creation_time(&st->metadata, creation_time);
1200
1201     sc->time_scale = avio_rb32(pb);
1202     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1203
1204     lang = avio_rb16(pb); /* language */
1205     if (ff_mov_lang_to_iso639(lang, language))
1206         av_dict_set(&st->metadata, "language", language, 0);
1207     avio_rb16(pb); /* quality */
1208
1209     return 0;
1210 }
1211
1212 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1213 {
1214     int64_t creation_time;
1215     int version = avio_r8(pb); /* version */
1216     avio_rb24(pb); /* flags */
1217
1218     if (version == 1) {
1219         creation_time = avio_rb64(pb);
1220         avio_rb64(pb);
1221     } else {
1222         creation_time = avio_rb32(pb);
1223         avio_rb32(pb); /* modification time */
1224     }
1225     mov_metadata_creation_time(&c->fc->metadata, creation_time);
1226     c->time_scale = avio_rb32(pb); /* time scale */
1227
1228     av_log(c->fc, AV_LOG_TRACE, "time scale = %i\n", c->time_scale);
1229
1230     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1231     // set the AVCodecContext duration because the duration of individual tracks
1232     // may be inaccurate
1233     if (c->time_scale > 0 && !c->trex_data)
1234         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
1235     avio_rb32(pb); /* preferred scale */
1236
1237     avio_rb16(pb); /* preferred volume */
1238
1239     avio_skip(pb, 10); /* reserved */
1240
1241     avio_skip(pb, 36); /* display matrix */
1242
1243     avio_rb32(pb); /* preview time */
1244     avio_rb32(pb); /* preview duration */
1245     avio_rb32(pb); /* poster time */
1246     avio_rb32(pb); /* selection time */
1247     avio_rb32(pb); /* selection duration */
1248     avio_rb32(pb); /* current time */
1249     avio_rb32(pb); /* next track ID */
1250
1251     return 0;
1252 }
1253
1254 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1255 {
1256     AVStream *st;
1257     int little_endian;
1258
1259     if (c->fc->nb_streams < 1)
1260         return 0;
1261     st = c->fc->streams[c->fc->nb_streams-1];
1262
1263     little_endian = avio_rb16(pb) & 0xFF;
1264     av_log(c->fc, AV_LOG_TRACE, "enda %d\n", little_endian);
1265     if (little_endian == 1) {
1266         switch (st->codecpar->codec_id) {
1267         case AV_CODEC_ID_PCM_S24BE:
1268             st->codecpar->codec_id = AV_CODEC_ID_PCM_S24LE;
1269             break;
1270         case AV_CODEC_ID_PCM_S32BE:
1271             st->codecpar->codec_id = AV_CODEC_ID_PCM_S32LE;
1272             break;
1273         case AV_CODEC_ID_PCM_F32BE:
1274             st->codecpar->codec_id = AV_CODEC_ID_PCM_F32LE;
1275             break;
1276         case AV_CODEC_ID_PCM_F64BE:
1277             st->codecpar->codec_id = AV_CODEC_ID_PCM_F64LE;
1278             break;
1279         default:
1280             break;
1281         }
1282     }
1283     return 0;
1284 }
1285
1286 static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1287 {
1288     AVStream *st;
1289     char color_parameter_type[5] = { 0 };
1290     uint16_t color_primaries, color_trc, color_matrix;
1291     int ret;
1292
1293     if (c->fc->nb_streams < 1)
1294         return 0;
1295     st = c->fc->streams[c->fc->nb_streams - 1];
1296
1297     ret = ffio_read_size(pb, color_parameter_type, 4);
1298     if (ret < 0)
1299         return ret;
1300     if (strncmp(color_parameter_type, "nclx", 4) &&
1301         strncmp(color_parameter_type, "nclc", 4)) {
1302         av_log(c->fc, AV_LOG_WARNING, "unsupported color_parameter_type %s\n",
1303                color_parameter_type);
1304         return 0;
1305     }
1306
1307     color_primaries = avio_rb16(pb);
1308     color_trc = avio_rb16(pb);
1309     color_matrix = avio_rb16(pb);
1310
1311     av_log(c->fc, AV_LOG_TRACE,
1312            "%s: pri %d trc %d matrix %d",
1313            color_parameter_type, color_primaries, color_trc, color_matrix);
1314
1315     if (!strncmp(color_parameter_type, "nclx", 4)) {
1316         uint8_t color_range = avio_r8(pb) >> 7;
1317         av_log(c->fc, AV_LOG_TRACE, " full %"PRIu8"", color_range);
1318         if (color_range)
1319             st->codecpar->color_range = AVCOL_RANGE_JPEG;
1320         else
1321             st->codecpar->color_range = AVCOL_RANGE_MPEG;
1322     }
1323     if (color_primaries >= AVCOL_PRI_NB)
1324         color_primaries = AVCOL_PRI_UNSPECIFIED;
1325     if (color_trc >= AVCOL_TRC_NB)
1326         color_trc = AVCOL_TRC_UNSPECIFIED;
1327     if (color_matrix >= AVCOL_SPC_NB)
1328         color_matrix = AVCOL_SPC_UNSPECIFIED;
1329     st->codecpar->color_primaries = color_primaries;
1330     st->codecpar->color_trc       = color_trc;
1331     st->codecpar->color_space     = color_matrix;
1332     av_log(c->fc, AV_LOG_TRACE, "\n");
1333
1334     return 0;
1335 }
1336
1337 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1338 {
1339     AVStream *st;
1340     unsigned mov_field_order;
1341     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
1342
1343     if (c->fc->nb_streams < 1) // will happen with jp2 files
1344         return 0;
1345     st = c->fc->streams[c->fc->nb_streams-1];
1346     if (atom.size < 2)
1347         return AVERROR_INVALIDDATA;
1348     mov_field_order = avio_rb16(pb);
1349     if ((mov_field_order & 0xFF00) == 0x0100)
1350         decoded_field_order = AV_FIELD_PROGRESSIVE;
1351     else if ((mov_field_order & 0xFF00) == 0x0200) {
1352         switch (mov_field_order & 0xFF) {
1353         case 0x01: decoded_field_order = AV_FIELD_TT;
1354                    break;
1355         case 0x06: decoded_field_order = AV_FIELD_BB;
1356                    break;
1357         case 0x09: decoded_field_order = AV_FIELD_TB;
1358                    break;
1359         case 0x0E: decoded_field_order = AV_FIELD_BT;
1360                    break;
1361         }
1362     }
1363     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
1364         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
1365     }
1366     st->codecpar->field_order = decoded_field_order;
1367
1368     return 0;
1369 }
1370
1371 static int mov_realloc_extradata(AVCodecParameters *par, MOVAtom atom)
1372 {
1373     int err = 0;
1374     uint64_t size = (uint64_t)par->extradata_size + atom.size + 8 + AV_INPUT_BUFFER_PADDING_SIZE;
1375     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
1376         return AVERROR_INVALIDDATA;
1377     if ((err = av_reallocp(&par->extradata, size)) < 0) {
1378         par->extradata_size = 0;
1379         return err;
1380     }
1381     par->extradata_size = size - AV_INPUT_BUFFER_PADDING_SIZE;
1382     return 0;
1383 }
1384
1385 /* Read a whole atom into the extradata return the size of the atom read, possibly truncated if != atom.size */
1386 static int64_t mov_read_atom_into_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1387                                         AVCodecParameters *par, uint8_t *buf)
1388 {
1389     int64_t result = atom.size;
1390     int err;
1391
1392     AV_WB32(buf    , atom.size + 8);
1393     AV_WL32(buf + 4, atom.type);
1394     err = ffio_read_size(pb, buf + 8, atom.size);
1395     if (err < 0) {
1396         par->extradata_size -= atom.size;
1397         return err;
1398     } else if (err < atom.size) {
1399         av_log(c->fc, AV_LOG_WARNING, "truncated extradata\n");
1400         par->extradata_size -= atom.size - err;
1401         result = err;
1402     }
1403     memset(buf + 8 + err, 0, AV_INPUT_BUFFER_PADDING_SIZE);
1404     return result;
1405 }
1406
1407 /* FIXME modify QDM2/SVQ3/H.264 decoders to take full atom as extradata */
1408 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1409                               enum AVCodecID codec_id)
1410 {
1411     AVStream *st;
1412     uint64_t original_size;
1413     int err;
1414
1415     if (c->fc->nb_streams < 1) // will happen with jp2 files
1416         return 0;
1417     st = c->fc->streams[c->fc->nb_streams-1];
1418
1419     if (st->codecpar->codec_id != codec_id)
1420         return 0; /* unexpected codec_id - don't mess with extradata */
1421
1422     original_size = st->codecpar->extradata_size;
1423     err = mov_realloc_extradata(st->codecpar, atom);
1424     if (err)
1425         return err;
1426
1427     err =  mov_read_atom_into_extradata(c, pb, atom, st->codecpar,  st->codecpar->extradata + original_size);
1428     if (err < 0)
1429         return err;
1430     return 0; // Note: this is the original behavior to ignore truncation.
1431 }
1432
1433 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
1434 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1435 {
1436     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
1437 }
1438
1439 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1440 {
1441     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
1442 }
1443
1444 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1445 {
1446     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
1447 }
1448
1449 static int mov_read_dpxe(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1450 {
1451     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_R10K);
1452 }
1453
1454 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1455 {
1456     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1457     if(ret == 0)
1458         ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1459     return ret;
1460 }
1461
1462 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1463 {
1464     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1465
1466     if (!ret && c->fc->nb_streams >= 1) {
1467         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1468         if (par->extradata_size >= 40) {
1469             par->height = AV_RB16(&par->extradata[36]);
1470             par->width  = AV_RB16(&par->extradata[38]);
1471         }
1472     }
1473     return ret;
1474 }
1475
1476 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1477 {
1478     if (c->fc->nb_streams >= 1) {
1479         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1480         if (par->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1481             par->codec_id == AV_CODEC_ID_H264 &&
1482             atom.size > 11) {
1483             int cid;
1484             avio_skip(pb, 10);
1485             cid = avio_rb16(pb);
1486             /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1487             if (cid == 0xd4d || cid == 0xd4e)
1488                 par->width = 1440;
1489             return 0;
1490         } else if (par->codec_tag == MKTAG('A', 'V', 'd', '1') &&
1491                    atom.size >= 24) {
1492             int num, den;
1493             avio_skip(pb, 12);
1494             num = avio_rb32(pb);
1495             den = avio_rb32(pb);
1496             if (num <= 0 || den <= 0)
1497                 return 0;
1498             switch (avio_rb32(pb)) {
1499             case 2:
1500                 if (den >= INT_MAX / 2)
1501                     return 0;
1502                 den *= 2;
1503             case 1:
1504                 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.num = num;
1505                 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.den = den;
1506             default:
1507                 return 0;
1508             }
1509         }
1510     }
1511
1512     return mov_read_avid(c, pb, atom);
1513 }
1514
1515 static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1516 {
1517     int ret = 0;
1518     int length = 0;
1519     uint64_t original_size;
1520     if (c->fc->nb_streams >= 1) {
1521         AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1522         if (par->codec_id == AV_CODEC_ID_H264)
1523             return 0;
1524         if (atom.size == 16) {
1525             original_size = par->extradata_size;
1526             ret = mov_realloc_extradata(par, atom);
1527             if (!ret) {
1528                 length =  mov_read_atom_into_extradata(c, pb, atom, par, par->extradata + original_size);
1529                 if (length == atom.size) {
1530                     const uint8_t range_value = par->extradata[original_size + 19];
1531                     switch (range_value) {
1532                     case 1:
1533                         par->color_range = AVCOL_RANGE_MPEG;
1534                         break;
1535                     case 2:
1536                         par->color_range = AVCOL_RANGE_JPEG;
1537                         break;
1538                     default:
1539                         av_log(c, AV_LOG_WARNING, "ignored unknown aclr value (%d)\n", range_value);
1540                         break;
1541                     }
1542                     ff_dlog(c, "color_range: %d\n", par->color_range);
1543                 } else {
1544                   /* For some reason the whole atom was not added to the extradata */
1545                   av_log(c, AV_LOG_ERROR, "aclr not decoded - incomplete atom\n");
1546                 }
1547             } else {
1548                 av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
1549             }
1550         } else {
1551             av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
1552         }
1553     }
1554
1555     return ret;
1556 }
1557
1558 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1559 {
1560     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1561 }
1562
1563 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1564 {
1565     AVStream *st;
1566     int ret;
1567
1568     if (c->fc->nb_streams < 1)
1569         return 0;
1570     st = c->fc->streams[c->fc->nb_streams-1];
1571
1572     if ((uint64_t)atom.size > (1<<30))
1573         return AVERROR_INVALIDDATA;
1574
1575     if (st->codecpar->codec_id == AV_CODEC_ID_QDM2 ||
1576         st->codecpar->codec_id == AV_CODEC_ID_QDMC ||
1577         st->codecpar->codec_id == AV_CODEC_ID_SPEEX) {
1578         // pass all frma atom to codec, needed at least for QDMC and QDM2
1579         av_freep(&st->codecpar->extradata);
1580         ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1581         if (ret < 0)
1582             return ret;
1583     } else if (atom.size > 8) { /* to read frma, esds atoms */
1584         if (st->codecpar->codec_id == AV_CODEC_ID_ALAC && atom.size >= 24) {
1585             uint64_t buffer;
1586             ret = ffio_ensure_seekback(pb, 8);
1587             if (ret < 0)
1588                 return ret;
1589             buffer = avio_rb64(pb);
1590             atom.size -= 8;
1591             if (  (buffer & 0xFFFFFFFF) == MKBETAG('f','r','m','a')
1592                 && buffer >> 32 <= atom.size
1593                 && buffer >> 32 >= 8) {
1594                 avio_skip(pb, -8);
1595                 atom.size += 8;
1596             } else if (!st->codecpar->extradata_size) {
1597 #define ALAC_EXTRADATA_SIZE 36
1598                 st->codecpar->extradata = av_mallocz(ALAC_EXTRADATA_SIZE + AV_INPUT_BUFFER_PADDING_SIZE);
1599                 if (!st->codecpar->extradata)
1600                     return AVERROR(ENOMEM);
1601                 st->codecpar->extradata_size = ALAC_EXTRADATA_SIZE;
1602                 AV_WB32(st->codecpar->extradata    , ALAC_EXTRADATA_SIZE);
1603                 AV_WB32(st->codecpar->extradata + 4, MKTAG('a','l','a','c'));
1604                 AV_WB64(st->codecpar->extradata + 12, buffer);
1605                 avio_read(pb, st->codecpar->extradata + 20, 16);
1606                 avio_skip(pb, atom.size - 24);
1607                 return 0;
1608             }
1609         }
1610         if ((ret = mov_read_default(c, pb, atom)) < 0)
1611             return ret;
1612     } else
1613         avio_skip(pb, atom.size);
1614     return 0;
1615 }
1616
1617 /**
1618  * This function reads atom content and puts data in extradata without tag
1619  * nor size unlike mov_read_extradata.
1620  */
1621 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1622 {
1623     AVStream *st;
1624     int ret;
1625
1626     if (c->fc->nb_streams < 1)
1627         return 0;
1628     st = c->fc->streams[c->fc->nb_streams-1];
1629
1630     if ((uint64_t)atom.size > (1<<30))
1631         return AVERROR_INVALIDDATA;
1632
1633     if (atom.size >= 10) {
1634         // Broken files created by legacy versions of libavformat will
1635         // wrap a whole fiel atom inside of a glbl atom.
1636         unsigned size = avio_rb32(pb);
1637         unsigned type = avio_rl32(pb);
1638         avio_seek(pb, -8, SEEK_CUR);
1639         if (type == MKTAG('f','i','e','l') && size == atom.size)
1640             return mov_read_default(c, pb, atom);
1641     }
1642     if (st->codecpar->extradata_size > 1 && st->codecpar->extradata) {
1643         av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1644         return 0;
1645     }
1646     av_freep(&st->codecpar->extradata);
1647     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1648     if (ret < 0)
1649         return ret;
1650
1651     return 0;
1652 }
1653
1654 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1655 {
1656     AVStream *st;
1657     uint8_t profile_level;
1658     int ret;
1659
1660     if (c->fc->nb_streams < 1)
1661         return 0;
1662     st = c->fc->streams[c->fc->nb_streams-1];
1663
1664     if (atom.size >= (1<<28) || atom.size < 7)
1665         return AVERROR_INVALIDDATA;
1666
1667     profile_level = avio_r8(pb);
1668     if ((profile_level & 0xf0) != 0xc0)
1669         return 0;
1670
1671     avio_seek(pb, 6, SEEK_CUR);
1672     av_freep(&st->codecpar->extradata);
1673     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 7);
1674     if (ret < 0)
1675         return ret;
1676
1677     return 0;
1678 }
1679
1680 /**
1681  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1682  * but can have extradata appended at the end after the 40 bytes belonging
1683  * to the struct.
1684  */
1685 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1686 {
1687     AVStream *st;
1688     int ret;
1689
1690     if (c->fc->nb_streams < 1)
1691         return 0;
1692     if (atom.size <= 40)
1693         return 0;
1694     st = c->fc->streams[c->fc->nb_streams-1];
1695
1696     if ((uint64_t)atom.size > (1<<30))
1697         return AVERROR_INVALIDDATA;
1698
1699     avio_skip(pb, 40);
1700     av_freep(&st->codecpar->extradata);
1701     ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 40);
1702     if (ret < 0)
1703         return ret;
1704
1705     return 0;
1706 }
1707
1708 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1709 {
1710     AVStream *st;
1711     MOVStreamContext *sc;
1712     unsigned int i, entries;
1713
1714     if (c->fc->nb_streams < 1)
1715         return 0;
1716     st = c->fc->streams[c->fc->nb_streams-1];
1717     sc = st->priv_data;
1718
1719     avio_r8(pb); /* version */
1720     avio_rb24(pb); /* flags */
1721
1722     entries = avio_rb32(pb);
1723
1724     if (!entries)
1725         return 0;
1726
1727     if (sc->chunk_offsets)
1728         av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1729     av_free(sc->chunk_offsets);
1730     sc->chunk_count = 0;
1731     sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1732     if (!sc->chunk_offsets)
1733         return AVERROR(ENOMEM);
1734     sc->chunk_count = entries;
1735
1736     if      (atom.type == MKTAG('s','t','c','o'))
1737         for (i = 0; i < entries && !pb->eof_reached; i++)
1738             sc->chunk_offsets[i] = avio_rb32(pb);
1739     else if (atom.type == MKTAG('c','o','6','4'))
1740         for (i = 0; i < entries && !pb->eof_reached; i++)
1741             sc->chunk_offsets[i] = avio_rb64(pb);
1742     else
1743         return AVERROR_INVALIDDATA;
1744
1745     sc->chunk_count = i;
1746
1747     if (pb->eof_reached)
1748         return AVERROR_EOF;
1749
1750     return 0;
1751 }
1752
1753 /**
1754  * Compute codec id for 'lpcm' tag.
1755  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1756  */
1757 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1758 {
1759     /* lpcm flags:
1760      * 0x1 = float
1761      * 0x2 = big-endian
1762      * 0x4 = signed
1763      */
1764     return ff_get_pcm_codec_id(bps, flags & 1, flags & 2, flags & 4 ? -1 : 0);
1765 }
1766
1767 static int mov_codec_id(AVStream *st, uint32_t format)
1768 {
1769     int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1770
1771     if (id <= 0 &&
1772         ((format & 0xFFFF) == 'm' + ('s' << 8) ||
1773          (format & 0xFFFF) == 'T' + ('S' << 8)))
1774         id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
1775
1776     if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1777         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
1778     } else if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO &&
1779                /* skip old ASF MPEG-4 tag */
1780                format && format != MKTAG('m','p','4','s')) {
1781         id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1782         if (id <= 0)
1783             id = ff_codec_get_id(ff_codec_bmp_tags, format);
1784         if (id > 0)
1785             st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
1786         else if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA ||
1787                     (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1788                     st->codecpar->codec_id == AV_CODEC_ID_NONE)) {
1789             id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1790             if (id > 0)
1791                 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
1792         }
1793     }
1794
1795     st->codecpar->codec_tag = format;
1796
1797     return id;
1798 }
1799
1800 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
1801                                  AVStream *st, MOVStreamContext *sc)
1802 {
1803     uint8_t codec_name[32];
1804     int64_t stsd_start;
1805     unsigned int len;
1806
1807     /* The first 16 bytes of the video sample description are already
1808      * read in ff_mov_read_stsd_entries() */
1809     stsd_start = avio_tell(pb) - 16;
1810
1811     avio_rb16(pb); /* version */
1812     avio_rb16(pb); /* revision level */
1813     avio_rb32(pb); /* vendor */
1814     avio_rb32(pb); /* temporal quality */
1815     avio_rb32(pb); /* spatial quality */
1816
1817     st->codecpar->width  = avio_rb16(pb); /* width */
1818     st->codecpar->height = avio_rb16(pb); /* height */
1819
1820     avio_rb32(pb); /* horiz resolution */
1821     avio_rb32(pb); /* vert resolution */
1822     avio_rb32(pb); /* data size, always 0 */
1823     avio_rb16(pb); /* frames per samples */
1824
1825     len = avio_r8(pb); /* codec name, pascal string */
1826     if (len > 31)
1827         len = 31;
1828     mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
1829     if (len < 31)
1830         avio_skip(pb, 31 - len);
1831
1832     if (codec_name[0])
1833         av_dict_set(&st->metadata, "encoder", codec_name, 0);
1834
1835     /* codec_tag YV12 triggers an UV swap in rawdec.c */
1836     if (!memcmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
1837         st->codecpar->codec_tag = MKTAG('I', '4', '2', '0');
1838         st->codecpar->width &= ~1;
1839         st->codecpar->height &= ~1;
1840     }
1841     /* Flash Media Server uses tag H.263 with Sorenson Spark */
1842     if (st->codecpar->codec_tag == MKTAG('H','2','6','3') &&
1843         !memcmp(codec_name, "Sorenson H263", 13))
1844         st->codecpar->codec_id = AV_CODEC_ID_FLV1;
1845
1846     st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* depth */
1847
1848     avio_seek(pb, stsd_start, SEEK_SET);
1849
1850     if (ff_get_qtpalette(st->codecpar->codec_id, pb, sc->palette)) {
1851         st->codecpar->bits_per_coded_sample &= 0x1F;
1852         sc->has_palette = 1;
1853     }
1854 }
1855
1856 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
1857                                  AVStream *st, MOVStreamContext *sc)
1858 {
1859     int bits_per_sample, flags;
1860     uint16_t version = avio_rb16(pb);
1861     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
1862
1863     avio_rb16(pb); /* revision level */
1864     avio_rb32(pb); /* vendor */
1865
1866     st->codecpar->channels              = avio_rb16(pb); /* channel count */
1867     st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* sample size */
1868     av_log(c->fc, AV_LOG_TRACE, "audio channels %d\n", st->codecpar->channels);
1869
1870     sc->audio_cid = avio_rb16(pb);
1871     avio_rb16(pb); /* packet size = 0 */
1872
1873     st->codecpar->sample_rate = ((avio_rb32(pb) >> 16));
1874
1875     // Read QT version 1 fields. In version 0 these do not exist.
1876     av_log(c->fc, AV_LOG_TRACE, "version =%d, isom =%d\n", version, c->isom);
1877     if (!c->isom ||
1878         (compatible_brands && strstr(compatible_brands->value, "qt  "))) {
1879
1880         if (version == 1) {
1881             sc->samples_per_frame = avio_rb32(pb);
1882             avio_rb32(pb); /* bytes per packet */
1883             sc->bytes_per_frame = avio_rb32(pb);
1884             avio_rb32(pb); /* bytes per sample */
1885         } else if (version == 2) {
1886             avio_rb32(pb); /* sizeof struct only */
1887             st->codecpar->sample_rate = av_int2double(avio_rb64(pb));
1888             st->codecpar->channels    = avio_rb32(pb);
1889             avio_rb32(pb); /* always 0x7F000000 */
1890             st->codecpar->bits_per_coded_sample = avio_rb32(pb);
1891
1892             flags = avio_rb32(pb); /* lpcm format specific flag */
1893             sc->bytes_per_frame   = avio_rb32(pb);
1894             sc->samples_per_frame = avio_rb32(pb);
1895             if (st->codecpar->codec_tag == MKTAG('l','p','c','m'))
1896                 st->codecpar->codec_id =
1897                     ff_mov_get_lpcm_codec_id(st->codecpar->bits_per_coded_sample,
1898                                              flags);
1899         }
1900         if (version == 0 || (version == 1 && sc->audio_cid != -2)) {
1901             /* can't correctly handle variable sized packet as audio unit */
1902             switch (st->codecpar->codec_id) {
1903             case AV_CODEC_ID_MP2:
1904             case AV_CODEC_ID_MP3:
1905                 st->need_parsing = AVSTREAM_PARSE_FULL;
1906                 break;
1907             }
1908         }
1909     }
1910
1911     if (sc->format == 0) {
1912         if (st->codecpar->bits_per_coded_sample == 8)
1913             st->codecpar->codec_id = mov_codec_id(st, MKTAG('r','a','w',' '));
1914         else if (st->codecpar->bits_per_coded_sample == 16)
1915             st->codecpar->codec_id = mov_codec_id(st, MKTAG('t','w','o','s'));
1916     }
1917
1918     switch (st->codecpar->codec_id) {
1919     case AV_CODEC_ID_PCM_S8:
1920     case AV_CODEC_ID_PCM_U8:
1921         if (st->codecpar->bits_per_coded_sample == 16)
1922             st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE;
1923         break;
1924     case AV_CODEC_ID_PCM_S16LE:
1925     case AV_CODEC_ID_PCM_S16BE:
1926         if (st->codecpar->bits_per_coded_sample == 8)
1927             st->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
1928         else if (st->codecpar->bits_per_coded_sample == 24)
1929             st->codecpar->codec_id =
1930                 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
1931                 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1932         else if (st->codecpar->bits_per_coded_sample == 32)
1933              st->codecpar->codec_id =
1934                 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
1935                 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
1936         break;
1937     /* set values for old format before stsd version 1 appeared */
1938     case AV_CODEC_ID_MACE3:
1939         sc->samples_per_frame = 6;
1940         sc->bytes_per_frame   = 2 * st->codecpar->channels;
1941         break;
1942     case AV_CODEC_ID_MACE6:
1943         sc->samples_per_frame = 6;
1944         sc->bytes_per_frame   = 1 * st->codecpar->channels;
1945         break;
1946     case AV_CODEC_ID_ADPCM_IMA_QT:
1947         sc->samples_per_frame = 64;
1948         sc->bytes_per_frame   = 34 * st->codecpar->channels;
1949         break;
1950     case AV_CODEC_ID_GSM:
1951         sc->samples_per_frame = 160;
1952         sc->bytes_per_frame   = 33;
1953         break;
1954     default:
1955         break;
1956     }
1957
1958     bits_per_sample = av_get_bits_per_sample(st->codecpar->codec_id);
1959     if (bits_per_sample) {
1960         st->codecpar->bits_per_coded_sample = bits_per_sample;
1961         sc->sample_size = (bits_per_sample >> 3) * st->codecpar->channels;
1962     }
1963 }
1964
1965 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
1966                                     AVStream *st, MOVStreamContext *sc,
1967                                     int64_t size)
1968 {
1969     // ttxt stsd contains display flags, justification, background
1970     // color, fonts, and default styles, so fake an atom to read it
1971     MOVAtom fake_atom = { .size = size };
1972     // mp4s contains a regular esds atom
1973     if (st->codecpar->codec_tag != AV_RL32("mp4s"))
1974         mov_read_glbl(c, pb, fake_atom);
1975     st->codecpar->width  = sc->width;
1976     st->codecpar->height = sc->height;
1977 }
1978
1979 static uint32_t yuv_to_rgba(uint32_t ycbcr)
1980 {
1981     uint8_t r, g, b;
1982     int y, cb, cr;
1983
1984     y  = (ycbcr >> 16) & 0xFF;
1985     cr = (ycbcr >> 8)  & 0xFF;
1986     cb =  ycbcr        & 0xFF;
1987
1988     b = av_clip_uint8((1164 * (y - 16)                     + 2018 * (cb - 128)) / 1000);
1989     g = av_clip_uint8((1164 * (y - 16) -  813 * (cr - 128) -  391 * (cb - 128)) / 1000);
1990     r = av_clip_uint8((1164 * (y - 16) + 1596 * (cr - 128)                    ) / 1000);
1991
1992     return (r << 16) | (g << 8) | b;
1993 }
1994
1995 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
1996 {
1997     char buf[256] = {0};
1998     uint8_t *src = st->codecpar->extradata;
1999     int i;
2000
2001     if (st->codecpar->extradata_size != 64)
2002         return 0;
2003
2004     if (st->codecpar->width > 0 &&  st->codecpar->height > 0)
2005         snprintf(buf, sizeof(buf), "size: %dx%d\n",
2006                  st->codecpar->width, st->codecpar->height);
2007     av_strlcat(buf, "palette: ", sizeof(buf));
2008
2009     for (i = 0; i < 16; i++) {
2010         uint32_t yuv = AV_RB32(src + i * 4);
2011         uint32_t rgba = yuv_to_rgba(yuv);
2012
2013         av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
2014     }
2015
2016     if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
2017         return 0;
2018
2019     av_freep(&st->codecpar->extradata);
2020     st->codecpar->extradata_size = 0;
2021     st->codecpar->extradata = av_mallocz(strlen(buf) + AV_INPUT_BUFFER_PADDING_SIZE);
2022     if (!st->codecpar->extradata)
2023         return AVERROR(ENOMEM);
2024     st->codecpar->extradata_size = strlen(buf);
2025     memcpy(st->codecpar->extradata, buf, st->codecpar->extradata_size);
2026
2027     return 0;
2028 }
2029
2030 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
2031                                 AVStream *st, MOVStreamContext *sc,
2032                                 int64_t size)
2033 {
2034     int ret;
2035
2036     if (st->codecpar->codec_tag == MKTAG('t','m','c','d')) {
2037         if ((int)size != size)
2038             return AVERROR(ENOMEM);
2039
2040         ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
2041         if (ret < 0)
2042             return ret;
2043         if (size > 16) {
2044             MOVStreamContext *tmcd_ctx = st->priv_data;
2045             int val;
2046             val = AV_RB32(st->codecpar->extradata + 4);
2047             tmcd_ctx->tmcd_flags = val;
2048             st->avg_frame_rate.num = st->codecpar->extradata[16]; /* number of frame */
2049             st->avg_frame_rate.den = 1;
2050 #if FF_API_LAVF_AVCTX
2051 FF_DISABLE_DEPRECATION_WARNINGS
2052             st->codec->time_base = av_inv_q(st->avg_frame_rate);
2053 FF_ENABLE_DEPRECATION_WARNINGS
2054 #endif
2055             /* adjust for per frame dur in counter mode */
2056             if (tmcd_ctx->tmcd_flags & 0x0008) {
2057                 int timescale = AV_RB32(st->codecpar->extradata + 8);
2058                 int framedur = AV_RB32(st->codecpar->extradata + 12);
2059                 st->avg_frame_rate.num *= timescale;
2060                 st->avg_frame_rate.den *= framedur;
2061 #if FF_API_LAVF_AVCTX
2062 FF_DISABLE_DEPRECATION_WARNINGS
2063                 st->codec->time_base.den *= timescale;
2064                 st->codec->time_base.num *= framedur;
2065 FF_ENABLE_DEPRECATION_WARNINGS
2066 #endif
2067             }
2068             if (size > 30) {
2069                 uint32_t len = AV_RB32(st->codecpar->extradata + 18); /* name atom length */
2070                 uint32_t format = AV_RB32(st->codecpar->extradata + 22);
2071                 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
2072                     uint16_t str_size = AV_RB16(st->codecpar->extradata + 26); /* string length */
2073                     if (str_size > 0 && size >= (int)str_size + 26) {
2074                         char *reel_name = av_malloc(str_size + 1);
2075                         if (!reel_name)
2076                             return AVERROR(ENOMEM);
2077                         memcpy(reel_name, st->codecpar->extradata + 30, str_size);
2078                         reel_name[str_size] = 0; /* Add null terminator */
2079                         /* don't add reel_name if emtpy string */
2080                         if (*reel_name == 0) {
2081                             av_free(reel_name);
2082                         } else {
2083                             av_dict_set(&st->metadata, "reel_name", reel_name,  AV_DICT_DONT_STRDUP_VAL);
2084                         }
2085                     }
2086                 }
2087             }
2088         }
2089     } else {
2090         /* other codec type, just skip (rtp, mp4s ...) */
2091         avio_skip(pb, size);
2092     }
2093     return 0;
2094 }
2095
2096 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
2097                                    AVStream *st, MOVStreamContext *sc)
2098 {
2099     if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
2100         !st->codecpar->sample_rate && sc->time_scale > 1)
2101         st->codecpar->sample_rate = sc->time_scale;
2102
2103     /* special codec parameters handling */
2104     switch (st->codecpar->codec_id) {
2105 #if CONFIG_DV_DEMUXER
2106     case AV_CODEC_ID_DVAUDIO:
2107         c->dv_fctx = avformat_alloc_context();
2108         if (!c->dv_fctx) {
2109             av_log(c->fc, AV_LOG_ERROR, "dv demux context alloc error\n");
2110             return AVERROR(ENOMEM);
2111         }
2112         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
2113         if (!c->dv_demux) {
2114             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
2115             return AVERROR(ENOMEM);
2116         }
2117         sc->dv_audio_container = 1;
2118         st->codecpar->codec_id    = AV_CODEC_ID_PCM_S16LE;
2119         break;
2120 #endif
2121     /* no ifdef since parameters are always those */
2122     case AV_CODEC_ID_QCELP:
2123         st->codecpar->channels = 1;
2124         // force sample rate for qcelp when not stored in mov
2125         if (st->codecpar->codec_tag != MKTAG('Q','c','l','p'))
2126             st->codecpar->sample_rate = 8000;
2127         // FIXME: Why is the following needed for some files?
2128         sc->samples_per_frame = 160;
2129         if (!sc->bytes_per_frame)
2130             sc->bytes_per_frame = 35;
2131         break;
2132     case AV_CODEC_ID_AMR_NB:
2133         st->codecpar->channels    = 1;
2134         /* force sample rate for amr, stsd in 3gp does not store sample rate */
2135         st->codecpar->sample_rate = 8000;
2136         break;
2137     case AV_CODEC_ID_AMR_WB:
2138         st->codecpar->channels    = 1;
2139         st->codecpar->sample_rate = 16000;
2140         break;
2141     case AV_CODEC_ID_MP2:
2142     case AV_CODEC_ID_MP3:
2143         /* force type after stsd for m1a hdlr */
2144         st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
2145         break;
2146     case AV_CODEC_ID_GSM:
2147     case AV_CODEC_ID_ADPCM_MS:
2148     case AV_CODEC_ID_ADPCM_IMA_WAV:
2149     case AV_CODEC_ID_ILBC:
2150     case AV_CODEC_ID_MACE3:
2151     case AV_CODEC_ID_MACE6:
2152     case AV_CODEC_ID_QDM2:
2153         st->codecpar->block_align = sc->bytes_per_frame;
2154         break;
2155     case AV_CODEC_ID_ALAC:
2156         if (st->codecpar->extradata_size == 36) {
2157             st->codecpar->channels    = AV_RB8 (st->codecpar->extradata + 21);
2158             st->codecpar->sample_rate = AV_RB32(st->codecpar->extradata + 32);
2159         }
2160         break;
2161     case AV_CODEC_ID_AC3:
2162     case AV_CODEC_ID_EAC3:
2163     case AV_CODEC_ID_MPEG1VIDEO:
2164     case AV_CODEC_ID_VC1:
2165     case AV_CODEC_ID_VP9:
2166         st->need_parsing = AVSTREAM_PARSE_FULL;
2167         break;
2168     default:
2169         break;
2170     }
2171     return 0;
2172 }
2173
2174 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
2175                                   int codec_tag, int format,
2176                                   int64_t size)
2177 {
2178     int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
2179
2180     if (codec_tag &&
2181          (codec_tag != format &&
2182           // prores is allowed to have differing data format and codec tag
2183           codec_tag != AV_RL32("apcn") && codec_tag != AV_RL32("apch") &&
2184           (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
2185                                  : codec_tag != MKTAG('j','p','e','g')))) {
2186         /* Multiple fourcc, we skip JPEG. This is not correct, we should
2187          * export it as a separate AVStream but this needs a few changes
2188          * in the MOV demuxer, patch welcome. */
2189
2190         av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
2191         avio_skip(pb, size);
2192         return 1;
2193     }
2194     if ( codec_tag == AV_RL32("hvc1") ||
2195          codec_tag == AV_RL32("hev1")
2196     )
2197         av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 or H.265 might not play correctly.\n");
2198
2199     return 0;
2200 }
2201
2202 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
2203 {
2204     AVStream *st;
2205     MOVStreamContext *sc;
2206     int pseudo_stream_id;
2207
2208     if (c->fc->nb_streams < 1)
2209         return 0;
2210     st = c->fc->streams[c->fc->nb_streams-1];
2211     sc = st->priv_data;
2212
2213     for (pseudo_stream_id = 0;
2214          pseudo_stream_id < entries && !pb->eof_reached;
2215          pseudo_stream_id++) {
2216         //Parsing Sample description table
2217         enum AVCodecID id;
2218         int ret, dref_id = 1;
2219         MOVAtom a = { AV_RL32("stsd") };
2220         int64_t start_pos = avio_tell(pb);
2221         int64_t size    = avio_rb32(pb); /* size */
2222         uint32_t format = avio_rl32(pb); /* data format */
2223
2224         if (size >= 16) {
2225             avio_rb32(pb); /* reserved */
2226             avio_rb16(pb); /* reserved */
2227             dref_id = avio_rb16(pb);
2228         } else if (size <= 7) {
2229             av_log(c->fc, AV_LOG_ERROR,
2230                    "invalid size %"PRId64" in stsd\n", size);
2231             return AVERROR_INVALIDDATA;
2232         }
2233
2234         if (mov_skip_multiple_stsd(c, pb, st->codecpar->codec_tag, format,
2235                                    size - (avio_tell(pb) - start_pos)))
2236             continue;
2237
2238         sc->pseudo_stream_id = st->codecpar->codec_tag ? -1 : pseudo_stream_id;
2239         sc->dref_id= dref_id;
2240         sc->format = format;
2241
2242         id = mov_codec_id(st, format);
2243
2244         av_log(c->fc, AV_LOG_TRACE,
2245                "size=%"PRId64" 4CC= %c%c%c%c/0x%08x codec_type=%d\n", size,
2246                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
2247                 (format >> 24) & 0xff, format, st->codecpar->codec_type);
2248
2249         if (st->codecpar->codec_type==AVMEDIA_TYPE_VIDEO) {
2250             st->codecpar->codec_id = id;
2251             mov_parse_stsd_video(c, pb, st, sc);
2252         } else if (st->codecpar->codec_type==AVMEDIA_TYPE_AUDIO) {
2253             st->codecpar->codec_id = id;
2254             mov_parse_stsd_audio(c, pb, st, sc);
2255         } else if (st->codecpar->codec_type==AVMEDIA_TYPE_SUBTITLE){
2256             st->codecpar->codec_id = id;
2257             mov_parse_stsd_subtitle(c, pb, st, sc,
2258                                     size - (avio_tell(pb) - start_pos));
2259         } else {
2260             ret = mov_parse_stsd_data(c, pb, st, sc,
2261                                       size - (avio_tell(pb) - start_pos));
2262             if (ret < 0)
2263                 return ret;
2264         }
2265         /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
2266         a.size = size - (avio_tell(pb) - start_pos);
2267         if (a.size > 8) {
2268             if ((ret = mov_read_default(c, pb, a)) < 0)
2269                 return ret;
2270         } else if (a.size > 0)
2271             avio_skip(pb, a.size);
2272
2273         if (sc->extradata) {
2274             int extra_size = st->codecpar->extradata_size;
2275
2276             /* Move the current stream extradata to the stream context one. */
2277             sc->extradata_size[pseudo_stream_id] = extra_size;
2278             sc->extradata[pseudo_stream_id] = av_malloc(extra_size + AV_INPUT_BUFFER_PADDING_SIZE);
2279             if (!sc->extradata[pseudo_stream_id])
2280                 return AVERROR(ENOMEM);
2281             memcpy(sc->extradata[pseudo_stream_id], st->codecpar->extradata, extra_size);
2282             av_freep(&st->codecpar->extradata);
2283             st->codecpar->extradata_size = 0;
2284         }
2285     }
2286
2287     if (pb->eof_reached)
2288         return AVERROR_EOF;
2289
2290     return mov_finalize_stsd_codec(c, pb, st, sc);
2291 }
2292
2293 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2294 {
2295     AVStream *st;
2296     MOVStreamContext *sc;
2297     int ret;
2298     int entries;
2299
2300     if (c->fc->nb_streams < 1)
2301         return 0;
2302     st = c->fc->streams[c->fc->nb_streams - 1];
2303     sc = st->priv_data;
2304
2305     avio_r8(pb); /* version */
2306     avio_rb24(pb); /* flags */
2307     entries = avio_rb32(pb); /* entries */
2308
2309     if (entries <= 0) {
2310         av_log(c->fc, AV_LOG_ERROR, "invalid STSD entries %d\n", entries);
2311         return AVERROR_INVALIDDATA;
2312     }
2313
2314     if (sc->extradata) {
2315         av_log(c->fc, AV_LOG_ERROR, "Duplicate STSD\n");
2316         return AVERROR_INVALIDDATA;
2317     }
2318     /* Prepare space for hosting multiple extradata. */
2319     sc->extradata = av_mallocz_array(entries, sizeof(*sc->extradata));
2320     sc->extradata_size = av_mallocz_array(entries, sizeof(*sc->extradata_size));
2321     if (!sc->extradata_size || !sc->extradata) {
2322         ret = AVERROR(ENOMEM);
2323         goto fail;
2324     }
2325
2326     ret = ff_mov_read_stsd_entries(c, pb, entries);
2327     if (ret < 0)
2328         return ret;
2329
2330     sc->stsd_count = entries;
2331
2332     /* Restore back the primary extradata. */
2333     av_freep(&st->codecpar->extradata);
2334     st->codecpar->extradata_size = sc->extradata_size[0];
2335     if (sc->extradata_size[0]) {
2336         st->codecpar->extradata = av_mallocz(sc->extradata_size[0] + AV_INPUT_BUFFER_PADDING_SIZE);
2337         if (!st->codecpar->extradata)
2338             return AVERROR(ENOMEM);
2339         memcpy(st->codecpar->extradata, sc->extradata[0], sc->extradata_size[0]);
2340     }
2341
2342     return 0;
2343 fail:
2344     av_freep(&sc->extradata);
2345     av_freep(&sc->extradata_size);
2346     return ret;
2347 }
2348
2349 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2350 {
2351     AVStream *st;
2352     MOVStreamContext *sc;
2353     unsigned int i, entries;
2354
2355     if (c->fc->nb_streams < 1)
2356         return 0;
2357     st = c->fc->streams[c->fc->nb_streams-1];
2358     sc = st->priv_data;
2359
2360     avio_r8(pb); /* version */
2361     avio_rb24(pb); /* flags */
2362
2363     entries = avio_rb32(pb);
2364
2365     av_log(c->fc, AV_LOG_TRACE, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
2366
2367     if (!entries)
2368         return 0;
2369     if (sc->stsc_data)
2370         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
2371     av_free(sc->stsc_data);
2372     sc->stsc_count = 0;
2373     sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
2374     if (!sc->stsc_data)
2375         return AVERROR(ENOMEM);
2376
2377     for (i = 0; i < entries && !pb->eof_reached; i++) {
2378         sc->stsc_data[i].first = avio_rb32(pb);
2379         sc->stsc_data[i].count = avio_rb32(pb);
2380         sc->stsc_data[i].id = avio_rb32(pb);
2381     }
2382
2383     sc->stsc_count = i;
2384
2385     if (pb->eof_reached)
2386         return AVERROR_EOF;
2387
2388     return 0;
2389 }
2390
2391 /* Compute the samples value for the stsc entry at the given index. */
2392 static inline int mov_get_stsc_samples(MOVStreamContext *sc, int index)
2393 {
2394     int chunk_count;
2395
2396     if (index < sc->stsc_count - 1)
2397         chunk_count = sc->stsc_data[index + 1].first - sc->stsc_data[index].first;
2398     else
2399         chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1);
2400
2401     return sc->stsc_data[index].count * chunk_count;
2402 }
2403
2404 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2405 {
2406     AVStream *st;
2407     MOVStreamContext *sc;
2408     unsigned i, entries;
2409
2410     if (c->fc->nb_streams < 1)
2411         return 0;
2412     st = c->fc->streams[c->fc->nb_streams-1];
2413     sc = st->priv_data;
2414
2415     avio_rb32(pb); // version + flags
2416
2417     entries = avio_rb32(pb);
2418     if (sc->stps_data)
2419         av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
2420     av_free(sc->stps_data);
2421     sc->stps_count = 0;
2422     sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
2423     if (!sc->stps_data)
2424         return AVERROR(ENOMEM);
2425
2426     for (i = 0; i < entries && !pb->eof_reached; i++) {
2427         sc->stps_data[i] = avio_rb32(pb);
2428         //av_log(c->fc, AV_LOG_TRACE, "stps %d\n", sc->stps_data[i]);
2429     }
2430
2431     sc->stps_count = i;
2432
2433     if (pb->eof_reached)
2434         return AVERROR_EOF;
2435
2436     return 0;
2437 }
2438
2439 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2440 {
2441     AVStream *st;
2442     MOVStreamContext *sc;
2443     unsigned int i, entries;
2444
2445     if (c->fc->nb_streams < 1)
2446         return 0;
2447     st = c->fc->streams[c->fc->nb_streams-1];
2448     sc = st->priv_data;
2449
2450     avio_r8(pb); /* version */
2451     avio_rb24(pb); /* flags */
2452
2453     entries = avio_rb32(pb);
2454
2455     av_log(c->fc, AV_LOG_TRACE, "keyframe_count = %d\n", entries);
2456
2457     if (!entries)
2458     {
2459         sc->keyframe_absent = 1;
2460         if (!st->need_parsing && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
2461             st->need_parsing = AVSTREAM_PARSE_HEADERS;
2462         return 0;
2463     }
2464     if (sc->keyframes)
2465         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
2466     if (entries >= UINT_MAX / sizeof(int))
2467         return AVERROR_INVALIDDATA;
2468     av_freep(&sc->keyframes);
2469     sc->keyframe_count = 0;
2470     sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
2471     if (!sc->keyframes)
2472         return AVERROR(ENOMEM);
2473
2474     for (i = 0; i < entries && !pb->eof_reached; i++) {
2475         sc->keyframes[i] = avio_rb32(pb);
2476         //av_log(c->fc, AV_LOG_TRACE, "keyframes[]=%d\n", sc->keyframes[i]);
2477     }
2478
2479     sc->keyframe_count = i;
2480
2481     if (pb->eof_reached)
2482         return AVERROR_EOF;
2483
2484     return 0;
2485 }
2486
2487 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2488 {
2489     AVStream *st;
2490     MOVStreamContext *sc;
2491     unsigned int i, entries, sample_size, field_size, num_bytes;
2492     GetBitContext gb;
2493     unsigned char* buf;
2494     int ret;
2495
2496     if (c->fc->nb_streams < 1)
2497         return 0;
2498     st = c->fc->streams[c->fc->nb_streams-1];
2499     sc = st->priv_data;
2500
2501     avio_r8(pb); /* version */
2502     avio_rb24(pb); /* flags */
2503
2504     if (atom.type == MKTAG('s','t','s','z')) {
2505         sample_size = avio_rb32(pb);
2506         if (!sc->sample_size) /* do not overwrite value computed in stsd */
2507             sc->sample_size = sample_size;
2508         sc->stsz_sample_size = sample_size;
2509         field_size = 32;
2510     } else {
2511         sample_size = 0;
2512         avio_rb24(pb); /* reserved */
2513         field_size = avio_r8(pb);
2514     }
2515     entries = avio_rb32(pb);
2516
2517     av_log(c->fc, AV_LOG_TRACE, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
2518
2519     sc->sample_count = entries;
2520     if (sample_size)
2521         return 0;
2522
2523     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2524         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
2525         return AVERROR_INVALIDDATA;
2526     }
2527
2528     if (!entries)
2529         return 0;
2530     if (entries >= (UINT_MAX - 4) / field_size)
2531         return AVERROR_INVALIDDATA;
2532     if (sc->sample_sizes)
2533         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2534     av_free(sc->sample_sizes);
2535     sc->sample_count = 0;
2536     sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2537     if (!sc->sample_sizes)
2538         return AVERROR(ENOMEM);
2539
2540     num_bytes = (entries*field_size+4)>>3;
2541
2542     buf = av_malloc(num_bytes+AV_INPUT_BUFFER_PADDING_SIZE);
2543     if (!buf) {
2544         av_freep(&sc->sample_sizes);
2545         return AVERROR(ENOMEM);
2546     }
2547
2548     ret = ffio_read_size(pb, buf, num_bytes);
2549     if (ret < 0) {
2550         av_freep(&sc->sample_sizes);
2551         av_free(buf);
2552         return ret;
2553     }
2554
2555     init_get_bits(&gb, buf, 8*num_bytes);
2556
2557     for (i = 0; i < entries && !pb->eof_reached; i++) {
2558         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2559         sc->data_size += sc->sample_sizes[i];
2560     }
2561
2562     sc->sample_count = i;
2563
2564     av_free(buf);
2565
2566     if (pb->eof_reached)
2567         return AVERROR_EOF;
2568
2569     return 0;
2570 }
2571
2572 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2573 {
2574     AVStream *st;
2575     MOVStreamContext *sc;
2576     unsigned int i, entries;
2577     int64_t duration=0;
2578     int64_t total_sample_count=0;
2579
2580     if (c->fc->nb_streams < 1)
2581         return 0;
2582     st = c->fc->streams[c->fc->nb_streams-1];
2583     sc = st->priv_data;
2584
2585     avio_r8(pb); /* version */
2586     avio_rb24(pb); /* flags */
2587     entries = avio_rb32(pb);
2588
2589     av_log(c->fc, AV_LOG_TRACE, "track[%i].stts.entries = %i\n",
2590             c->fc->nb_streams-1, entries);
2591
2592     if (sc->stts_data)
2593         av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2594     av_free(sc->stts_data);
2595     sc->stts_count = 0;
2596     sc->stts_data = av_malloc_array(entries, sizeof(*sc->stts_data));
2597     if (!sc->stts_data)
2598         return AVERROR(ENOMEM);
2599
2600     for (i = 0; i < entries && !pb->eof_reached; i++) {
2601         int sample_duration;
2602         int sample_count;
2603
2604         sample_count=avio_rb32(pb);
2605         sample_duration = avio_rb32(pb);
2606
2607         if (sample_count < 0) {
2608             av_log(c->fc, AV_LOG_ERROR, "Invalid sample_count=%d\n", sample_count);
2609             return AVERROR_INVALIDDATA;
2610         }
2611         sc->stts_data[i].count= sample_count;
2612         sc->stts_data[i].duration= sample_duration;
2613
2614         av_log(c->fc, AV_LOG_TRACE, "sample_count=%d, sample_duration=%d\n",
2615                 sample_count, sample_duration);
2616
2617         if (   i+1 == entries
2618             && i
2619             && sample_count == 1
2620             && total_sample_count > 100
2621             && sample_duration/10 > duration / total_sample_count)
2622             sample_duration = duration / total_sample_count;
2623         duration+=(int64_t)sample_duration*sample_count;
2624         total_sample_count+=sample_count;
2625     }
2626
2627     sc->stts_count = i;
2628
2629     sc->duration_for_fps  += duration;
2630     sc->nb_frames_for_fps += total_sample_count;
2631
2632     if (pb->eof_reached)
2633         return AVERROR_EOF;
2634
2635     st->nb_frames= total_sample_count;
2636     if (duration)
2637         st->duration= duration;
2638     sc->track_end = duration;
2639     return 0;
2640 }
2641
2642 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2643 {
2644     if (duration < 0) {
2645         if (duration == INT_MIN) {
2646             av_log(NULL, AV_LOG_WARNING, "mov_update_dts_shift(): dts_shift set to %d\n", INT_MAX);
2647             duration++;
2648         }
2649         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2650     }
2651 }
2652
2653 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2654 {
2655     AVStream *st;
2656     MOVStreamContext *sc;
2657     unsigned int i, entries, ctts_count = 0;
2658
2659     if (c->fc->nb_streams < 1)
2660         return 0;
2661     st = c->fc->streams[c->fc->nb_streams-1];
2662     sc = st->priv_data;
2663
2664     avio_r8(pb); /* version */
2665     avio_rb24(pb); /* flags */
2666     entries = avio_rb32(pb);
2667
2668     av_log(c->fc, AV_LOG_TRACE, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
2669
2670     if (!entries)
2671         return 0;
2672     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2673         return AVERROR_INVALIDDATA;
2674     av_freep(&sc->ctts_data);
2675     sc->ctts_data = av_realloc(NULL, entries * sizeof(*sc->ctts_data));
2676     if (!sc->ctts_data)
2677         return AVERROR(ENOMEM);
2678
2679     for (i = 0; i < entries && !pb->eof_reached; i++) {
2680         int count    =avio_rb32(pb);
2681         int duration =avio_rb32(pb);
2682
2683         if (count <= 0) {
2684             av_log(c->fc, AV_LOG_TRACE,
2685                    "ignoring CTTS entry with count=%d duration=%d\n",
2686                    count, duration);
2687             continue;
2688         }
2689
2690         sc->ctts_data[ctts_count].count    = count;
2691         sc->ctts_data[ctts_count].duration = duration;
2692         ctts_count++;
2693
2694         av_log(c->fc, AV_LOG_TRACE, "count=%d, duration=%d\n",
2695                 count, duration);
2696
2697         if (FFNABS(duration) < -(1<<28) && i+2<entries) {
2698             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2699             av_freep(&sc->ctts_data);
2700             sc->ctts_count = 0;
2701             return 0;
2702         }
2703
2704         if (i+2<entries)
2705             mov_update_dts_shift(sc, duration);
2706     }
2707
2708     sc->ctts_count = ctts_count;
2709
2710     if (pb->eof_reached)
2711         return AVERROR_EOF;
2712
2713     av_log(c->fc, AV_LOG_TRACE, "dts shift %d\n", sc->dts_shift);
2714
2715     return 0;
2716 }
2717
2718 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2719 {
2720     AVStream *st;
2721     MOVStreamContext *sc;
2722     unsigned int i, entries;
2723     uint8_t version;
2724     uint32_t grouping_type;
2725
2726     if (c->fc->nb_streams < 1)
2727         return 0;
2728     st = c->fc->streams[c->fc->nb_streams-1];
2729     sc = st->priv_data;
2730
2731     version = avio_r8(pb); /* version */
2732     avio_rb24(pb); /* flags */
2733     grouping_type = avio_rl32(pb);
2734     if (grouping_type != MKTAG( 'r','a','p',' '))
2735         return 0; /* only support 'rap ' grouping */
2736     if (version == 1)
2737         avio_rb32(pb); /* grouping_type_parameter */
2738
2739     entries = avio_rb32(pb);
2740     if (!entries)
2741         return 0;
2742     if (sc->rap_group)
2743         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
2744     av_free(sc->rap_group);
2745     sc->rap_group_count = 0;
2746     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
2747     if (!sc->rap_group)
2748         return AVERROR(ENOMEM);
2749
2750     for (i = 0; i < entries && !pb->eof_reached; i++) {
2751         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
2752         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
2753     }
2754
2755     sc->rap_group_count = i;
2756
2757     return pb->eof_reached ? AVERROR_EOF : 0;
2758 }
2759
2760 /**
2761  * Get ith edit list entry (media time, duration).
2762  */
2763 static int get_edit_list_entry(const MOVStreamContext *msc,
2764                                unsigned int edit_list_index,
2765                                int64_t *edit_list_media_time,
2766                                int64_t *edit_list_duration,
2767                                int64_t global_timescale)
2768 {
2769     if (edit_list_index == msc->elst_count) {
2770         return 0;
2771     }
2772     *edit_list_media_time = msc->elst_data[edit_list_index].time;
2773     *edit_list_duration = msc->elst_data[edit_list_index].duration;
2774
2775     /* duration is in global timescale units;convert to msc timescale */
2776     if (global_timescale == 0) {
2777       avpriv_request_sample(msc, "Support for mvhd.timescale = 0 with editlists");
2778       return 0;
2779     }
2780     *edit_list_duration = av_rescale(*edit_list_duration, msc->time_scale,
2781                                      global_timescale);
2782     return 1;
2783 }
2784
2785 /**
2786  * Find the closest previous keyframe to the timestamp, in e_old index
2787  * entries.
2788  * Returns the index of the entry in st->index_entries if successful,
2789  * else returns -1.
2790  */
2791 static int64_t find_prev_closest_keyframe_index(AVStream *st,
2792                                                 AVIndexEntry *e_old,
2793                                                 int nb_old,
2794                                                 int64_t timestamp,
2795                                                 int flag)
2796 {
2797     AVIndexEntry *e_keep = st->index_entries;
2798     int nb_keep = st->nb_index_entries;
2799     int64_t found = -1;
2800
2801     st->index_entries = e_old;
2802     st->nb_index_entries = nb_old;
2803     found = av_index_search_timestamp(st, timestamp, flag | AVSEEK_FLAG_BACKWARD);
2804
2805     /* restore AVStream state*/
2806     st->index_entries = e_keep;
2807     st->nb_index_entries = nb_keep;
2808     return found;
2809 }
2810
2811 /**
2812  * Add index entry with the given values, to the end of st->index_entries.
2813  * Returns the new size st->index_entries if successful, else returns -1.
2814  *
2815  * This function is similar to ff_add_index_entry in libavformat/utils.c
2816  * except that here we are always unconditionally adding an index entry to
2817  * the end, instead of searching the entries list and skipping the add if
2818  * there is an existing entry with the same timestamp.
2819  * This is needed because the mov_fix_index calls this func with the same
2820  * unincremented timestamp for successive discarded frames.
2821  */
2822 static int64_t add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
2823                                int size, int distance, int flags)
2824 {
2825     AVIndexEntry *entries, *ie;
2826     int64_t index = -1;
2827     const size_t min_size_needed = (st->nb_index_entries + 1) * sizeof(AVIndexEntry);
2828
2829     // Double the allocation each time, to lower memory fragmentation.
2830     // Another difference from ff_add_index_entry function.
2831     const size_t requested_size =
2832         min_size_needed > st->index_entries_allocated_size ?
2833         FFMAX(min_size_needed, 2 * st->index_entries_allocated_size) :
2834         min_size_needed;
2835
2836     if((unsigned)st->nb_index_entries + 1 >= UINT_MAX / sizeof(AVIndexEntry))
2837         return -1;
2838
2839     entries = av_fast_realloc(st->index_entries,
2840                               &st->index_entries_allocated_size,
2841                               requested_size);
2842     if(!entries)
2843         return -1;
2844
2845     st->index_entries= entries;
2846
2847     index= st->nb_index_entries++;
2848     ie= &entries[index];
2849
2850     ie->pos = pos;
2851     ie->timestamp = timestamp;
2852     ie->min_distance= distance;
2853     ie->size= size;
2854     ie->flags = flags;
2855     return index;
2856 }
2857
2858 /**
2859  * Append a new ctts entry to ctts_data.
2860  * Returns the new ctts_count if successful, else returns -1.
2861  */
2862 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
2863                               int count, int duration)
2864 {
2865     MOVStts *ctts_buf_new;
2866     const size_t min_size_needed = (*ctts_count + 1) * sizeof(MOVStts);
2867     const size_t requested_size =
2868         min_size_needed > *allocated_size ?
2869         FFMAX(min_size_needed, 2 * (*allocated_size)) :
2870         min_size_needed;
2871
2872     if((unsigned)(*ctts_count) + 1 >= UINT_MAX / sizeof(MOVStts))
2873         return -1;
2874
2875     ctts_buf_new = av_fast_realloc(*ctts_data, allocated_size, requested_size);
2876
2877     if(!ctts_buf_new)
2878         return -1;
2879
2880     *ctts_data = ctts_buf_new;
2881
2882     ctts_buf_new[*ctts_count].count = count;
2883     ctts_buf_new[*ctts_count].duration = duration;
2884
2885     *ctts_count = (*ctts_count) + 1;
2886     return *ctts_count;
2887 }
2888
2889 /**
2890  * Fix st->index_entries, so that it contains only the entries (and the entries
2891  * which are needed to decode them) that fall in the edit list time ranges.
2892  * Also fixes the timestamps of the index entries to match the timeline
2893  * specified the edit lists.
2894  */
2895 static void mov_fix_index(MOVContext *mov, AVStream *st)
2896 {
2897     MOVStreamContext *msc = st->priv_data;
2898     AVIndexEntry *e_old = st->index_entries;
2899     int nb_old = st->nb_index_entries;
2900     const AVIndexEntry *e_old_end = e_old + nb_old;
2901     const AVIndexEntry *current = NULL;
2902     MOVStts *ctts_data_old = msc->ctts_data;
2903     int64_t ctts_index_old = 0;
2904     int64_t ctts_sample_old = 0;
2905     int64_t ctts_count_old = msc->ctts_count;
2906     int64_t edit_list_media_time = 0;
2907     int64_t edit_list_duration = 0;
2908     int64_t frame_duration = 0;
2909     int64_t edit_list_dts_counter = 0;
2910     int64_t edit_list_dts_entry_end = 0;
2911     int64_t edit_list_start_ctts_sample = 0;
2912     int64_t curr_cts;
2913     int64_t edit_list_index = 0;
2914     int64_t index;
2915     int64_t index_ctts_count;
2916     int flags;
2917     unsigned int ctts_allocated_size = 0;
2918     int64_t start_dts = 0;
2919     int64_t edit_list_media_time_dts = 0;
2920     int64_t edit_list_start_encountered = 0;
2921     int64_t search_timestamp = 0;
2922
2923
2924     if (!msc->elst_data || msc->elst_count <= 0) {
2925         return;
2926     }
2927     // Clean AVStream from traces of old index
2928     st->index_entries = NULL;
2929     st->index_entries_allocated_size = 0;
2930     st->nb_index_entries = 0;
2931
2932     // Clean ctts fields of MOVStreamContext
2933     msc->ctts_data = NULL;
2934     msc->ctts_count = 0;
2935     msc->ctts_index = 0;
2936     msc->ctts_sample = 0;
2937
2938     // If the dts_shift is positive (in case of negative ctts values in mov),
2939     // then negate the DTS by dts_shift
2940     if (msc->dts_shift > 0)
2941         edit_list_dts_entry_end -= msc->dts_shift;
2942
2943     // Offset the DTS by ctts[0] to make the PTS of the first frame 0
2944     if (ctts_data_old && ctts_count_old > 0) {
2945         edit_list_dts_entry_end -= ctts_data_old[0].duration;
2946         av_log(mov->fc, AV_LOG_DEBUG, "Offset DTS by ctts[%d].duration: %d\n", 0, ctts_data_old[0].duration);
2947     }
2948
2949     start_dts = edit_list_dts_entry_end;
2950
2951     while (get_edit_list_entry(msc, edit_list_index, &edit_list_media_time,
2952                                &edit_list_duration, mov->time_scale)) {
2953         av_log(mov->fc, AV_LOG_DEBUG, "Processing st: %d, edit list %"PRId64" - media time: %"PRId64", duration: %"PRId64"\n",
2954                st->index, edit_list_index, edit_list_media_time, edit_list_duration);
2955         edit_list_index++;
2956         edit_list_dts_counter = edit_list_dts_entry_end;
2957         edit_list_dts_entry_end += edit_list_duration;
2958         if (edit_list_media_time == -1) {
2959             continue;
2960         }
2961
2962         // If we encounter a non-negative edit list reset the skip_samples/start_pad fields and set them
2963         // according to the edit list below.
2964         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
2965             st->skip_samples = msc->start_pad = 0;
2966         }
2967
2968         //find closest previous key frame
2969         edit_list_media_time_dts = edit_list_media_time;
2970         if (msc->dts_shift > 0) {
2971             edit_list_media_time_dts -= msc->dts_shift;
2972         }
2973
2974         // While reordering frame index according to edit list we must handle properly
2975         // the scenario when edit list entry starts from none key frame.
2976         // We find closest previous key frame and preserve it and consequent frames in index.
2977         // All frames which are outside edit list entry time boundaries will be dropped after decoding.
2978         search_timestamp = edit_list_media_time_dts;
2979         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
2980             // Audio decoders like AAC need need a decoder delay samples previous to the current sample,
2981             // to correctly decode this frame. Hence for audio we seek to a frame 1 sec. before the
2982             // edit_list_media_time to cover the decoder delay.
2983             search_timestamp = FFMAX(search_timestamp - mov->time_scale, e_old[0].timestamp);
2984         }
2985
2986         index = find_prev_closest_keyframe_index(st, e_old, nb_old, search_timestamp, 0);
2987         if (index == -1) {
2988             av_log(mov->fc, AV_LOG_ERROR, "Missing key frame while reordering index according to edit list\n");
2989             continue;
2990         }
2991         current = e_old + index;
2992
2993         ctts_index_old = 0;
2994         ctts_sample_old = 0;
2995
2996         // set ctts_index properly for the found key frame
2997         for (index_ctts_count = 0; index_ctts_count < index; index_ctts_count++) {
2998             if (ctts_data_old && ctts_index_old < ctts_count_old) {
2999                 ctts_sample_old++;
3000                 if (ctts_data_old[ctts_index_old].count == ctts_sample_old) {
3001                     ctts_index_old++;
3002                     ctts_sample_old = 0;
3003                 }
3004             }
3005         }
3006
3007         edit_list_start_ctts_sample = ctts_sample_old;
3008
3009         // Iterate over index and arrange it according to edit list
3010         edit_list_start_encountered = 0;
3011         for (; current < e_old_end; current++, index++) {
3012             // check  if frame outside edit list mark it for discard
3013             frame_duration = (current + 1 <  e_old_end) ?
3014                              ((current + 1)->timestamp - current->timestamp) : edit_list_duration;
3015
3016             flags = current->flags;
3017
3018             // frames (pts) before or after edit list
3019             curr_cts = current->timestamp + msc->dts_shift;
3020
3021             if (ctts_data_old && ctts_index_old < ctts_count_old) {
3022                 av_log(mov->fc, AV_LOG_DEBUG, "shifted frame pts, curr_cts: %"PRId64" @ %"PRId64", ctts: %d, ctts_count: %"PRId64"\n",
3023                        curr_cts, ctts_index_old, ctts_data_old[ctts_index_old].duration, ctts_count_old);
3024                 curr_cts += ctts_data_old[ctts_index_old].duration;
3025                 ctts_sample_old++;
3026                 if (ctts_sample_old == ctts_data_old[ctts_index_old].count) {
3027                     if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3028                                        &ctts_allocated_size,
3029                                        ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3030                                        ctts_data_old[ctts_index_old].duration) == -1) {
3031                         av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3032                                ctts_index_old,
3033                                ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3034                                ctts_data_old[ctts_index_old].duration);
3035                         break;
3036                     }
3037                     ctts_index_old++;
3038                     ctts_sample_old = 0;
3039                     edit_list_start_ctts_sample = 0;
3040                 }
3041             }
3042
3043             if (curr_cts < edit_list_media_time || curr_cts >= (edit_list_duration + edit_list_media_time)) {
3044                 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && curr_cts < edit_list_media_time &&
3045                     curr_cts + frame_duration > edit_list_media_time &&
3046                     st->skip_samples == 0 && msc->start_pad == 0) {
3047                     st->skip_samples = msc->start_pad = edit_list_media_time - curr_cts;
3048
3049                     // Shift the index entry timestamp by skip_samples to be correct.
3050                     edit_list_dts_counter -= st->skip_samples;
3051                     if (edit_list_start_encountered == 0)  {
3052                       edit_list_start_encountered = 1;
3053                     }
3054
3055                     av_log(mov->fc, AV_LOG_DEBUG, "skip %d audio samples from curr_cts: %"PRId64"\n", st->skip_samples, curr_cts);
3056                 } else {
3057                     flags |= AVINDEX_DISCARD_FRAME;
3058                     av_log(mov->fc, AV_LOG_DEBUG, "drop a frame at curr_cts: %"PRId64" @ %"PRId64"\n", curr_cts, index);
3059                 }
3060             } else if (edit_list_start_encountered == 0) {
3061                 edit_list_start_encountered = 1;
3062             }
3063
3064             if (add_index_entry(st, current->pos, edit_list_dts_counter, current->size,
3065                                 current->min_distance, flags) == -1) {
3066                 av_log(mov->fc, AV_LOG_ERROR, "Cannot add index entry\n");
3067                 break;
3068             }
3069
3070             // Only start incrementing DTS in frame_duration amounts, when we encounter a frame in edit list.
3071             if (edit_list_start_encountered > 0) {
3072                 edit_list_dts_counter = edit_list_dts_counter + frame_duration;
3073             }
3074
3075             // Break when found first key frame after edit entry completion
3076             if (((curr_cts + frame_duration) >= (edit_list_duration + edit_list_media_time)) &&
3077                 ((flags & AVINDEX_KEYFRAME) || ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)))) {
3078
3079                 if (ctts_data_old && ctts_sample_old != 0) {
3080                     if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3081                                        &ctts_allocated_size,
3082                                        ctts_sample_old - edit_list_start_ctts_sample,
3083                                        ctts_data_old[ctts_index_old].duration) == -1) {
3084                         av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3085                                ctts_index_old, ctts_sample_old - edit_list_start_ctts_sample,
3086                                ctts_data_old[ctts_index_old].duration);
3087                         break;
3088                     }
3089                 }
3090                 break;
3091             }
3092         }
3093     }
3094     // Update av stream length
3095     st->duration = edit_list_dts_entry_end - start_dts;
3096
3097     // Free the old index and the old CTTS structures
3098     av_free(e_old);
3099     av_free(ctts_data_old);
3100 }
3101
3102 static void mov_build_index(MOVContext *mov, AVStream *st)
3103 {
3104     MOVStreamContext *sc = st->priv_data;
3105     int64_t current_offset;
3106     int64_t current_dts = 0;
3107     unsigned int stts_index = 0;
3108     unsigned int stsc_index = 0;
3109     unsigned int stss_index = 0;
3110     unsigned int stps_index = 0;
3111     unsigned int i, j;
3112     uint64_t stream_size = 0;
3113
3114     if (sc->elst_count) {
3115         int i, edit_start_index = 0;
3116         int64_t empty_duration = 0; // empty duration of the first edit list entry
3117         int64_t start_time = 0; // start time of the media
3118
3119         for (i = 0; i < sc->elst_count; i++) {
3120             const MOVElst *e = &sc->elst_data[i];
3121             if (i == 0 && e->time == -1) {
3122                 /* if empty, the first entry is the start time of the stream
3123                  * relative to the presentation itself */
3124                 empty_duration = e->duration;
3125                 edit_start_index = 1;
3126             } else if (i == edit_start_index && e->time >= 0) {
3127                 start_time = e->time;
3128             }
3129         }
3130
3131         /* adjust first dts according to edit list */
3132         if ((empty_duration || start_time) && mov->time_scale > 0) {
3133             if (empty_duration)
3134                 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
3135             sc->time_offset = start_time - empty_duration;
3136         }
3137     }
3138
3139     /* only use old uncompressed audio chunk demuxing when stts specifies it */
3140     if (!(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
3141           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
3142         unsigned int current_sample = 0;
3143         unsigned int stts_sample = 0;
3144         unsigned int sample_size;
3145         unsigned int distance = 0;
3146         unsigned int rap_group_index = 0;
3147         unsigned int rap_group_sample = 0;
3148         int64_t last_dts = 0;
3149         int64_t dts_correction = 0;
3150         int rap_group_present = sc->rap_group_count && sc->rap_group;
3151         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
3152
3153         current_dts -= sc->dts_shift;
3154         last_dts     = current_dts;
3155
3156         if (!sc->sample_count || st->nb_index_entries)
3157             return;
3158         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3159             return;
3160         if (av_reallocp_array(&st->index_entries,
3161                               st->nb_index_entries + sc->sample_count,
3162                               sizeof(*st->index_entries)) < 0) {
3163             st->nb_index_entries = 0;
3164             return;
3165         }
3166         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
3167
3168         for (i = 0; i < sc->chunk_count; i++) {
3169             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
3170             current_offset = sc->chunk_offsets[i];
3171             while (stsc_index + 1 < sc->stsc_count &&
3172                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3173                 stsc_index++;
3174
3175             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
3176                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
3177                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
3178                 sc->stsz_sample_size = sc->sample_size;
3179             }
3180             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
3181                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
3182                 sc->stsz_sample_size = sc->sample_size;
3183             }
3184
3185             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
3186                 int keyframe = 0;
3187                 if (current_sample >= sc->sample_count) {
3188                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
3189                     return;
3190                 }
3191
3192                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
3193                     keyframe = 1;
3194                     if (stss_index + 1 < sc->keyframe_count)
3195                         stss_index++;
3196                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
3197                     keyframe = 1;
3198                     if (stps_index + 1 < sc->stps_count)
3199                         stps_index++;
3200                 }
3201                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
3202                     if (sc->rap_group[rap_group_index].index > 0)
3203                         keyframe = 1;
3204                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
3205                         rap_group_sample = 0;
3206                         rap_group_index++;
3207                     }
3208                 }
3209                 if (sc->keyframe_absent
3210                     && !sc->stps_count
3211                     && !rap_group_present
3212                     && (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
3213                      keyframe = 1;
3214                 if (keyframe)
3215                     distance = 0;
3216                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
3217                 if (sc->pseudo_stream_id == -1 ||
3218                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
3219                     AVIndexEntry *e;
3220                     if (sample_size > 0x3FFFFFFF) {
3221                         av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", sample_size);
3222                         return;
3223                     }
3224                     e = &st->index_entries[st->nb_index_entries++];
3225                     e->pos = current_offset;
3226                     e->timestamp = current_dts;
3227                     e->size = sample_size;
3228                     e->min_distance = distance;
3229                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
3230                     av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
3231                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
3232                             current_offset, current_dts, sample_size, distance, keyframe);
3233                     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
3234                         ff_rfps_add_frame(mov->fc, st, current_dts);
3235                 }
3236
3237                 current_offset += sample_size;
3238                 stream_size += sample_size;
3239
3240                 /* A negative sample duration is invalid based on the spec,
3241                  * but some samples need it to correct the DTS. */
3242                 if (sc->stts_data[stts_index].duration < 0) {
3243                     av_log(mov->fc, AV_LOG_WARNING,
3244                            "Invalid SampleDelta %d in STTS, at %d st:%d\n",
3245                            sc->stts_data[stts_index].duration, stts_index,
3246                            st->index);
3247                     dts_correction += sc->stts_data[stts_index].duration - 1;
3248                     sc->stts_data[stts_index].duration = 1;
3249                 }
3250                 current_dts += sc->stts_data[stts_index].duration;
3251                 if (!dts_correction || current_dts + dts_correction > last_dts) {
3252                     current_dts += dts_correction;
3253                     dts_correction = 0;
3254                 } else {
3255                     /* Avoid creating non-monotonous DTS */
3256                     dts_correction += current_dts - last_dts - 1;
3257                     current_dts = last_dts + 1;
3258                 }
3259                 last_dts = current_dts;
3260                 distance++;
3261                 stts_sample++;
3262                 current_sample++;
3263                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
3264                     stts_sample = 0;
3265                     stts_index++;
3266                 }
3267             }
3268         }
3269         if (st->duration > 0)
3270             st->codecpar->bit_rate = stream_size*8*sc->time_scale/st->duration;
3271     } else {
3272         unsigned chunk_samples, total = 0;
3273
3274         // compute total chunk count
3275         for (i = 0; i < sc->stsc_count; i++) {
3276             unsigned count, chunk_count;
3277
3278             chunk_samples = sc->stsc_data[i].count;
3279             if (i != sc->stsc_count - 1 &&
3280                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
3281                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
3282                 return;
3283             }
3284
3285             if (sc->samples_per_frame >= 160) { // gsm
3286                 count = chunk_samples / sc->samples_per_frame;
3287             } else if (sc->samples_per_frame > 1) {
3288                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
3289                 count = (chunk_samples+samples-1) / samples;
3290             } else {
3291                 count = (chunk_samples+1023) / 1024;
3292             }
3293
3294             if (i < sc->stsc_count - 1)
3295                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
3296             else
3297                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
3298             total += chunk_count * count;
3299         }
3300
3301         av_log(mov->fc, AV_LOG_TRACE, "chunk count %d\n", total);
3302         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3303             return;
3304         if (av_reallocp_array(&st->index_entries,
3305                               st->nb_index_entries + total,
3306                               sizeof(*st->index_entries)) < 0) {
3307             st->nb_index_entries = 0;
3308             return;
3309         }
3310         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
3311
3312         // populate index
3313         for (i = 0; i < sc->chunk_count; i++) {
3314             current_offset = sc->chunk_offsets[i];
3315             if (stsc_index + 1 < sc->stsc_count &&
3316                 i + 1 == sc->stsc_data[stsc_index + 1].first)
3317                 stsc_index++;
3318             chunk_samples = sc->stsc_data[stsc_index].count;
3319
3320             while (chunk_samples > 0) {
3321                 AVIndexEntry *e;
3322                 unsigned size, samples;
3323
3324                 if (sc->samples_per_frame > 1 && !sc->bytes_per_frame) {
3325                     avpriv_request_sample(mov->fc,
3326                            "Zero bytes per frame, but %d samples per frame",
3327                            sc->samples_per_frame);
3328                     return;
3329                 }
3330
3331                 if (sc->samples_per_frame >= 160) { // gsm
3332                     samples = sc->samples_per_frame;
3333                     size = sc->bytes_per_frame;
3334                 } else {
3335                     if (sc->samples_per_frame > 1) {
3336                         samples = FFMIN((1024 / sc->samples_per_frame)*
3337                                         sc->samples_per_frame, chunk_samples);
3338                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
3339                     } else {
3340                         samples = FFMIN(1024, chunk_samples);
3341                         size = samples * sc->sample_size;
3342                     }
3343                 }
3344
3345                 if (st->nb_index_entries >= total) {
3346                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
3347                     return;
3348                 }
3349                 if (size > 0x3FFFFFFF) {
3350                     av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", size);
3351                     return;
3352                 }
3353                 e = &st->index_entries[st->nb_index_entries++];
3354                 e->pos = current_offset;
3355                 e->timestamp = current_dts;
3356                 e->size = size;
3357                 e->min_distance = 0;
3358                 e->flags = AVINDEX_KEYFRAME;
3359                 av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
3360                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
3361                         size, samples);
3362
3363                 current_offset += size;
3364                 current_dts += samples;
3365                 chunk_samples -= samples;
3366             }
3367         }
3368     }
3369
3370     // Fix index according to edit lists.
3371     mov_fix_index(mov, st);
3372 }
3373
3374 static int test_same_origin(const char *src, const char *ref) {
3375     char src_proto[64];
3376     char ref_proto[64];
3377     char src_auth[256];
3378     char ref_auth[256];
3379     char src_host[256];
3380     char ref_host[256];
3381     int src_port=-1;
3382     int ref_port=-1;
3383
3384     av_url_split(src_proto, sizeof(src_proto), src_auth, sizeof(src_auth), src_host, sizeof(src_host), &src_port, NULL, 0, src);
3385     av_url_split(ref_proto, sizeof(ref_proto), ref_auth, sizeof(ref_auth), ref_host, sizeof(ref_host), &ref_port, NULL, 0, ref);
3386
3387     if (strlen(src) == 0) {
3388         return -1;
3389     } else if (strlen(src_auth) + 1 >= sizeof(src_auth) ||
3390         strlen(ref_auth) + 1 >= sizeof(ref_auth) ||
3391         strlen(src_host) + 1 >= sizeof(src_host) ||
3392         strlen(ref_host) + 1 >= sizeof(ref_host)) {
3393         return 0;
3394     } else if (strcmp(src_proto, ref_proto) ||
3395                strcmp(src_auth, ref_auth) ||
3396                strcmp(src_host, ref_host) ||
3397                src_port != ref_port) {
3398         return 0;
3399     } else
3400         return 1;
3401 }
3402
3403 static int mov_open_dref(MOVContext *c, AVIOContext **pb, const char *src, MOVDref *ref)
3404 {
3405     /* try relative path, we do not try the absolute because it can leak information about our
3406        system to an attacker */
3407     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
3408         char filename[1025];
3409         const char *src_path;
3410         int i, l;
3411
3412         /* find a source dir */
3413         src_path = strrchr(src, '/');
3414         if (src_path)
3415             src_path++;
3416         else
3417             src_path = src;
3418
3419         /* find a next level down to target */
3420         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
3421             if (ref->path[l] == '/') {
3422                 if (i == ref->nlvl_to - 1)
3423                     break;
3424                 else
3425                     i++;
3426             }
3427
3428         /* compose filename if next level down to target was found */
3429         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
3430             memcpy(filename, src, src_path - src);
3431             filename[src_path - src] = 0;
3432
3433             for (i = 1; i < ref->nlvl_from; i++)
3434                 av_strlcat(filename, "../", sizeof(filename));
3435
3436             av_strlcat(filename, ref->path + l + 1, sizeof(filename));
3437             if (!c->use_absolute_path) {
3438                 int same_origin = test_same_origin(src, filename);
3439
3440                 if (!same_origin) {
3441                     av_log(c->fc, AV_LOG_ERROR,
3442                         "Reference with mismatching origin, %s not tried for security reasons, "
3443                         "set demuxer option use_absolute_path to allow it anyway\n",
3444                         ref->path);
3445                     return AVERROR(ENOENT);
3446                 }
3447
3448                 if(strstr(ref->path + l + 1, "..") ||
3449                    strstr(ref->path + l + 1, ":") ||
3450                    (ref->nlvl_from > 1 && same_origin < 0) ||
3451                    (filename[0] == '/' && src_path == src))
3452                     return AVERROR(ENOENT);
3453             }
3454
3455             if (strlen(filename) + 1 == sizeof(filename))
3456                 return AVERROR(ENOENT);
3457             if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, NULL))
3458                 return 0;
3459         }
3460     } else if (c->use_absolute_path) {
3461         av_log(c->fc, AV_LOG_WARNING, "Using absolute path on user request, "
3462                "this is a possible security issue\n");
3463         if (!c->fc->io_open(c->fc, pb, ref->path, AVIO_FLAG_READ, NULL))
3464             return 0;
3465     } else {
3466         av_log(c->fc, AV_LOG_ERROR,
3467                "Absolute path %s not tried for security reasons, "
3468                "set demuxer option use_absolute_path to allow absolute paths\n",
3469                ref->path);
3470     }
3471
3472     return AVERROR(ENOENT);
3473 }
3474
3475 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
3476 {
3477     if (sc->time_scale <= 0) {
3478         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
3479         sc->time_scale = c->time_scale;
3480         if (sc->time_scale <= 0)
3481             sc->time_scale = 1;
3482     }
3483 }
3484
3485 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3486 {
3487     AVStream *st;
3488     MOVStreamContext *sc;
3489     int ret;
3490
3491     st = avformat_new_stream(c->fc, NULL);
3492     if (!st) return AVERROR(ENOMEM);
3493     st->id = c->fc->nb_streams;
3494     sc = av_mallocz(sizeof(MOVStreamContext));
3495     if (!sc) return AVERROR(ENOMEM);
3496
3497     st->priv_data = sc;
3498     st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
3499     sc->ffindex = st->index;
3500     c->trak_index = st->index;
3501
3502     if ((ret = mov_read_default(c, pb, atom)) < 0)
3503         return ret;
3504
3505     c->trak_index = -1;
3506
3507     /* sanity checks */
3508     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
3509                             (!sc->sample_size && !sc->sample_count))) {
3510         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
3511                st->index);
3512         return 0;
3513     }
3514
3515     fix_timescale(c, sc);
3516
3517     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
3518
3519     mov_build_index(c, st);
3520
3521     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
3522         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
3523         if (c->enable_drefs) {
3524             if (mov_open_dref(c, &sc->pb, c->fc->filename, dref) < 0)
3525                 av_log(c->fc, AV_LOG_ERROR,
3526                        "stream %d, error opening alias: path='%s', dir='%s', "
3527                        "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
3528                        st->index, dref->path, dref->dir, dref->filename,
3529                        dref->volume, dref->nlvl_from, dref->nlvl_to);
3530         } else {
3531             av_log(c->fc, AV_LOG_WARNING,
3532                    "Skipped opening external track: "
3533                    "stream %d, alias: path='%s', dir='%s', "
3534                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d."
3535                    "Set enable_drefs to allow this.\n",
3536                    st->index, dref->path, dref->dir, dref->filename,
3537                    dref->volume, dref->nlvl_from, dref->nlvl_to);
3538         }
3539     } else {
3540         sc->pb = c->fc->pb;
3541         sc->pb_is_copied = 1;
3542     }
3543
3544     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
3545         if (!st->sample_aspect_ratio.num && st->codecpar->width && st->codecpar->height &&
3546             sc->height && sc->width &&
3547             (st->codecpar->width != sc->width || st->codecpar->height != sc->height)) {
3548             st->sample_aspect_ratio = av_d2q(((double)st->codecpar->height * sc->width) /
3549                                              ((double)st->codecpar->width * sc->height), INT_MAX);
3550         }
3551
3552 #if FF_API_R_FRAME_RATE
3553         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
3554             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
3555                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
3556 #endif
3557     }
3558
3559     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
3560     if (!st->codecpar->extradata_size && st->codecpar->codec_id == AV_CODEC_ID_H264 &&
3561         TAG_IS_AVCI(st->codecpar->codec_tag)) {
3562         ret = ff_generate_avci_extradata(st);
3563         if (ret < 0)
3564             return ret;
3565     }
3566
3567     switch (st->codecpar->codec_id) {
3568 #if CONFIG_H261_DECODER
3569     case AV_CODEC_ID_H261:
3570 #endif
3571 #if CONFIG_H263_DECODER
3572     case AV_CODEC_ID_H263:
3573 #endif
3574 #if CONFIG_MPEG4_DECODER
3575     case AV_CODEC_ID_MPEG4:
3576 #endif
3577         st->codecpar->width = 0; /* let decoder init width/height */
3578         st->codecpar->height= 0;
3579         break;
3580     }
3581
3582     // If the duration of the mp3 packets is not constant, then they could need a parser
3583     if (st->codecpar->codec_id == AV_CODEC_ID_MP3
3584         && sc->stts_count > 3
3585         && sc->stts_count*10 > st->nb_frames
3586         && sc->time_scale == st->codecpar->sample_rate) {
3587             st->need_parsing = AVSTREAM_PARSE_FULL;
3588     }
3589     /* Do not need those anymore. */
3590     av_freep(&sc->chunk_offsets);
3591     av_freep(&sc->sample_sizes);
3592     av_freep(&sc->keyframes);
3593     av_freep(&sc->stts_data);
3594     av_freep(&sc->stps_data);
3595     av_freep(&sc->elst_data);
3596     av_freep(&sc->rap_group);
3597
3598     return 0;
3599 }
3600
3601 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3602 {
3603     int ret;
3604     c->itunes_metadata = 1;
3605     ret = mov_read_default(c, pb, atom);
3606     c->itunes_metadata = 0;
3607     return ret;
3608 }
3609
3610 static int mov_read_keys(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3611 {
3612     uint32_t count;
3613     uint32_t i;
3614
3615     if (atom.size < 8)
3616         return 0;
3617
3618     avio_skip(pb, 4);
3619     count = avio_rb32(pb);
3620     if (count > UINT_MAX / sizeof(*c->meta_keys) - 1) {
3621         av_log(c->fc, AV_LOG_ERROR,
3622                "The 'keys' atom with the invalid key count: %d\n", count);
3623         return AVERROR_INVALIDDATA;
3624     }
3625
3626     c->meta_keys_count = count + 1;
3627     c->meta_keys = av_mallocz(c->meta_keys_count * sizeof(*c->meta_keys));
3628     if (!c->meta_keys)
3629         return AVERROR(ENOMEM);
3630
3631     for (i = 1; i <= count; ++i) {
3632         uint32_t key_size = avio_rb32(pb);
3633         uint32_t type = avio_rl32(pb);
3634         if (key_size < 8) {
3635             av_log(c->fc, AV_LOG_ERROR,
3636                    "The key# %d in meta has invalid size: %d\n", i, key_size);
3637             return AVERROR_INVALIDDATA;
3638         }
3639         key_size -= 8;
3640         if (type != MKTAG('m','d','t','a')) {
3641             avio_skip(pb, key_size);
3642         }
3643         c->meta_keys[i] = av_mallocz(key_size + 1);
3644         if (!c->meta_keys[i])
3645             return AVERROR(ENOMEM);
3646         avio_read(pb, c->meta_keys[i], key_size);
3647     }
3648
3649     return 0;
3650 }
3651
3652 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3653 {
3654     int64_t end = avio_tell(pb) + atom.size;
3655     uint8_t *key = NULL, *val = NULL, *mean = NULL;
3656     int i;
3657     int ret = 0;
3658     AVStream *st;
3659     MOVStreamContext *sc;
3660
3661     if (c->fc->nb_streams < 1)
3662         return 0;
3663     st = c->fc->streams[c->fc->nb_streams-1];
3664     sc = st->priv_data;
3665
3666     for (i = 0; i < 3; i++) {
3667         uint8_t **p;
3668         uint32_t len, tag;
3669
3670         if (end - avio_tell(pb) <= 12)
3671             break;
3672
3673         len = avio_rb32(pb);
3674         tag = avio_rl32(pb);
3675         avio_skip(pb, 4); // flags
3676
3677         if (len < 12 || len - 12 > end - avio_tell(pb))
3678             break;
3679         len -= 12;
3680
3681         if (tag == MKTAG('m', 'e', 'a', 'n'))
3682             p = &mean;
3683         else if (tag == MKTAG('n', 'a', 'm', 'e'))
3684             p = &key;
3685         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
3686             avio_skip(pb, 4);
3687             len -= 4;
3688             p = &val;
3689         } else
3690             break;
3691
3692         *p = av_malloc(len + 1);
3693         if (!*p)
3694             break;
3695         ret = ffio_read_size(pb, *p, len);
3696         if (ret < 0) {
3697             av_freep(p);
3698             break;
3699         }
3700         (*p)[len] = 0;
3701     }
3702
3703     if (mean && key && val) {
3704         if (strcmp(key, "iTunSMPB") == 0) {
3705             int priming, remainder, samples;
3706             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
3707                 if(priming>0 && priming<16384)
3708                     sc->start_pad = priming;
3709             }
3710         }
3711         if (strcmp(key, "cdec") != 0) {
3712             av_dict_set(&c->fc->metadata, key, val,
3713                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
3714             key = val = NULL;
3715         }
3716     } else {
3717         av_log(c->fc, AV_LOG_VERBOSE,
3718                "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
3719     }
3720
3721     avio_seek(pb, end, SEEK_SET);
3722     av_freep(&key);
3723     av_freep(&val);
3724     av_freep(&mean);
3725     return ret;
3726 }
3727
3728 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3729 {
3730     while (atom.size > 8) {
3731         uint32_t tag = avio_rl32(pb);
3732         atom.size -= 4;
3733         if (tag == MKTAG('h','d','l','r')) {
3734             avio_seek(pb, -8, SEEK_CUR);
3735             atom.size += 8;
3736             return mov_read_default(c, pb, atom);
3737         }
3738     }
3739     return 0;
3740 }
3741
3742 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3743 {
3744     int i;
3745     int width;
3746     int height;
3747     int display_matrix[3][3];
3748     AVStream *st;
3749     MOVStreamContext *sc;
3750     int version;
3751     int flags;
3752
3753     if (c->fc->nb_streams < 1)
3754         return 0;
3755     st = c->fc->streams[c->fc->nb_streams-1];
3756     sc = st->priv_data;
3757
3758     version = avio_r8(pb);
3759     flags = avio_rb24(pb);
3760     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
3761
3762     if (version == 1) {
3763         avio_rb64(pb);
3764         avio_rb64(pb);
3765     } else {
3766         avio_rb32(pb); /* creation time */
3767         avio_rb32(pb); /* modification time */
3768     }
3769     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
3770     avio_rb32(pb); /* reserved */
3771
3772     /* highlevel (considering edits) duration in movie timebase */
3773     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
3774     avio_rb32(pb); /* reserved */
3775     avio_rb32(pb); /* reserved */
3776
3777     avio_rb16(pb); /* layer */
3778     avio_rb16(pb); /* alternate group */
3779     avio_rb16(pb); /* volume */
3780     avio_rb16(pb); /* reserved */
3781
3782     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
3783     // they're kept in fixed point format through all calculations
3784     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
3785     // side data, but the scale factor is not needed to calculate aspect ratio
3786     for (i = 0; i < 3; i++) {
3787         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
3788         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
3789         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
3790     }
3791
3792     width = avio_rb32(pb);       // 16.16 fixed point track width
3793     height = avio_rb32(pb);      // 16.16 fixed point track height
3794     sc->width = width >> 16;
3795     sc->height = height >> 16;
3796
3797     // save the matrix and add rotate metadata when it is not the default
3798     // identity
3799     if (display_matrix[0][0] != (1 << 16) ||
3800         display_matrix[1][1] != (1 << 16) ||
3801         display_matrix[2][2] != (1 << 30) ||
3802         display_matrix[0][1] || display_matrix[0][2] ||
3803         display_matrix[1][0] || display_matrix[1][2] ||
3804         display_matrix[2][0] || display_matrix[2][1]) {
3805         int i, j;
3806         double rotate;
3807
3808         av_freep(&sc->display_matrix);
3809         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
3810         if (!sc->display_matrix)
3811             return AVERROR(ENOMEM);
3812
3813         for (i = 0; i < 3; i++)
3814             for (j = 0; j < 3; j++)
3815                 sc->display_matrix[i * 3 + j] = display_matrix[i][j];
3816
3817         rotate = av_display_rotation_get(sc->display_matrix);
3818         if (!isnan(rotate)) {
3819             char rotate_buf[64];
3820             rotate = -rotate;
3821             if (rotate < 0) // for backward compatibility
3822                 rotate += 360;
3823             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
3824             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
3825         }
3826     }
3827
3828     // transform the display width/height according to the matrix
3829     // to keep the same scale, use [width height 1<<16]
3830     if (width && height && sc->display_matrix) {
3831         double disp_transform[2];
3832
3833         for (i = 0; i < 2; i++)
3834             disp_transform[i] = hypot(display_matrix[i][0], display_matrix[i][1]);
3835
3836         if (disp_transform[0] > 0       && disp_transform[1] > 0 &&
3837             disp_transform[0] < (1<<24) && disp_transform[1] < (1<<24) &&
3838             fabs((disp_transform[0] / disp_transform[1]) - 1.0) > 0.01)
3839             st->sample_aspect_ratio = av_d2q(
3840                 disp_transform[0] / disp_transform[1],
3841                 INT_MAX);
3842     }
3843     return 0;
3844 }
3845
3846 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3847 {
3848     MOVFragment *frag = &c->fragment;
3849     MOVTrackExt *trex = NULL;
3850     MOVFragmentIndex* index = NULL;
3851     int flags, track_id, i, found = 0;
3852
3853     avio_r8(pb); /* version */
3854     flags = avio_rb24(pb);
3855
3856     track_id = avio_rb32(pb);
3857     if (!track_id)
3858         return AVERROR_INVALIDDATA;
3859     frag->track_id = track_id;
3860     for (i = 0; i < c->trex_count; i++)
3861         if (c->trex_data[i].track_id == frag->track_id) {
3862             trex = &c->trex_data[i];
3863             break;
3864         }
3865     if (!trex) {
3866         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
3867         return AVERROR_INVALIDDATA;
3868     }
3869
3870     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
3871                              avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
3872                              frag->moof_offset : frag->implicit_offset;
3873     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
3874
3875     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
3876                      avio_rb32(pb) : trex->duration;
3877     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
3878                      avio_rb32(pb) : trex->size;
3879     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
3880                      avio_rb32(pb) : trex->flags;
3881     frag->time     = AV_NOPTS_VALUE;
3882     for (i = 0; i < c->fragment_index_count; i++) {
3883         int j;
3884         MOVFragmentIndex* candidate = c->fragment_index_data[i];
3885         if (candidate->track_id == frag->track_id) {
3886             av_log(c->fc, AV_LOG_DEBUG,
3887                    "found fragment index for track %u\n", frag->track_id);
3888             index = candidate;
3889             for (j = index->current_item; j < index->item_count; j++) {
3890                 if (frag->implicit_offset == index->items[j].moof_offset) {
3891                     av_log(c->fc, AV_LOG_DEBUG, "found fragment index entry "
3892                             "for track %u and moof_offset %"PRId64"\n",
3893                             frag->track_id, index->items[j].moof_offset);
3894                     frag->time = index->items[j].time;
3895                     index->current_item = j + 1;
3896                     found = 1;
3897                     break;
3898                 }
3899             }
3900             if (found)
3901                 break;
3902         }
3903     }
3904     if (index && !found) {
3905         av_log(c->fc, AV_LOG_DEBUG, "track %u has a fragment index but "
3906                "it doesn't have an (in-order) entry for moof_offset "
3907                "%"PRId64"\n", frag->track_id, frag->implicit_offset);
3908     }
3909     av_log(c->fc, AV_LOG_TRACE, "frag flags 0x%x\n", frag->flags);
3910     return 0;
3911 }
3912
3913 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3914 {
3915     c->chapter_track = avio_rb32(pb);
3916     return 0;
3917 }
3918
3919 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3920 {
3921     MOVTrackExt *trex;
3922     int err;
3923
3924     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
3925         return AVERROR_INVALIDDATA;
3926     if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
3927                                  sizeof(*c->trex_data))) < 0) {
3928         c->trex_count = 0;
3929         return err;
3930     }
3931
3932     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
3933
3934     trex = &c->trex_data[c->trex_count++];
3935     avio_r8(pb); /* version */
3936     avio_rb24(pb); /* flags */
3937     trex->track_id = avio_rb32(pb);
3938     trex->stsd_id  = avio_rb32(pb);
3939     trex->duration = avio_rb32(pb);
3940     trex->size     = avio_rb32(pb);
3941     trex->flags    = avio_rb32(pb);
3942     return 0;
3943 }
3944
3945 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3946 {
3947     MOVFragment *frag = &c->fragment;
3948     AVStream *st = NULL;
3949     MOVStreamContext *sc;
3950     int version, i;
3951
3952     for (i = 0; i < c->fc->nb_streams; i++) {
3953         if (c->fc->streams[i]->id == frag->track_id) {
3954             st = c->fc->streams[i];
3955             break;
3956         }
3957     }
3958     if (!st) {
3959         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
3960         return AVERROR_INVALIDDATA;
3961     }
3962     sc = st->priv_data;
3963     if (sc->pseudo_stream_id + 1 != frag->stsd_id)
3964         return 0;
3965     version = avio_r8(pb);
3966     avio_rb24(pb); /* flags */
3967     if (version) {
3968         sc->track_end = avio_rb64(pb);
3969     } else {
3970         sc->track_end = avio_rb32(pb);
3971     }
3972     return 0;
3973 }
3974
3975 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3976 {
3977     MOVFragment *frag = &c->fragment;
3978     AVStream *st = NULL;
3979     MOVStreamContext *sc;
3980     MOVStts *ctts_data;
3981     uint64_t offset;
3982     int64_t dts;
3983     int data_offset = 0;
3984     unsigned entries, first_sample_flags = frag->flags;
3985     int flags, distance, i, err;
3986
3987     for (i = 0; i < c->fc->nb_streams; i++) {
3988         if (c->fc->streams[i]->id == frag->track_id) {
3989             st = c->fc->streams[i];
3990             break;
3991         }
3992     }
3993     if (!st) {
3994         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
3995         return AVERROR_INVALIDDATA;
3996     }
3997     sc = st->priv_data;
3998     if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
3999         return 0;
4000     avio_r8(pb); /* version */
4001     flags = avio_rb24(pb);
4002     entries = avio_rb32(pb);
4003     av_log(c->fc, AV_LOG_TRACE, "flags 0x%x entries %d\n", flags, entries);
4004
4005     /* Always assume the presence of composition time offsets.
4006      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
4007      *  1) in the initial movie, there are no samples.
4008      *  2) in the first movie fragment, there is only one sample without composition time offset.
4009      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
4010     if (!sc->ctts_count && sc->sample_count)
4011     {
4012         /* Complement ctts table if moov atom doesn't have ctts atom. */
4013         ctts_data = av_realloc(NULL, sizeof(*sc->ctts_data));
4014         if (!ctts_data)
4015             return AVERROR(ENOMEM);
4016         sc->ctts_data = ctts_data;
4017         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
4018         sc->ctts_data[sc->ctts_count].duration = 0;
4019         sc->ctts_count++;
4020     }
4021     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
4022         return AVERROR_INVALIDDATA;
4023     if ((err = av_reallocp_array(&sc->ctts_data, entries + sc->ctts_count,
4024                                  sizeof(*sc->ctts_data))) < 0) {
4025         sc->ctts_count = 0;
4026         return err;
4027     }
4028     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
4029     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
4030     dts    = sc->track_end - sc->time_offset;
4031     offset = frag->base_data_offset + data_offset;
4032     distance = 0;
4033     av_log(c->fc, AV_LOG_TRACE, "first sample flags 0x%x\n", first_sample_flags);
4034     for (i = 0; i < entries && !pb->eof_reached; i++) {
4035         unsigned sample_size = frag->size;
4036         int sample_flags = i ? frag->flags : first_sample_flags;
4037         unsigned sample_duration = frag->duration;
4038         int keyframe = 0;
4039
4040         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
4041         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
4042         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
4043         sc->ctts_data[sc->ctts_count].count = 1;
4044         sc->ctts_data[sc->ctts_count].duration = (flags & MOV_TRUN_SAMPLE_CTS) ?
4045                                                   avio_rb32(pb) : 0;
4046         mov_update_dts_shift(sc, sc->ctts_data[sc->ctts_count].duration);
4047         if (frag->time != AV_NOPTS_VALUE) {
4048             if (c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
4049                 int64_t pts = frag->time;
4050                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
4051                         " sc->dts_shift %d ctts.duration %d"
4052                         " sc->time_offset %"PRId64" flags & MOV_TRUN_SAMPLE_CTS %d\n", pts,
4053                         sc->dts_shift, sc->ctts_data[sc->ctts_count].duration,
4054                         sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
4055                 dts = pts - sc->dts_shift;
4056                 if (flags & MOV_TRUN_SAMPLE_CTS) {
4057                     dts -= sc->ctts_data[sc->ctts_count].duration;
4058                 } else {
4059                     dts -= sc->time_offset;
4060                 }
4061                 av_log(c->fc, AV_LOG_DEBUG, "calculated into dts %"PRId64"\n", dts);
4062             } else {
4063                 dts = frag->time - sc->time_offset;
4064                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
4065                         ", using it for dts\n", dts);
4066             }
4067             frag->time = AV_NOPTS_VALUE;
4068         }
4069         sc->ctts_count++;
4070         if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4071             keyframe = 1;
4072         else
4073             keyframe =
4074                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
4075                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
4076         if (keyframe)
4077             distance = 0;
4078         err = av_add_index_entry(st, offset, dts, sample_size, distance,
4079                                  keyframe ? AVINDEX_KEYFRAME : 0);
4080         if (err < 0) {
4081             av_log(c->fc, AV_LOG_ERROR, "Failed to add index entry\n");
4082         }
4083         av_log(c->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
4084                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
4085                 offset, dts, sample_size, distance, keyframe);
4086         distance++;
4087         dts += sample_duration;
4088         offset += sample_size;
4089         sc->data_size += sample_size;
4090         sc->duration_for_fps += sample_duration;
4091         sc->nb_frames_for_fps ++;
4092     }
4093
4094     if (pb->eof_reached)
4095         return AVERROR_EOF;
4096
4097     frag->implicit_offset = offset;
4098
4099     sc->track_end = dts + sc->time_offset;
4100     if (st->duration < sc->track_end)
4101         st->duration = sc->track_end;
4102
4103     return 0;
4104 }
4105
4106 static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4107 {
4108     int64_t offset = avio_tell(pb) + atom.size, pts;
4109     uint8_t version;
4110     unsigned i, track_id;
4111     AVStream *st = NULL;
4112     MOVStreamContext *sc;
4113     MOVFragmentIndex *index = NULL;
4114     MOVFragmentIndex **tmp;
4115     AVRational timescale;
4116
4117     version = avio_r8(pb);
4118     if (version > 1) {
4119         avpriv_request_sample(c->fc, "sidx version %u", version);
4120         return 0;
4121     }
4122
4123     avio_rb24(pb); // flags
4124
4125     track_id = avio_rb32(pb); // Reference ID
4126     for (i = 0; i < c->fc->nb_streams; i++) {
4127         if (c->fc->streams[i]->id == track_id) {
4128             st = c->fc->streams[i];
4129             break;
4130         }
4131     }
4132     if (!st) {
4133         av_log(c->fc, AV_LOG_WARNING, "could not find corresponding track id %d\n", track_id);
4134         return 0;
4135     }
4136
4137     sc = st->priv_data;
4138
4139     timescale = av_make_q(1, avio_rb32(pb));
4140
4141     if (version == 0) {
4142         pts = avio_rb32(pb);
4143         offset += avio_rb32(pb);
4144     } else {
4145         pts = avio_rb64(pb);
4146         offset += avio_rb64(pb);
4147     }
4148
4149     avio_rb16(pb); // reserved
4150
4151     index = av_mallocz(sizeof(MOVFragmentIndex));
4152     if (!index)
4153         return AVERROR(ENOMEM);
4154
4155     index->track_id = track_id;
4156
4157     index->item_count = avio_rb16(pb);
4158     index->items = av_mallocz_array(index->item_count, sizeof(MOVFragmentIndexItem));
4159
4160     if (!index->items) {
4161         av_freep(&index);
4162         return AVERROR(ENOMEM);
4163     }
4164
4165     for (i = 0; i < index->item_count; i++) {
4166         uint32_t size = avio_rb32(pb);
4167         uint32_t duration = avio_rb32(pb);
4168         if (size & 0x80000000) {
4169             avpriv_request_sample(c->fc, "sidx reference_type 1");
4170             av_freep(&index->items);
4171             av_freep(&index);
4172             return AVERROR_PATCHWELCOME;
4173         }
4174         avio_rb32(pb); // sap_flags
4175         index->items[i].moof_offset = offset;
4176         index->items[i].time = av_rescale_q(pts, st->time_base, timescale);
4177         offset += size;
4178         pts += duration;
4179     }
4180
4181     st->duration = sc->track_end = pts;
4182
4183     tmp = av_realloc_array(c->fragment_index_data,
4184                            c->fragment_index_count + 1,
4185                            sizeof(MOVFragmentIndex*));
4186     if (!tmp) {
4187         av_freep(&index->items);
4188         av_freep(&index);
4189         return AVERROR(ENOMEM);
4190     }
4191
4192     c->fragment_index_data = tmp;
4193     c->fragment_index_data[c->fragment_index_count++] = index;
4194
4195     if (offset == avio_size(pb))
4196         c->fragment_index_complete = 1;
4197
4198     return 0;
4199 }
4200
4201 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
4202 /* like the files created with Adobe Premiere 5.0, for samples see */
4203 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
4204 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4205 {
4206     int err;
4207
4208     if (atom.size < 8)
4209         return 0; /* continue */
4210     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
4211         avio_skip(pb, atom.size - 4);
4212         return 0;
4213     }
4214     atom.type = avio_rl32(pb);
4215     atom.size -= 8;
4216     if (atom.type != MKTAG('m','d','a','t')) {
4217         avio_skip(pb, atom.size);
4218         return 0;
4219     }
4220     err = mov_read_mdat(c, pb, atom);
4221     return err;
4222 }
4223
4224 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4225 {
4226 #if CONFIG_ZLIB
4227     AVIOContext ctx;
4228     uint8_t *cmov_data;
4229     uint8_t *moov_data; /* uncompressed data */
4230     long cmov_len, moov_len;
4231     int ret = -1;
4232
4233     avio_rb32(pb); /* dcom atom */
4234     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
4235         return AVERROR_INVALIDDATA;
4236     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
4237         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
4238         return AVERROR_INVALIDDATA;
4239     }
4240     avio_rb32(pb); /* cmvd atom */
4241     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
4242         return AVERROR_INVALIDDATA;
4243     moov_len = avio_rb32(pb); /* uncompressed size */
4244     cmov_len = atom.size - 6 * 4;
4245
4246     cmov_data = av_malloc(cmov_len);
4247     if (!cmov_data)
4248         return AVERROR(ENOMEM);
4249     moov_data = av_malloc(moov_len);
4250     if (!moov_data) {
4251         av_free(cmov_data);
4252         return AVERROR(ENOMEM);
4253     }
4254     ret = ffio_read_size(pb, cmov_data, cmov_len);
4255     if (ret < 0)
4256         goto free_and_return;
4257
4258     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
4259         goto free_and_return;
4260     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
4261         goto free_and_return;
4262     ctx.seekable = AVIO_SEEKABLE_NORMAL;
4263     atom.type = MKTAG('m','o','o','v');
4264     atom.size = moov_len;
4265     ret = mov_read_default(c, &ctx, atom);
4266 free_and_return:
4267     av_free(moov_data);
4268     av_free(cmov_data);
4269     return ret;
4270 #else
4271     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
4272     return AVERROR(ENOSYS);
4273 #endif
4274 }
4275
4276 /* edit list atom */
4277 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4278 {
4279     MOVStreamContext *sc;
4280     int i, edit_count, version;
4281
4282     if (c->fc->nb_streams < 1 || c->ignore_editlist)
4283         return 0;
4284     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
4285
4286     version = avio_r8(pb); /* version */
4287     avio_rb24(pb); /* flags */
4288     edit_count = avio_rb32(pb); /* entries */
4289
4290     if (!edit_count)
4291         return 0;
4292     if (sc->elst_data)
4293         av_log(c->fc, AV_LOG_WARNING, "Duplicated ELST atom\n");
4294     av_free(sc->elst_data);
4295     sc->elst_count = 0;
4296     sc->elst_data = av_malloc_array(edit_count, sizeof(*sc->elst_data));
4297     if (!sc->elst_data)
4298         return AVERROR(ENOMEM);
4299
4300     av_log(c->fc, AV_LOG_TRACE, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
4301     for (i = 0; i < edit_count && !pb->eof_reached; i++) {
4302         MOVElst *e = &sc->elst_data[i];
4303
4304         if (version == 1) {
4305             e->duration = avio_rb64(pb);
4306             e->time     = avio_rb64(pb);
4307         } else {
4308             e->duration = avio_rb32(pb); /* segment duration */
4309             e->time     = (int32_t)avio_rb32(pb); /* media time */
4310         }
4311         e->rate = avio_rb32(pb) / 65536.0;
4312         av_log(c->fc, AV_LOG_TRACE, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
4313                 e->duration, e->time, e->rate);
4314     }
4315     sc->elst_count = i;
4316
4317     return 0;
4318 }
4319
4320 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4321 {
4322     MOVStreamContext *sc;
4323
4324     if (c->fc->nb_streams < 1)
4325         return AVERROR_INVALIDDATA;
4326     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
4327     sc->timecode_track = avio_rb32(pb);
4328     return 0;
4329 }
4330
4331 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4332 {
4333     int ret;
4334     uint8_t uuid[16];
4335     static const uint8_t uuid_isml_manifest[] = {
4336         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
4337         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
4338     };
4339     static const uint8_t uuid_xmp[] = {
4340         0xbe, 0x7a, 0xcf, 0xcb, 0x97, 0xa9, 0x42, 0xe8,
4341         0x9c, 0x71, 0x99, 0x94, 0x91, 0xe3, 0xaf, 0xac
4342     };
4343
4344     if (atom.size < sizeof(uuid) || atom.size == INT64_MAX)
4345         return AVERROR_INVALIDDATA;
4346
4347     ret = avio_read(pb, uuid, sizeof(uuid));
4348     if (ret < 0) {
4349         return ret;
4350     } else if (ret != sizeof(uuid)) {
4351         return AVERROR_INVALIDDATA;
4352     }
4353     if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
4354         uint8_t *buffer, *ptr;
4355         char *endptr;
4356         size_t len = atom.size - sizeof(uuid);
4357
4358         if (len < 4) {
4359             return AVERROR_INVALIDDATA;
4360         }
4361         ret = avio_skip(pb, 4); // zeroes
4362         len -= 4;
4363
4364         buffer = av_mallocz(len + 1);
4365         if (!buffer) {
4366             return AVERROR(ENOMEM);
4367         }
4368         ret = avio_read(pb, buffer, len);
4369         if (ret < 0) {
4370             av_free(buffer);
4371             return ret;
4372         } else if (ret != len) {
4373             av_free(buffer);
4374             return AVERROR_INVALIDDATA;
4375         }
4376
4377         ptr = buffer;
4378         while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
4379             ptr += sizeof("systemBitrate=\"") - 1;
4380             c->bitrates_count++;
4381             c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
4382             if (!c->bitrates) {
4383                 c->bitrates_count = 0;
4384                 av_free(buffer);
4385                 return AVERROR(ENOMEM);
4386             }
4387             errno = 0;
4388             ret = strtol(ptr, &endptr, 10);
4389             if (ret < 0 || errno || *endptr != '"') {
4390                 c->bitrates[c->bitrates_count - 1] = 0;
4391             } else {
4392                 c->bitrates[c->bitrates_count - 1] = ret;
4393             }
4394         }
4395
4396         av_free(buffer);
4397     } else if (!memcmp(uuid, uuid_xmp, sizeof(uuid))) {
4398         uint8_t *buffer;
4399         size_t len = atom.size - sizeof(uuid);
4400
4401         buffer = av_mallocz(len + 1);
4402         if (!buffer) {
4403             return AVERROR(ENOMEM);
4404         }
4405         ret = avio_read(pb, buffer, len);
4406         if (ret < 0) {
4407             av_free(buffer);
4408             return ret;
4409         } else if (ret != len) {
4410             av_free(buffer);
4411             return AVERROR_INVALIDDATA;
4412         }
4413         if (c->export_xmp) {
4414             buffer[len] = '\0';
4415             av_dict_set(&c->fc->metadata, "xmp", buffer, 0);
4416         }
4417         av_free(buffer);
4418     }
4419     return 0;
4420 }
4421
4422 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4423 {
4424     int ret;
4425     uint8_t content[16];
4426
4427     if (atom.size < 8)
4428         return 0;
4429
4430     ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
4431     if (ret < 0)
4432         return ret;
4433
4434     if (   !c->found_moov
4435         && !c->found_mdat
4436         && !memcmp(content, "Anevia\x1A\x1A", 8)
4437         && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
4438         c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
4439     }
4440
4441     return 0;
4442 }
4443
4444 static int mov_read_frma(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4445 {
4446     uint32_t format = avio_rl32(pb);
4447     MOVStreamContext *sc;
4448     enum AVCodecID id;
4449     AVStream *st;
4450
4451     if (c->fc->nb_streams < 1)
4452         return 0;
4453     st = c->fc->streams[c->fc->nb_streams - 1];
4454     sc = st->priv_data;
4455
4456     switch (sc->format)
4457     {
4458     case MKTAG('e','n','c','v'):        // encrypted video
4459     case MKTAG('e','n','c','a'):        // encrypted audio
4460         id = mov_codec_id(st, format);
4461         if (st->codecpar->codec_id != AV_CODEC_ID_NONE &&
4462             st->codecpar->codec_id != id) {
4463             av_log(c->fc, AV_LOG_WARNING,
4464                    "ignoring 'frma' atom of '%.4s', stream has codec id %d\n",
4465                    (char*)&format, st->codecpar->codec_id);
4466             break;
4467         }
4468
4469         st->codecpar->codec_id = id;
4470         sc->format = format;
4471         break;
4472
4473     default:
4474         if (format != sc->format) {
4475             av_log(c->fc, AV_LOG_WARNING,
4476                    "ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
4477                    (char*)&format, (char*)&sc->format);
4478         }
4479         break;
4480     }
4481
4482     return 0;
4483 }
4484
4485 static int mov_read_senc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4486 {
4487     AVStream *st;
4488     MOVStreamContext *sc;
4489     size_t auxiliary_info_size;
4490
4491     if (c->decryption_key_len == 0 || c->fc->nb_streams < 1)
4492         return 0;
4493
4494     st = c->fc->streams[c->fc->nb_streams - 1];
4495     sc = st->priv_data;
4496
4497     if (sc->cenc.aes_ctr) {
4498         av_log(c->fc, AV_LOG_ERROR, "duplicate senc atom\n");
4499         return AVERROR_INVALIDDATA;
4500     }
4501
4502     avio_r8(pb); /* version */
4503     sc->cenc.use_subsamples = avio_rb24(pb) & 0x02; /* flags */
4504
4505     avio_rb32(pb);        /* entries */
4506
4507     if (atom.size < 8) {
4508         av_log(c->fc, AV_LOG_ERROR, "senc atom size %"PRId64" too small\n", atom.size);
4509         return AVERROR_INVALIDDATA;
4510     }
4511
4512     /* save the auxiliary info as is */
4513     auxiliary_info_size = atom.size - 8;
4514
4515     sc->cenc.auxiliary_info = av_malloc(auxiliary_info_size);
4516     if (!sc->cenc.auxiliary_info) {
4517         return AVERROR(ENOMEM);
4518     }
4519
4520     sc->cenc.auxiliary_info_end = sc->cenc.auxiliary_info + auxiliary_info_size;
4521
4522     sc->cenc.auxiliary_info_pos = sc->cenc.auxiliary_info;
4523
4524     if (avio_read(pb, sc->cenc.auxiliary_info, auxiliary_info_size) != auxiliary_info_size) {
4525         av_log(c->fc, AV_LOG_ERROR, "failed to read the auxiliary info");
4526         return AVERROR_INVALIDDATA;
4527     }
4528
4529     /* initialize the cipher */
4530     sc->cenc.aes_ctr = av_aes_ctr_alloc();
4531     if (!sc->cenc.aes_ctr) {
4532         return AVERROR(ENOMEM);
4533     }
4534
4535     return av_aes_ctr_init(sc->cenc.aes_ctr, c->decryption_key);
4536 }
4537
4538 static int mov_read_saiz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4539 {
4540     AVStream *st;
4541     MOVStreamContext *sc;
4542     size_t data_size;
4543     int atom_header_size;
4544     int flags;
4545
4546     if (c->decryption_key_len == 0 || c->fc->nb_streams < 1)
4547         return 0;
4548
4549     st = c->fc->streams[c->fc->nb_streams - 1];
4550     sc = st->priv_data;
4551
4552     if (sc->cenc.auxiliary_info_sizes || sc->cenc.auxiliary_info_default_size) {
4553         av_log(c->fc, AV_LOG_ERROR, "duplicate saiz atom\n");
4554         return AVERROR_INVALIDDATA;
4555     }
4556
4557     atom_header_size = 9;
4558
4559     avio_r8(pb); /* version */
4560     flags = avio_rb24(pb);
4561
4562     if ((flags & 0x01) != 0) {
4563         atom_header_size += 8;
4564
4565         avio_rb32(pb);    /* info type */
4566         avio_rb32(pb);    /* info type param */
4567     }
4568
4569     sc->cenc.auxiliary_info_default_size = avio_r8(pb);
4570     avio_rb32(pb);    /* entries */
4571
4572     if (atom.size <= atom_header_size) {
4573         return 0;
4574     }
4575
4576     /* save the auxiliary info sizes as is */
4577     data_size = atom.size - atom_header_size;
4578
4579     sc->cenc.auxiliary_info_sizes = av_malloc(data_size);
4580     if (!sc->cenc.auxiliary_info_sizes) {
4581         return AVERROR(ENOMEM);
4582     }
4583
4584     sc->cenc.auxiliary_info_sizes_count = data_size;
4585
4586     if (avio_read(pb, sc->cenc.auxiliary_info_sizes, data_size) != data_size) {
4587         av_log(c->fc, AV_LOG_ERROR, "failed to read the auxiliary info sizes");
4588         return AVERROR_INVALIDDATA;
4589     }
4590
4591     return 0;
4592 }
4593
4594 static int cenc_filter(MOVContext *c, MOVStreamContext *sc, uint8_t *input, int size)
4595 {
4596     uint32_t encrypted_bytes;
4597     uint16_t subsample_count;
4598     uint16_t clear_bytes;
4599     uint8_t* input_end = input + size;
4600
4601     /* read the iv */
4602     if (AES_CTR_IV_SIZE > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
4603         av_log(c->fc, AV_LOG_ERROR, "failed to read iv from the auxiliary info\n");
4604         return AVERROR_INVALIDDATA;
4605     }
4606
4607     av_aes_ctr_set_iv(sc->cenc.aes_ctr, sc->cenc.auxiliary_info_pos);
4608     sc->cenc.auxiliary_info_pos += AES_CTR_IV_SIZE;
4609
4610     if (!sc->cenc.use_subsamples)
4611     {
4612         /* decrypt the whole packet */
4613         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, size);
4614         return 0;
4615     }
4616
4617     /* read the subsample count */
4618     if (sizeof(uint16_t) > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
4619         av_log(c->fc, AV_LOG_ERROR, "failed to read subsample count from the auxiliary info\n");
4620         return AVERROR_INVALIDDATA;
4621     }
4622
4623     subsample_count = AV_RB16(sc->cenc.auxiliary_info_pos);
4624     sc->cenc.auxiliary_info_pos += sizeof(uint16_t);
4625
4626     for (; subsample_count > 0; subsample_count--)
4627     {
4628         if (6 > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info_pos) {
4629             av_log(c->fc, AV_LOG_ERROR, "failed to read subsample from the auxiliary info\n");
4630             return AVERROR_INVALIDDATA;
4631         }
4632
4633         /* read the number of clear / encrypted bytes */
4634         clear_bytes = AV_RB16(sc->cenc.auxiliary_info_pos);
4635         sc->cenc.auxiliary_info_pos += sizeof(uint16_t);
4636         encrypted_bytes = AV_RB32(sc->cenc.auxiliary_info_pos);
4637         sc->cenc.auxiliary_info_pos += sizeof(uint32_t);
4638
4639         if ((uint64_t)clear_bytes + encrypted_bytes > input_end - input) {
4640             av_log(c->fc, AV_LOG_ERROR, "subsample size exceeds the packet size left\n");
4641             return AVERROR_INVALIDDATA;
4642         }
4643
4644         /* skip the clear bytes */
4645         input += clear_bytes;
4646
4647         /* decrypt the encrypted bytes */
4648         av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, encrypted_bytes);
4649         input += encrypted_bytes;
4650     }
4651
4652     if (input < input_end) {
4653         av_log(c->fc, AV_LOG_ERROR, "leftover packet bytes after subsample processing\n");
4654         return AVERROR_INVALIDDATA;
4655     }
4656
4657     return 0;
4658 }
4659
4660 static int mov_seek_auxiliary_info(AVFormatContext *s, MOVStreamContext *sc)
4661 {
4662     size_t auxiliary_info_seek_offset = 0;
4663     int i;
4664
4665     if (sc->cenc.auxiliary_info_default_size) {
4666         auxiliary_info_seek_offset = (size_t)sc->cenc.auxiliary_info_default_size * sc->current_sample;
4667     } else if (sc->cenc.auxiliary_info_sizes) {
4668         if (sc->current_sample > sc->cenc.auxiliary_info_sizes_count) {
4669             av_log(s, AV_LOG_ERROR, "current sample %d greater than the number of auxiliary info sample sizes %"SIZE_SPECIFIER"\n",
4670                 sc->current_sample, sc->cenc.auxiliary_info_sizes_count);
4671             return AVERROR_INVALIDDATA;
4672         }
4673
4674         for (i = 0; i < sc->current_sample; i++) {
4675             auxiliary_info_seek_offset += sc->cenc.auxiliary_info_sizes[i];
4676         }
4677     }
4678
4679     if (auxiliary_info_seek_offset > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info) {
4680         av_log(s, AV_LOG_ERROR, "auxiliary info offset %"SIZE_SPECIFIER" greater than auxiliary info size %"SIZE_SPECIFIER"\n",
4681             auxiliary_info_seek_offset, (size_t)(sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info));
4682         return AVERROR_INVALIDDATA;
4683     }
4684
4685     sc->cenc.auxiliary_info_pos = sc->cenc.auxiliary_info + auxiliary_info_seek_offset;
4686
4687     return 0;
4688 }
4689
4690 static const MOVParseTableEntry mov_default_parse_table[] = {
4691 { MKTAG('A','C','L','R'), mov_read_aclr },
4692 { MKTAG('A','P','R','G'), mov_read_avid },
4693 { MKTAG('A','A','L','P'), mov_read_avid },
4694 { MKTAG('A','R','E','S'), mov_read_ares },
4695 { MKTAG('a','v','s','s'), mov_read_avss },
4696 { MKTAG('c','h','p','l'), mov_read_chpl },
4697 { MKTAG('c','o','6','4'), mov_read_stco },
4698 { MKTAG('c','o','l','r'), mov_read_colr },
4699 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
4700 { MKTAG('d','i','n','f'), mov_read_default },
4701 { MKTAG('D','p','x','E'), mov_read_dpxe },
4702 { MKTAG('d','r','e','f'), mov_read_dref },
4703 { MKTAG('e','d','t','s'), mov_read_default },
4704 { MKTAG('e','l','s','t'), mov_read_elst },
4705 { MKTAG('e','n','d','a'), mov_read_enda },
4706 { MKTAG('f','i','e','l'), mov_read_fiel },
4707 { MKTAG('a','d','r','m'), mov_read_adrm },
4708 { MKTAG('f','t','y','p'), mov_read_ftyp },
4709 { MKTAG('g','l','b','l'), mov_read_glbl },
4710 { MKTAG('h','d','l','r'), mov_read_hdlr },
4711 { MKTAG('i','l','s','t'), mov_read_ilst },
4712 { MKTAG('j','p','2','h'), mov_read_jp2h },
4713 { MKTAG('m','d','a','t'), mov_read_mdat },
4714 { MKTAG('m','d','h','d'), mov_read_mdhd },
4715 { MKTAG('m','d','i','a'), mov_read_default },
4716 { MKTAG('m','e','t','a'), mov_read_meta },
4717 { MKTAG('m','i','n','f'), mov_read_default },
4718 { MKTAG('m','o','o','f'), mov_read_moof },
4719 { MKTAG('m','o','o','v'), mov_read_moov },
4720 { MKTAG('m','v','e','x'), mov_read_default },
4721 { MKTAG('m','v','h','d'), mov_read_mvhd },
4722 { MKTAG('S','M','I',' '), mov_read_svq3 },
4723 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
4724 { MKTAG('a','v','c','C'), mov_read_glbl },
4725 { MKTAG('p','a','s','p'), mov_read_pasp },
4726 { MKTAG('s','i','d','x'), mov_read_sidx },
4727 { MKTAG('s','t','b','l'), mov_read_default },
4728 { MKTAG('s','t','c','o'), mov_read_stco },
4729 { MKTAG('s','t','p','s'), mov_read_stps },
4730 { MKTAG('s','t','r','f'), mov_read_strf },
4731 { MKTAG('s','t','s','c'), mov_read_stsc },
4732 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
4733 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
4734 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
4735 { MKTAG('s','t','t','s'), mov_read_stts },
4736 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
4737 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
4738 { MKTAG('t','f','d','t'), mov_read_tfdt },
4739 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
4740 { MKTAG('t','r','a','k'), mov_read_trak },
4741 { MKTAG('t','r','a','f'), mov_read_default },
4742 { MKTAG('t','r','e','f'), mov_read_default },
4743 { MKTAG('t','m','c','d'), mov_read_tmcd },
4744 { MKTAG('c','h','a','p'), mov_read_chap },
4745 { MKTAG('t','r','e','x'), mov_read_trex },
4746 { MKTAG('t','r','u','n'), mov_read_trun },
4747 { MKTAG('u','d','t','a'), mov_read_default },
4748 { MKTAG('w','a','v','e'), mov_read_wave },
4749 { MKTAG('e','s','d','s'), mov_read_esds },
4750 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
4751 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
4752 { MKTAG('d','d','t','s'), mov_read_ddts }, /* DTS audio descriptor */
4753 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
4754 { MKTAG('w','f','e','x'), mov_read_wfex },
4755 { MKTAG('c','m','o','v'), mov_read_cmov },
4756 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
4757 { MKTAG('d','v','c','1'), mov_read_dvc1 },
4758 { MKTAG('s','b','g','p'), mov_read_sbgp },
4759 { MKTAG('h','v','c','C'), mov_read_glbl },
4760 { MKTAG('u','u','i','d'), mov_read_uuid },
4761 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
4762 { MKTAG('f','r','e','e'), mov_read_free },
4763 { MKTAG('-','-','-','-'), mov_read_custom },
4764 { MKTAG('s','i','n','f'), mov_read_default },
4765 { MKTAG('f','r','m','a'), mov_read_frma },
4766 { MKTAG('s','e','n','c'), mov_read_senc },
4767 { MKTAG('s','a','i','z'), mov_read_saiz },
4768 { 0, NULL }
4769 };
4770
4771 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4772 {
4773     int64_t total_size = 0;
4774     MOVAtom a;
4775     int i;
4776
4777     if (c->atom_depth > 10) {
4778         av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
4779         return AVERROR_INVALIDDATA;
4780     }
4781     c->atom_depth ++;
4782
4783     if (atom.size < 0)
4784         atom.size = INT64_MAX;
4785     while (total_size + 8 <= atom.size && !avio_feof(pb)) {
4786         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
4787         a.size = atom.size;
4788         a.type=0;
4789         if (atom.size >= 8) {
4790             a.size = avio_rb32(pb);
4791             a.type = avio_rl32(pb);
4792             if (a.type == MKTAG('f','r','e','e') &&
4793                 a.size >= 8 &&
4794                 c->moov_retry) {
4795                 uint8_t buf[8];
4796                 uint32_t *type = (uint32_t *)buf + 1;
4797                 if (avio_read(pb, buf, 8) != 8)
4798                     return AVERROR_INVALIDDATA;
4799                 avio_seek(pb, -8, SEEK_CUR);
4800                 if (*type == MKTAG('m','v','h','d') ||
4801                     *type == MKTAG('c','m','o','v')) {
4802                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
4803                     a.type = MKTAG('m','o','o','v');
4804                 }
4805             }
4806             if (atom.type != MKTAG('r','o','o','t') &&
4807                 atom.type != MKTAG('m','o','o','v'))
4808             {
4809                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
4810                 {
4811                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
4812                     avio_skip(pb, -8);
4813                     c->atom_depth --;
4814                     return 0;
4815                 }
4816             }
4817             total_size += 8;
4818             if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
4819                 a.size = avio_rb64(pb) - 8;
4820                 total_size += 8;
4821             }
4822         }
4823         av_log(c->fc, AV_LOG_TRACE, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
4824                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
4825         if (a.size == 0) {
4826             a.size = atom.size - total_size + 8;
4827         }
4828         a.size -= 8;
4829         if (a.size < 0)
4830             break;
4831         a.size = FFMIN(a.size, atom.size - total_size);
4832
4833         for (i = 0; mov_default_parse_table[i].type; i++)
4834             if (mov_default_parse_table[i].type == a.type) {
4835                 parse = mov_default_parse_table[i].parse;
4836                 break;
4837             }
4838
4839         // container is user data
4840         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
4841                        atom.type == MKTAG('i','l','s','t')))
4842             parse = mov_read_udta_string;
4843
4844         // Supports parsing the QuickTime Metadata Keys.
4845         // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html
4846         if (!parse && c->found_hdlr_mdta &&
4847             atom.type == MKTAG('m','e','t','a') &&
4848             a.type == MKTAG('k','e','y','s')) {
4849             parse = mov_read_keys;
4850         }
4851
4852         if (!parse) { /* skip leaf atoms data */
4853             avio_skip(pb, a.size);
4854         } else {
4855             int64_t start_pos = avio_tell(pb);
4856             int64_t left;
4857             int err = parse(c, pb, a);
4858             if (err < 0) {
4859                 c->atom_depth --;
4860                 return err;
4861             }
4862             if (c->found_moov && c->found_mdat &&
4863                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX || c->fragment_index_complete) ||
4864                  start_pos + a.size == avio_size(pb))) {
4865                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX || c->fragment_index_complete)
4866                     c->next_root_atom = start_pos + a.size;
4867                 c->atom_depth --;
4868                 return 0;
4869             }
4870             left = a.size - avio_tell(pb) + start_pos;
4871             if (left > 0) /* skip garbage at atom end */
4872                 avio_skip(pb, left);
4873             else if (left < 0) {
4874                 av_log(c->fc, AV_LOG_WARNING,
4875                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
4876                        (char*)&a.type, -left);
4877                 avio_seek(pb, left, SEEK_CUR);
4878             }
4879         }
4880
4881         total_size += a.size;
4882     }
4883
4884     if (total_size < atom.size && atom.size < 0x7ffff)
4885         avio_skip(pb, atom.size - total_size);
4886
4887     c->atom_depth --;
4888     return 0;
4889 }
4890
4891 static int mov_probe(AVProbeData *p)
4892 {
4893     int64_t offset;
4894     uint32_t tag;
4895     int score = 0;
4896     int moov_offset = -1;
4897
4898     /* check file header */
4899     offset = 0;
4900     for (;;) {
4901         /* ignore invalid offset */
4902         if ((offset + 8) > (unsigned int)p->buf_size)
4903             break;
4904         tag = AV_RL32(p->buf + offset + 4);
4905         switch(tag) {
4906         /* check for obvious tags */
4907         case MKTAG('m','o','o','v'):
4908             moov_offset = offset + 4;
4909         case MKTAG('m','d','a','t'):
4910         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
4911         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
4912         case MKTAG('f','t','y','p'):
4913             if (AV_RB32(p->buf+offset) < 8 &&
4914                 (AV_RB32(p->buf+offset) != 1 ||
4915                  offset + 12 > (unsigned int)p->buf_size ||
4916                  AV_RB64(p->buf+offset + 8) == 0)) {
4917                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
4918             } else if (tag == MKTAG('f','t','y','p') &&
4919                        (   AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')
4920                         || AV_RL32(p->buf + offset + 8) == MKTAG('j','p','x',' ')
4921                     )) {
4922                 score = FFMAX(score, 5);
4923             } else {
4924                 score = AVPROBE_SCORE_MAX;
4925             }
4926             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
4927             break;
4928         /* those are more common words, so rate then a bit less */
4929         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
4930         case MKTAG('w','i','d','e'):
4931         case MKTAG('f','r','e','e'):
4932         case MKTAG('j','u','n','k'):
4933         case MKTAG('p','i','c','t'):
4934             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
4935             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
4936             break;
4937         case MKTAG(0x82,0x82,0x7f,0x7d):
4938         case MKTAG('s','k','i','p'):
4939         case MKTAG('u','u','i','d'):
4940         case MKTAG('p','r','f','l'):
4941             /* if we only find those cause probedata is too small at least rate them */
4942             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
4943             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
4944             break;
4945         default:
4946             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
4947         }
4948     }
4949     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
4950         /* moov atom in the header - we should make sure that this is not a
4951          * MOV-packed MPEG-PS */
4952         offset = moov_offset;
4953
4954         while(offset < (p->buf_size - 16)){ /* Sufficient space */
4955                /* We found an actual hdlr atom */
4956             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
4957                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
4958                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
4959                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
4960                 /* We found a media handler reference atom describing an
4961                  * MPEG-PS-in-MOV, return a
4962                  * low score to force expanding the probe window until
4963                  * mpegps_probe finds what it needs */
4964                 return 5;
4965             }else
4966                 /* Keep looking */
4967                 offset+=2;
4968         }
4969     }
4970
4971     return score;
4972 }
4973
4974 // must be done after parsing all trak because there's no order requirement
4975 static void mov_read_chapters(AVFormatContext *s)
4976 {
4977     MOVContext *mov = s->priv_data;
4978     AVStream *st = NULL;
4979     MOVStreamContext *sc;
4980     int64_t cur_pos;
4981     int i;
4982
4983     for (i = 0; i < s->nb_streams; i++)
4984         if (s->streams[i]->id == mov->chapter_track) {
4985             st = s->streams[i];
4986             break;
4987         }
4988     if (!st) {
4989         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
4990         return;
4991     }
4992
4993     st->discard = AVDISCARD_ALL;
4994     sc = st->priv_data;
4995     cur_pos = avio_tell(sc->pb);
4996
4997     for (i = 0; i < st->nb_index_entries; i++) {
4998         AVIndexEntry *sample = &st->index_entries[i];
4999         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
5000         uint8_t *title;
5001         uint16_t ch;
5002         int len, title_len;
5003
5004         if (end < sample->timestamp) {
5005             av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
5006             end = AV_NOPTS_VALUE;
5007         }
5008
5009         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
5010             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
5011             goto finish;
5012         }
5013
5014         // the first two bytes are the length of the title
5015         len = avio_rb16(sc->pb);
5016         if (len > sample->size-2)
5017             continue;
5018         title_len = 2*len + 1;
5019         if (!(title = av_mallocz(title_len)))
5020             goto finish;
5021
5022         // The samples could theoretically be in any encoding if there's an encd
5023         // atom following, but in practice are only utf-8 or utf-16, distinguished
5024         // instead by the presence of a BOM
5025         if (!len) {
5026             title[0] = 0;
5027         } else {
5028             ch = avio_rb16(sc->pb);
5029             if (ch == 0xfeff)
5030                 avio_get_str16be(sc->pb, len, title, title_len);
5031             else if (ch == 0xfffe)
5032                 avio_get_str16le(sc->pb, len, title, title_len);
5033             else {
5034                 AV_WB16(title, ch);
5035                 if (len == 1 || len == 2)
5036                     title[len] = 0;
5037                 else
5038                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
5039             }
5040         }
5041
5042         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
5043         av_freep(&title);
5044     }
5045 finish:
5046     avio_seek(sc->pb, cur_pos, SEEK_SET);
5047 }
5048
5049 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
5050                                              uint32_t value, int flags)
5051 {
5052     AVTimecode tc;
5053     char buf[AV_TIMECODE_STR_SIZE];
5054     AVRational rate = st->avg_frame_rate;
5055     int ret = av_timecode_init(&tc, rate, flags, 0, s);
5056     if (ret < 0)
5057         return ret;
5058     av_dict_set(&st->metadata, "timecode",
5059                 av_timecode_make_string(&tc, buf, value), 0);
5060     return 0;
5061 }
5062
5063 static int mov_read_rtmd_track(AVFormatContext *s, AVStream *st)
5064 {
5065     MOVStreamContext *sc = st->priv_data;
5066     char buf[AV_TIMECODE_STR_SIZE];
5067     int64_t cur_pos = avio_tell(sc->pb);
5068     int hh, mm, ss, ff, drop;
5069
5070     if (!st->nb_index_entries)
5071         return -1;
5072
5073     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
5074     avio_skip(s->pb, 13);
5075     hh = avio_r8(s->pb);
5076     mm = avio_r8(s->pb);
5077     ss = avio_r8(s->pb);
5078     drop = avio_r8(s->pb);
5079     ff = avio_r8(s->pb);
5080     snprintf(buf, AV_TIMECODE_STR_SIZE, "%02d:%02d:%02d%c%02d",
5081              hh, mm, ss, drop ? ';' : ':', ff);
5082     av_dict_set(&st->metadata, "timecode", buf, 0);
5083
5084     avio_seek(sc->pb, cur_pos, SEEK_SET);
5085     return 0;
5086 }
5087
5088 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
5089 {
5090     MOVStreamContext *sc = st->priv_data;
5091     int flags = 0;
5092     int64_t cur_pos = avio_tell(sc->pb);
5093     uint32_t value;
5094
5095     if (!st->nb_index_entries)
5096         return -1;
5097
5098     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
5099     value = avio_rb32(s->pb);
5100
5101     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
5102     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
5103     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
5104
5105     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
5106      * not the case) and thus assume "frame number format" instead of QT one.
5107      * No sample with tmcd track can be found with a QT timecode at the moment,
5108      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
5109      * format). */
5110     parse_timecode_in_framenum_format(s, st, value, flags);
5111
5112     avio_seek(sc->pb, cur_pos, SEEK_SET);
5113     return 0;
5114 }
5115
5116 static int mov_read_close(AVFormatContext *s)
5117 {
5118     MOVContext *mov = s->priv_data;
5119     int i, j;
5120
5121     for (i = 0; i < s->nb_streams; i++) {
5122         AVStream *st = s->streams[i];
5123         MOVStreamContext *sc = st->priv_data;
5124
5125         if (!sc)
5126             continue;
5127
5128         av_freep(&sc->ctts_data);
5129         for (j = 0; j < sc->drefs_count; j++) {
5130             av_freep(&sc->drefs[j].path);
5131             av_freep(&sc->drefs[j].dir);
5132         }
5133         av_freep(&sc->drefs);
5134
5135         sc->drefs_count = 0;
5136
5137         if (!sc->pb_is_copied)
5138             ff_format_io_close(s, &sc->pb);
5139
5140         sc->pb = NULL;
5141         av_freep(&sc->chunk_offsets);
5142         av_freep(&sc->stsc_data);
5143         av_freep(&sc->sample_sizes);
5144         av_freep(&sc->keyframes);
5145         av_freep(&sc->stts_data);
5146         av_freep(&sc->stps_data);
5147         av_freep(&sc->elst_data);
5148         av_freep(&sc->rap_group);
5149         av_freep(&sc->display_matrix);
5150
5151         if (sc->extradata)
5152             for (j = 0; j < sc->stsd_count; j++)
5153                 av_free(sc->extradata[j]);
5154         av_freep(&sc->extradata);
5155         av_freep(&sc->extradata_size);
5156
5157         av_freep(&sc->cenc.auxiliary_info);
5158         av_freep(&sc->cenc.auxiliary_info_sizes);
5159         av_aes_ctr_free(sc->cenc.aes_ctr);
5160     }
5161
5162     if (mov->dv_demux) {
5163         avformat_free_context(mov->dv_fctx);
5164         mov->dv_fctx = NULL;
5165     }
5166
5167     if (mov->meta_keys) {
5168         for (i = 1; i < mov->meta_keys_count; i++) {
5169             av_freep(&mov->meta_keys[i]);
5170         }
5171         av_freep(&mov->meta_keys);
5172     }
5173
5174     av_freep(&mov->trex_data);
5175     av_freep(&mov->bitrates);
5176
5177     for (i = 0; i < mov->fragment_index_count; i++) {
5178         MOVFragmentIndex* index = mov->fragment_index_data[i];
5179         av_freep(&index->items);
5180         av_freep(&mov->fragment_index_data[i]);
5181     }
5182     av_freep(&mov->fragment_index_data);
5183
5184     av_freep(&mov->aes_decrypt);
5185
5186     return 0;
5187 }
5188
5189 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
5190 {
5191     int i;
5192
5193     for (i = 0; i < s->nb_streams; i++) {
5194         AVStream *st = s->streams[i];
5195         MOVStreamContext *sc = st->priv_data;
5196
5197         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
5198             sc->timecode_track == tmcd_id)
5199             return 1;
5200     }
5201     return 0;
5202 }
5203
5204 /* look for a tmcd track not referenced by any video track, and export it globally */
5205 static void export_orphan_timecode(AVFormatContext *s)
5206 {
5207     int i;
5208
5209     for (i = 0; i < s->nb_streams; i++) {
5210         AVStream *st = s->streams[i];
5211
5212         if (st->codecpar->codec_tag  == MKTAG('t','m','c','d') &&
5213             !tmcd_is_referenced(s, i + 1)) {
5214             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
5215             if (tcr) {
5216                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
5217                 break;
5218             }
5219         }
5220     }
5221 }
5222
5223 static int read_tfra(MOVContext *mov, AVIOContext *f)
5224 {
5225     MOVFragmentIndex* index = NULL;
5226     int version, fieldlength, i, j;
5227     int64_t pos = avio_tell(f);
5228     uint32_t size = avio_rb32(f);
5229     void *tmp;
5230
5231     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
5232         return 1;
5233     }
5234     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
5235     index = av_mallocz(sizeof(MOVFragmentIndex));
5236     if (!index) {
5237         return AVERROR(ENOMEM);
5238     }
5239
5240     tmp = av_realloc_array(mov->fragment_index_data,
5241                            mov->fragment_index_count + 1,
5242                            sizeof(MOVFragmentIndex*));
5243     if (!tmp) {
5244         av_freep(&index);
5245         return AVERROR(ENOMEM);
5246     }
5247     mov->fragment_index_data = tmp;
5248     mov->fragment_index_data[mov->fragment_index_count++] = index;
5249
5250     version = avio_r8(f);
5251     avio_rb24(f);
5252     index->track_id = avio_rb32(f);
5253     fieldlength = avio_rb32(f);
5254     index->item_count = avio_rb32(f);
5255     index->items = av_mallocz_array(
5256             index->item_count, sizeof(MOVFragmentIndexItem));
5257     if (!index->items) {
5258         index->item_count = 0;
5259         return AVERROR(ENOMEM);
5260     }
5261     for (i = 0; i < index->item_count; i++) {
5262         int64_t time, offset;
5263         if (version == 1) {
5264             time   = avio_rb64(f);
5265             offset = avio_rb64(f);
5266         } else {
5267             time   = avio_rb32(f);
5268             offset = avio_rb32(f);
5269         }
5270         index->items[i].time = time;
5271         index->items[i].moof_offset = offset;
5272         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
5273             avio_r8(f);
5274         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
5275             avio_r8(f);
5276         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
5277             avio_r8(f);
5278     }
5279
5280     avio_seek(f, pos + size, SEEK_SET);
5281     return 0;
5282 }
5283
5284 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
5285 {
5286     int64_t stream_size = avio_size(f);
5287     int64_t original_pos = avio_tell(f);
5288     int64_t seek_ret;
5289     int32_t mfra_size;
5290     int ret = -1;
5291     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
5292         ret = seek_ret;
5293         goto fail;
5294     }
5295     mfra_size = avio_rb32(f);
5296     if (mfra_size < 0 || mfra_size > stream_size) {
5297         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
5298         goto fail;
5299     }
5300     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
5301         ret = seek_ret;
5302         goto fail;
5303     }
5304     if (avio_rb32(f) != mfra_size) {
5305         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
5306         goto fail;
5307     }
5308     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
5309         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
5310         goto fail;
5311     }
5312     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
5313     do {
5314         ret = read_tfra(c, f);
5315         if (ret < 0)
5316             goto fail;
5317     } while (!ret);
5318     ret = 0;
5319 fail:
5320     seek_ret = avio_seek(f, original_pos, SEEK_SET);
5321     if (seek_ret < 0) {
5322         av_log(c->fc, AV_LOG_ERROR,
5323                "failed to seek back after looking for mfra\n");
5324         ret = seek_ret;
5325     }
5326     return ret;
5327 }
5328
5329 static int mov_read_header(AVFormatContext *s)
5330 {
5331     MOVContext *mov = s->priv_data;
5332     AVIOContext *pb = s->pb;
5333     int j, err;
5334     MOVAtom atom = { AV_RL32("root") };
5335     int i;
5336
5337     if (mov->decryption_key_len != 0 && mov->decryption_key_len != AES_CTR_KEY_SIZE) {
5338         av_log(s, AV_LOG_ERROR, "Invalid decryption key len %d expected %d\n",
5339             mov->decryption_key_len, AES_CTR_KEY_SIZE);
5340         return AVERROR(EINVAL);
5341     }
5342
5343     mov->fc = s;
5344     mov->trak_index = -1;
5345     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
5346     if (pb->seekable)
5347         atom.size = avio_size(pb);
5348     else
5349         atom.size = INT64_MAX;
5350
5351     /* check MOV header */
5352     do {
5353     if (mov->moov_retry)
5354         avio_seek(pb, 0, SEEK_SET);
5355     if ((err = mov_read_default(mov, pb, atom)) < 0) {
5356         av_log(s, AV_LOG_ERROR, "error reading header\n");
5357         mov_read_close(s);
5358         return err;
5359     }
5360     } while (pb->seekable && !mov->found_moov && !mov->moov_retry++);
5361     if (!mov->found_moov) {
5362         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
5363         mov_read_close(s);
5364         return AVERROR_INVALIDDATA;
5365     }
5366     av_log(mov->fc, AV_LOG_TRACE, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
5367
5368     if (pb->seekable) {
5369         if (mov->chapter_track > 0 && !mov->ignore_chapters)
5370             mov_read_chapters(s);
5371         for (i = 0; i < s->nb_streams; i++)
5372             if (s->streams[i]->codecpar->codec_tag == AV_RL32("tmcd")) {
5373                 mov_read_timecode_track(s, s->streams[i]);
5374             } else if (s->streams[i]->codecpar->codec_tag == AV_RL32("rtmd")) {
5375                 mov_read_rtmd_track(s, s->streams[i]);
5376             }
5377     }
5378
5379     /* copy timecode metadata from tmcd tracks to the related video streams */
5380     for (i = 0; i < s->nb_streams; i++) {
5381         AVStream *st = s->streams[i];
5382         MOVStreamContext *sc = st->priv_data;
5383         if (sc->timecode_track > 0) {
5384             AVDictionaryEntry *tcr;
5385             int tmcd_st_id = -1;
5386
5387             for (j = 0; j < s->nb_streams; j++)
5388                 if (s->streams[j]->id == sc->timecode_track)
5389                     tmcd_st_id = j;
5390
5391             if (tmcd_st_id < 0 || tmcd_st_id == i)
5392                 continue;
5393             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
5394             if (tcr)
5395                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
5396         }
5397     }
5398     export_orphan_timecode(s);
5399
5400     for (i = 0; i < s->nb_streams; i++) {
5401         AVStream *st = s->streams[i];
5402         MOVStreamContext *sc = st->priv_data;
5403         fix_timescale(mov, sc);
5404         if(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id == AV_CODEC_ID_AAC) {
5405             st->skip_samples = sc->start_pad;
5406         }
5407         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
5408             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
5409                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
5410         if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
5411             if (st->codecpar->width <= 0 || st->codecpar->height <= 0) {
5412                 st->codecpar->width  = sc->width;
5413                 st->codecpar->height = sc->height;
5414             }
5415             if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
5416                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
5417                     return err;
5418             }
5419         }
5420         if (mov->handbrake_version &&
5421             mov->handbrake_version <= 1000000*0 + 1000*10 + 2 &&  // 0.10.2
5422             st->codecpar->codec_id == AV_CODEC_ID_MP3
5423         ) {
5424             av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");
5425             st->need_parsing = AVSTREAM_PARSE_FULL;
5426         }
5427     }
5428
5429     if (mov->trex_data) {
5430         for (i = 0; i < s->nb_streams; i++) {
5431             AVStream *st = s->streams[i];
5432             MOVStreamContext *sc = st->priv_data;
5433             if (st->duration > 0)
5434                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
5435         }
5436     }
5437
5438     if (mov->use_mfra_for > 0) {
5439         for (i = 0; i < s->nb_streams; i++) {
5440             AVStream *st = s->streams[i];
5441             MOVStreamContext *sc = st->priv_data;
5442             if (sc->duration_for_fps > 0) {
5443                 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale /
5444                     sc->duration_for_fps;
5445             }
5446         }
5447     }
5448
5449     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
5450         if (mov->bitrates[i]) {
5451             s->streams[i]->codecpar->bit_rate = mov->bitrates[i];
5452         }
5453     }
5454
5455     ff_rfps_calculate(s);
5456
5457     for (i = 0; i < s->nb_streams; i++) {
5458         AVStream *st = s->streams[i];
5459         MOVStreamContext *sc = st->priv_data;
5460
5461         switch (st->codecpar->codec_type) {
5462         case AVMEDIA_TYPE_AUDIO:
5463             err = ff_replaygain_export(st, s->metadata);
5464             if (err < 0) {
5465                 mov_read_close(s);
5466                 return err;
5467             }
5468             break;
5469         case AVMEDIA_TYPE_VIDEO:
5470             if (sc->display_matrix) {
5471                 AVPacketSideData *sd, *tmp;
5472
5473                 tmp = av_realloc_array(st->side_data,
5474                                        st->nb_side_data + 1, sizeof(*tmp));
5475                 if (!tmp)
5476                     return AVERROR(ENOMEM);
5477
5478                 st->side_data = tmp;
5479                 st->nb_side_data++;
5480
5481                 sd = &st->side_data[st->nb_side_data - 1];
5482                 sd->type = AV_PKT_DATA_DISPLAYMATRIX;
5483                 sd->size = sizeof(int32_t) * 9;
5484                 sd->data = (uint8_t*)sc->display_matrix;
5485                 sc->display_matrix = NULL;
5486             }
5487             break;
5488         }
5489     }
5490     ff_configure_buffers_for_index(s, AV_TIME_BASE);
5491
5492     return 0;
5493 }
5494
5495 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
5496 {
5497     AVIndexEntry *sample = NULL;
5498     int64_t best_dts = INT64_MAX;
5499     int i;
5500     for (i = 0; i < s->nb_streams; i++) {
5501         AVStream *avst = s->streams[i];
5502         MOVStreamContext *msc = avst->priv_data;
5503         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
5504             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
5505             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
5506             av_log(s, AV_LOG_TRACE, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
5507             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
5508                 (s->pb->seekable &&
5509                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
5510                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
5511                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
5512                 sample = current_sample;
5513                 best_dts = dts;
5514                 *st = avst;
5515             }
5516         }
5517     }
5518     return sample;
5519 }
5520
5521 static int should_retry(AVIOContext *pb, int error_code) {
5522     if (error_code == AVERROR_EOF || avio_feof(pb))
5523         return 0;
5524
5525     return 1;
5526 }
5527
5528 static int mov_switch_root(AVFormatContext *s, int64_t target)
5529 {
5530     MOVContext *mov = s->priv_data;
5531     int i, j;
5532     int already_read = 0;
5533
5534     if (avio_seek(s->pb, target, SEEK_SET) != target) {
5535         av_log(mov->fc, AV_LOG_ERROR, "root atom offset 0x%"PRIx64": partial file\n", target);
5536         return AVERROR_INVALIDDATA;
5537     }
5538
5539     mov->next_root_atom = 0;
5540
5541     for (i = 0; i < mov->fragment_index_count; i++) {
5542         MOVFragmentIndex *index = mov->fragment_index_data[i];
5543         int found = 0;
5544         for (j = 0; j < index->item_count; j++) {
5545             MOVFragmentIndexItem *item = &index->items[j];
5546             if (found) {
5547                 mov->next_root_atom = item->moof_offset;
5548                 break; // Advance to next index in outer loop
5549             } else if (item->moof_offset == target) {
5550                 index->current_item = FFMIN(j, index->current_item);
5551                 if (item->headers_read)
5552                     already_read = 1;
5553                 item->headers_read = 1;
5554                 found = 1;
5555             }
5556         }
5557         if (!found)
5558             index->current_item = 0;
5559     }
5560
5561     if (already_read)
5562         return 0;
5563
5564     mov->found_mdat = 0;
5565
5566     if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
5567         avio_feof(s->pb))
5568         return AVERROR_EOF;
5569     av_log(s, AV_LOG_TRACE, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
5570
5571     return 1;
5572 }
5573
5574 static int mov_change_extradata(MOVStreamContext *sc, AVPacket *pkt)
5575 {
5576     uint8_t *side, *extradata;
5577     int extradata_size;
5578
5579     /* Save the current index. */
5580     sc->last_stsd_index = sc->stsc_data[sc->stsc_index].id - 1;
5581
5582     /* Notify the decoder that extradata changed. */
5583     extradata_size = sc->extradata_size[sc->last_stsd_index];
5584     extradata = sc->extradata[sc->last_stsd_index];
5585     if (extradata_size > 0 && extradata) {
5586         side = av_packet_new_side_data(pkt,
5587                                        AV_PKT_DATA_NEW_EXTRADATA,
5588                                        extradata_size);
5589         if (!side)
5590             return AVERROR(ENOMEM);
5591         memcpy(side, extradata, extradata_size);
5592     }
5593
5594     return 0;
5595 }
5596
5597 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
5598 {
5599     MOVContext *mov = s->priv_data;
5600     MOVStreamContext *sc;
5601     AVIndexEntry *sample;
5602     AVStream *st = NULL;
5603     int ret;
5604     mov->fc = s;
5605  retry:
5606     sample = mov_find_next_sample(s, &st);
5607     if (!sample || (mov->next_root_atom && sample->pos > mov->next_root_atom)) {
5608         if (!mov->next_root_atom)
5609             return AVERROR_EOF;
5610         if ((ret = mov_switch_root(s, mov->next_root_atom)) < 0)
5611             return ret;
5612         goto retry;
5613     }
5614     sc = st->priv_data;
5615     /* must be done just before reading, to avoid infinite loop on sample */
5616     sc->current_sample++;
5617
5618     if (mov->next_root_atom) {
5619         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
5620         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
5621     }
5622
5623     if (st->discard != AVDISCARD_ALL) {
5624         int64_t ret64 = avio_seek(sc->pb, sample->pos, SEEK_SET);
5625         if (ret64 != sample->pos) {
5626             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
5627                    sc->ffindex, sample->pos);
5628             sc->current_sample -= should_retry(sc->pb, ret64);
5629             return AVERROR_INVALIDDATA;
5630         }
5631
5632         if( st->discard == AVDISCARD_NONKEY && 0==(sample->flags & AVINDEX_KEYFRAME) ) {
5633             av_log(mov->fc, AV_LOG_DEBUG, "Nonkey frame from stream %d discarded due to AVDISCARD_NONKEY\n", sc->ffindex);
5634             goto retry;
5635         }
5636
5637         ret = av_get_packet(sc->pb, pkt, sample->size);
5638         if (ret < 0) {
5639             sc->current_sample -= should_retry(sc->pb, ret);
5640             return ret;
5641         }
5642         if (sc->has_palette) {
5643             uint8_t *pal;
5644
5645             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
5646             if (!pal) {
5647                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
5648             } else {
5649                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
5650                 sc->has_palette = 0;
5651             }
5652         }
5653 #if CONFIG_DV_DEMUXER
5654         if (mov->dv_demux && sc->dv_audio_container) {
5655             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
5656             av_freep(&pkt->data);
5657             pkt->size = 0;
5658             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
5659             if (ret < 0)
5660                 return ret;
5661         }
5662 #endif
5663         if (st->codecpar->codec_id == AV_CODEC_ID_MP3 && !st->need_parsing && pkt->size > 4) {
5664             if (ff_mpa_check_header(AV_RB32(pkt->data)) < 0)
5665                 st->need_parsing = AVSTREAM_PARSE_FULL;
5666         }
5667     }
5668
5669     pkt->stream_index = sc->ffindex;
5670     pkt->dts = sample->timestamp;
5671     if (sample->flags & AVINDEX_DISCARD_FRAME) {
5672         pkt->flags |= AV_PKT_FLAG_DISCARD;
5673     }
5674     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
5675         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
5676         /* update ctts context */
5677         sc->ctts_sample++;
5678         if (sc->ctts_index < sc->ctts_count &&
5679             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
5680             sc->ctts_index++;
5681             sc->ctts_sample = 0;
5682         }
5683     } else {
5684         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
5685             st->index_entries[sc->current_sample].timestamp : st->duration;
5686         pkt->duration = next_dts - pkt->dts;
5687         pkt->pts = pkt->dts;
5688     }
5689     if (st->discard == AVDISCARD_ALL)
5690         goto retry;
5691     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
5692     pkt->pos = sample->pos;
5693
5694     /* Multiple stsd handling. */
5695     if (sc->stsc_data) {
5696         /* Keep track of the stsc index for the given sample, then check
5697         * if the stsd index is different from the last used one. */
5698         sc->stsc_sample++;
5699         if (sc->stsc_index < sc->stsc_count - 1 &&
5700             mov_get_stsc_samples(sc, sc->stsc_index) == sc->stsc_sample) {
5701             sc->stsc_index++;
5702             sc->stsc_sample = 0;
5703         /* Do not check indexes after a switch. */
5704         } else if (sc->stsc_data[sc->stsc_index].id > 0 &&
5705                    sc->stsc_data[sc->stsc_index].id - 1 < sc->stsd_count &&
5706                    sc->stsc_data[sc->stsc_index].id - 1 != sc->last_stsd_index) {
5707             ret = mov_change_extradata(sc, pkt);
5708             if (ret < 0)
5709                 return ret;
5710         }
5711     }
5712
5713     if (mov->aax_mode)
5714         aax_filter(pkt->data, pkt->size, mov);
5715
5716     if (sc->cenc.aes_ctr) {
5717         ret = cenc_filter(mov, sc, pkt->data, pkt->size);
5718         if (ret) {
5719             return ret;
5720         }
5721     }
5722
5723     return 0;
5724 }
5725
5726 static int mov_seek_fragment(AVFormatContext *s, AVStream *st, int64_t timestamp)
5727 {
5728     MOVContext *mov = s->priv_data;
5729     int i, j;
5730
5731     if (!mov->fragment_index_complete)
5732         return 0;
5733
5734     for (i = 0; i < mov->fragment_index_count; i++) {
5735         if (mov->fragment_index_data[i]->track_id == st->id) {
5736             MOVFragmentIndex *index = mov->fragment_index_data[i];
5737             for (j = index->item_count - 1; j >= 0; j--) {
5738                 if (index->items[j].time <= timestamp) {
5739                     if (index->items[j].headers_read)
5740                         return 0;
5741
5742                     return mov_switch_root(s, index->items[j].moof_offset);
5743                 }
5744             }
5745         }
5746     }
5747
5748     return 0;
5749 }
5750
5751 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
5752 {
5753     MOVStreamContext *sc = st->priv_data;
5754     int sample, time_sample;
5755     int i;
5756
5757     int ret = mov_seek_fragment(s, st, timestamp);
5758     if (ret < 0)
5759         return ret;
5760
5761     sample = av_index_search_timestamp(st, timestamp, flags);
5762     av_log(s, AV_LOG_TRACE, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
5763     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
5764         sample = 0;
5765     if (sample < 0) /* not sure what to do */
5766         return AVERROR_INVALIDDATA;
5767     sc->current_sample = sample;
5768     av_log(s, AV_LOG_TRACE, "stream %d, found sample %d\n", st->index, sc->current_sample);
5769     /* adjust ctts index */
5770     if (sc->ctts_data) {
5771         time_sample = 0;
5772         for (i = 0; i < sc->ctts_count; i++) {
5773             int next = time_sample + sc->ctts_data[i].count;
5774             if (next > sc->current_sample) {
5775                 sc->ctts_index = i;
5776                 sc->ctts_sample = sc->current_sample - time_sample;
5777                 break;
5778             }
5779             time_sample = next;
5780         }
5781     }
5782
5783     /* adjust stsd index */
5784     time_sample = 0;
5785     for (i = 0; i < sc->stsc_count; i++) {
5786         int next = time_sample + mov_get_stsc_samples(sc, i);
5787         if (next > sc->current_sample) {
5788             sc->stsc_index = i;
5789             sc->stsc_sample = sc->current_sample - time_sample;
5790             break;
5791         }
5792         time_sample = next;
5793     }
5794
5795     ret = mov_seek_auxiliary_info(s, sc);
5796     if (ret < 0) {
5797         return ret;
5798     }
5799
5800     return sample;
5801 }
5802
5803 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
5804 {
5805     MOVContext *mc = s->priv_data;
5806     AVStream *st;
5807     int sample;
5808     int i;
5809
5810     if (stream_index >= s->nb_streams)
5811         return AVERROR_INVALIDDATA;
5812
5813     st = s->streams[stream_index];
5814     sample = mov_seek_stream(s, st, sample_time, flags);
5815     if (sample < 0)
5816         return sample;
5817
5818     if (mc->seek_individually) {
5819         /* adjust seek timestamp to found sample timestamp */
5820         int64_t seek_timestamp = st->index_entries[sample].timestamp;
5821
5822         for (i = 0; i < s->nb_streams; i++) {
5823             int64_t timestamp;
5824             MOVStreamContext *sc = s->streams[i]->priv_data;
5825             st = s->streams[i];
5826             st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
5827
5828             if (stream_index == i)
5829                 continue;
5830
5831             timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
5832             mov_seek_stream(s, st, timestamp, flags);
5833         }
5834     } else {
5835         for (i = 0; i < s->nb_streams; i++) {
5836             MOVStreamContext *sc;
5837             st = s->streams[i];
5838             sc = st->priv_data;
5839             sc->current_sample = 0;
5840         }
5841         while (1) {
5842             MOVStreamContext *sc;
5843             AVIndexEntry *entry = mov_find_next_sample(s, &st);
5844             if (!entry)
5845                 return AVERROR_INVALIDDATA;
5846             sc = st->priv_data;
5847             if (sc->ffindex == stream_index && sc->current_sample == sample)
5848                 break;
5849             sc->current_sample++;
5850         }
5851     }
5852     return 0;
5853 }
5854
5855 #define OFFSET(x) offsetof(MOVContext, x)
5856 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
5857 static const AVOption mov_options[] = {
5858     {"use_absolute_path",
5859         "allow using absolute path when opening alias, this is a possible security issue",
5860         OFFSET(use_absolute_path), AV_OPT_TYPE_BOOL, {.i64 = 0},
5861         0, 1, FLAGS},
5862     {"seek_streams_individually",
5863         "Seek each stream individually to the to the closest point",
5864         OFFSET(seek_individually), AV_OPT_TYPE_BOOL, { .i64 = 1 },
5865         0, 1, FLAGS},
5866     {"ignore_editlist", "", OFFSET(ignore_editlist), AV_OPT_TYPE_BOOL, {.i64 = 0},
5867         0, 1, FLAGS},
5868     {"ignore_chapters", "", OFFSET(ignore_chapters), AV_OPT_TYPE_BOOL, {.i64 = 0},
5869         0, 1, FLAGS},
5870     {"use_mfra_for",
5871         "use mfra for fragment timestamps",
5872         OFFSET(use_mfra_for), AV_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
5873         -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
5874         "use_mfra_for"},
5875     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
5876         FLAGS, "use_mfra_for" },
5877     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
5878         FLAGS, "use_mfra_for" },
5879     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
5880         FLAGS, "use_mfra_for" },
5881     { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
5882         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
5883     { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
5884         AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
5885     { "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
5886         AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
5887     { "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
5888         "Fixed key used for handling Audible AAX files", OFFSET(audible_fixed_key),
5889         AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd20a51d67"},
5890         .flags = AV_OPT_FLAG_DECODING_PARAM },
5891     { "decryption_key", "The media decryption key (hex)", OFFSET(decryption_key), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
5892     { "enable_drefs", "Enable external track support.", OFFSET(enable_drefs), AV_OPT_TYPE_BOOL,
5893         {.i64 = 0}, 0, 1, FLAGS },
5894
5895     { NULL },
5896 };
5897
5898 static const AVClass mov_class = {
5899     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
5900     .item_name  = av_default_item_name,
5901     .option     = mov_options,
5902     .version    = LIBAVUTIL_VERSION_INT,
5903 };
5904
5905 AVInputFormat ff_mov_demuxer = {
5906     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
5907     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
5908     .priv_class     = &mov_class,
5909     .priv_data_size = sizeof(MOVContext),
5910     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
5911     .read_probe     = mov_probe,
5912     .read_header    = mov_read_header,
5913     .read_packet    = mov_read_packet,
5914     .read_close     = mov_read_close,
5915     .read_seek      = mov_read_seek,
5916     .flags          = AVFMT_NO_BYTE_SEEK,
5917 };