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