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