3 * Copyright (c) 2001 Fabrice Bellard
4 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
6 * first version by Francois Revol <revol@free.fr>
7 * seek function by Gael Chardon <gael.dev@4now.net>
9 * This file is part of FFmpeg.
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.
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.
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
30 #include "libavutil/attributes.h"
31 #include "libavutil/channel_layout.h"
32 #include "libavutil/internal.h"
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/intfloat.h"
35 #include "libavutil/mathematics.h"
36 #include "libavutil/time_internal.h"
37 #include "libavutil/avassert.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/dict.h"
40 #include "libavutil/display.h"
41 #include "libavutil/opt.h"
42 #include "libavutil/aes.h"
43 #include "libavutil/aes_ctr.h"
44 #include "libavutil/pixdesc.h"
45 #include "libavutil/sha.h"
46 #include "libavutil/spherical.h"
47 #include "libavutil/stereo3d.h"
48 #include "libavutil/timecode.h"
49 #include "libavcodec/ac3tab.h"
50 #include "libavcodec/flac.h"
51 #include "libavcodec/mpegaudiodecheader.h"
54 #include "avio_internal.h"
57 #include "libavcodec/get_bits.h"
60 #include "replaygain.h"
66 #include "qtpalette.h"
68 /* those functions parse an atom */
69 /* links atom IDs to parse functions */
70 typedef struct MOVParseTableEntry {
72 int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
75 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
76 static int mov_read_mfra(MOVContext *c, AVIOContext *f);
77 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
78 int count, int duration);
80 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
81 unsigned len, const char *key)
85 short current, total = 0;
86 avio_rb16(pb); // unknown
87 current = avio_rb16(pb);
89 total = avio_rb16(pb);
91 snprintf(buf, sizeof(buf), "%d", current);
93 snprintf(buf, sizeof(buf), "%d/%d", current, total);
94 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
95 av_dict_set(&c->fc->metadata, key, buf, 0);
100 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
101 unsigned len, const char *key)
103 /* bypass padding bytes */
108 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
109 av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
114 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
115 unsigned len, const char *key)
117 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
118 av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
123 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
124 unsigned len, const char *key)
128 avio_r8(pb); // unknown
131 if (genre < 1 || genre > ID3v1_GENRE_MAX)
133 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
134 av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);
139 static const uint32_t mac_to_unicode[128] = {
140 0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
141 0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
142 0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
143 0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
144 0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
145 0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
146 0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
147 0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
148 0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
149 0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
150 0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
151 0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
152 0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
153 0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
154 0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
155 0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
158 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
159 char *dst, int dstlen)
162 char *end = dst+dstlen-1;
165 for (i = 0; i < len; i++) {
166 uint8_t t, c = avio_r8(pb);
174 PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
180 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
184 MOVStreamContext *sc;
189 case 0xd: id = AV_CODEC_ID_MJPEG; break;
190 case 0xe: id = AV_CODEC_ID_PNG; break;
191 case 0x1b: id = AV_CODEC_ID_BMP; break;
193 av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
198 st = avformat_new_stream(c->fc, NULL);
200 return AVERROR(ENOMEM);
201 sc = av_mallocz(sizeof(*sc));
203 return AVERROR(ENOMEM);
206 ret = av_get_packet(pb, &pkt, len);
210 if (pkt.size >= 8 && id != AV_CODEC_ID_BMP) {
211 if (AV_RB64(pkt.data) == 0x89504e470d0a1a0a) {
212 id = AV_CODEC_ID_PNG;
214 id = AV_CODEC_ID_MJPEG;
218 st->disposition |= AV_DISPOSITION_ATTACHED_PIC;
220 st->attached_pic = pkt;
221 st->attached_pic.stream_index = st->index;
222 st->attached_pic.flags |= AV_PKT_FLAG_KEY;
224 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
225 st->codecpar->codec_id = id;
231 static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
233 char language[4] = { 0 };
234 char buf[200], place[100];
235 uint16_t langcode = 0;
236 double longitude, latitude, altitude;
237 const char *key = "location";
239 if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4) {
240 av_log(c->fc, AV_LOG_ERROR, "loci too short\n");
241 return AVERROR_INVALIDDATA;
244 avio_skip(pb, 4); // version+flags
245 langcode = avio_rb16(pb);
246 ff_mov_lang_to_iso639(langcode, language);
249 len -= avio_get_str(pb, len, place, sizeof(place));
251 av_log(c->fc, AV_LOG_ERROR, "place name too long\n");
252 return AVERROR_INVALIDDATA;
254 avio_skip(pb, 1); // role
258 av_log(c->fc, AV_LOG_ERROR,
259 "loci too short (%u bytes left, need at least %d)\n", len, 12);
260 return AVERROR_INVALIDDATA;
262 longitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
263 latitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
264 altitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
266 // Try to output in the same format as the ?xyz field
267 snprintf(buf, sizeof(buf), "%+08.4f%+09.4f", latitude, longitude);
269 av_strlcatf(buf, sizeof(buf), "%+f", altitude);
270 av_strlcatf(buf, sizeof(buf), "/%s", place);
272 if (*language && strcmp(language, "und")) {
274 snprintf(key2, sizeof(key2), "%s-%s", key, language);
275 av_dict_set(&c->fc->metadata, key2, buf, 0);
277 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
278 return av_dict_set(&c->fc->metadata, key, buf, 0);
281 static int mov_metadata_hmmt(MOVContext *c, AVIOContext *pb, unsigned len)
287 if (c->ignore_chapters)
290 n_hmmt = avio_rb32(pb);
291 for (i = 0; i < n_hmmt && !pb->eof_reached; i++) {
292 int moment_time = avio_rb32(pb);
293 avpriv_new_chapter(c->fc, i, av_make_q(1, 1000), moment_time, AV_NOPTS_VALUE, NULL);
298 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
301 char key2[32], language[4] = {0};
303 const char *key = NULL;
304 uint16_t langcode = 0;
305 uint32_t data_type = 0, str_size, str_size_alloc;
306 int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
311 case MKTAG( '@','P','R','M'): key = "premiere_version"; raw = 1; break;
312 case MKTAG( '@','P','R','Q'): key = "quicktime_version"; raw = 1; break;
313 case MKTAG( 'X','M','P','_'):
314 if (c->export_xmp) { key = "xmp"; raw = 1; } break;
315 case MKTAG( 'a','A','R','T'): key = "album_artist"; break;
316 case MKTAG( 'a','k','I','D'): key = "account_type";
317 parse = mov_metadata_int8_no_padding; break;
318 case MKTAG( 'a','p','I','D'): key = "account_id"; break;
319 case MKTAG( 'c','a','t','g'): key = "category"; break;
320 case MKTAG( 'c','p','i','l'): key = "compilation";
321 parse = mov_metadata_int8_no_padding; break;
322 case MKTAG( 'c','p','r','t'): key = "copyright"; break;
323 case MKTAG( 'd','e','s','c'): key = "description"; break;
324 case MKTAG( 'd','i','s','k'): key = "disc";
325 parse = mov_metadata_track_or_disc_number; break;
326 case MKTAG( 'e','g','i','d'): key = "episode_uid";
327 parse = mov_metadata_int8_no_padding; break;
328 case MKTAG( 'F','I','R','M'): key = "firmware"; raw = 1; break;
329 case MKTAG( 'g','n','r','e'): key = "genre";
330 parse = mov_metadata_gnre; break;
331 case MKTAG( 'h','d','v','d'): key = "hd_video";
332 parse = mov_metadata_int8_no_padding; break;
333 case MKTAG( 'H','M','M','T'):
334 return mov_metadata_hmmt(c, pb, atom.size);
335 case MKTAG( 'k','e','y','w'): key = "keywords"; break;
336 case MKTAG( 'l','d','e','s'): key = "synopsis"; break;
337 case MKTAG( 'l','o','c','i'):
338 return mov_metadata_loci(c, pb, atom.size);
339 case MKTAG( 'm','a','n','u'): key = "make"; break;
340 case MKTAG( 'm','o','d','l'): key = "model"; break;
341 case MKTAG( 'p','c','s','t'): key = "podcast";
342 parse = mov_metadata_int8_no_padding; break;
343 case MKTAG( 'p','g','a','p'): key = "gapless_playback";
344 parse = mov_metadata_int8_no_padding; break;
345 case MKTAG( 'p','u','r','d'): key = "purchase_date"; break;
346 case MKTAG( 'r','t','n','g'): key = "rating";
347 parse = mov_metadata_int8_no_padding; break;
348 case MKTAG( 's','o','a','a'): key = "sort_album_artist"; break;
349 case MKTAG( 's','o','a','l'): key = "sort_album"; break;
350 case MKTAG( 's','o','a','r'): key = "sort_artist"; break;
351 case MKTAG( 's','o','c','o'): key = "sort_composer"; break;
352 case MKTAG( 's','o','n','m'): key = "sort_name"; break;
353 case MKTAG( 's','o','s','n'): key = "sort_show"; break;
354 case MKTAG( 's','t','i','k'): key = "media_type";
355 parse = mov_metadata_int8_no_padding; break;
356 case MKTAG( 't','r','k','n'): key = "track";
357 parse = mov_metadata_track_or_disc_number; break;
358 case MKTAG( 't','v','e','n'): key = "episode_id"; break;
359 case MKTAG( 't','v','e','s'): key = "episode_sort";
360 parse = mov_metadata_int8_bypass_padding; break;
361 case MKTAG( 't','v','n','n'): key = "network"; break;
362 case MKTAG( 't','v','s','h'): key = "show"; break;
363 case MKTAG( 't','v','s','n'): key = "season_number";
364 parse = mov_metadata_int8_bypass_padding; break;
365 case MKTAG(0xa9,'A','R','T'): key = "artist"; break;
366 case MKTAG(0xa9,'P','R','D'): key = "producer"; break;
367 case MKTAG(0xa9,'a','l','b'): key = "album"; break;
368 case MKTAG(0xa9,'a','u','t'): key = "artist"; break;
369 case MKTAG(0xa9,'c','h','p'): key = "chapter"; break;
370 case MKTAG(0xa9,'c','m','t'): key = "comment"; break;
371 case MKTAG(0xa9,'c','o','m'): key = "composer"; break;
372 case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
373 case MKTAG(0xa9,'d','a','y'): key = "date"; break;
374 case MKTAG(0xa9,'d','i','r'): key = "director"; break;
375 case MKTAG(0xa9,'d','i','s'): key = "disclaimer"; break;
376 case MKTAG(0xa9,'e','d','1'): key = "edit_date"; break;
377 case MKTAG(0xa9,'e','n','c'): key = "encoder"; break;
378 case MKTAG(0xa9,'f','m','t'): key = "original_format"; break;
379 case MKTAG(0xa9,'g','e','n'): key = "genre"; break;
380 case MKTAG(0xa9,'g','r','p'): key = "grouping"; break;
381 case MKTAG(0xa9,'h','s','t'): key = "host_computer"; break;
382 case MKTAG(0xa9,'i','n','f'): key = "comment"; break;
383 case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break;
384 case MKTAG(0xa9,'m','a','k'): key = "make"; break;
385 case MKTAG(0xa9,'m','o','d'): key = "model"; break;
386 case MKTAG(0xa9,'n','a','m'): key = "title"; break;
387 case MKTAG(0xa9,'o','p','e'): key = "original_artist"; break;
388 case MKTAG(0xa9,'p','r','d'): key = "producer"; break;
389 case MKTAG(0xa9,'p','r','f'): key = "performers"; break;
390 case MKTAG(0xa9,'r','e','q'): key = "playback_requirements"; break;
391 case MKTAG(0xa9,'s','r','c'): key = "original_source"; break;
392 case MKTAG(0xa9,'s','t','3'): key = "subtitle"; break;
393 case MKTAG(0xa9,'s','w','r'): key = "encoder"; break;
394 case MKTAG(0xa9,'t','o','o'): key = "encoder"; break;
395 case MKTAG(0xa9,'t','r','k'): key = "track"; break;
396 case MKTAG(0xa9,'u','r','l'): key = "URL"; break;
397 case MKTAG(0xa9,'w','r','n'): key = "warning"; break;
398 case MKTAG(0xa9,'w','r','t'): key = "composer"; break;
399 case MKTAG(0xa9,'x','y','z'): key = "location"; break;
402 if (c->itunes_metadata && atom.size > 8) {
403 int data_size = avio_rb32(pb);
404 int tag = avio_rl32(pb);
405 if (tag == MKTAG('d','a','t','a') && data_size <= atom.size) {
406 data_type = avio_rb32(pb); // type
407 avio_rb32(pb); // unknown
408 str_size = data_size - 16;
411 if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
412 int ret = mov_read_covr(c, pb, data_type, str_size);
414 av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
417 atom.size -= str_size;
421 } else if (!key && c->found_hdlr_mdta && c->meta_keys) {
422 uint32_t index = AV_RB32(&atom.type);
423 if (index < c->meta_keys_count && index > 0) {
424 key = c->meta_keys[index];
426 av_log(c->fc, AV_LOG_WARNING,
427 "The index of 'data' is out of range: %"PRId32" < 1 or >= %d.\n",
428 index, c->meta_keys_count);
432 } else if (atom.size > 4 && key && !c->itunes_metadata && !raw) {
433 str_size = avio_rb16(pb); // string length
434 if (str_size > atom.size) {
436 avio_seek(pb, -2, SEEK_CUR);
437 av_log(c->fc, AV_LOG_WARNING, "UDTA parsing failed retrying raw\n");
440 langcode = avio_rb16(pb);
441 ff_mov_lang_to_iso639(langcode, language);
444 str_size = atom.size;
446 if (c->export_all && !key) {
447 snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
453 if (atom.size < 0 || str_size >= INT_MAX/2)
454 return AVERROR_INVALIDDATA;
456 // Allocates enough space if data_type is a int32 or float32 number, otherwise
457 // worst-case requirement for output string in case of utf8 coded input
458 num = (data_type >= 21 && data_type <= 23);
459 str_size_alloc = (num ? 512 : (raw ? str_size : str_size * 2)) + 1;
460 str = av_mallocz(str_size_alloc);
462 return AVERROR(ENOMEM);
465 parse(c, pb, str_size, key);
467 if (!raw && (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff)))) { // MAC Encoded
468 mov_read_mac_string(c, pb, str_size, str, str_size_alloc);
469 } else if (data_type == 21) { // BE signed integer, variable size
472 val = (int8_t)avio_r8(pb);
473 else if (str_size == 2)
474 val = (int16_t)avio_rb16(pb);
475 else if (str_size == 3)
476 val = ((int32_t)(avio_rb24(pb)<<8))>>8;
477 else if (str_size == 4)
478 val = (int32_t)avio_rb32(pb);
479 if (snprintf(str, str_size_alloc, "%d", val) >= str_size_alloc) {
480 av_log(c->fc, AV_LOG_ERROR,
481 "Failed to store the number (%d) in string.\n", val);
483 return AVERROR_INVALIDDATA;
485 } else if (data_type == 22) { // BE unsigned integer, variable size
486 unsigned int val = 0;
489 else if (str_size == 2)
491 else if (str_size == 3)
493 else if (str_size == 4)
495 if (snprintf(str, str_size_alloc, "%u", val) >= str_size_alloc) {
496 av_log(c->fc, AV_LOG_ERROR,
497 "Failed to store the number (%u) in string.\n", val);
499 return AVERROR_INVALIDDATA;
501 } else if (data_type == 23 && str_size >= 4) { // BE float32
502 float val = av_int2float(avio_rb32(pb));
503 if (snprintf(str, str_size_alloc, "%f", val) >= str_size_alloc) {
504 av_log(c->fc, AV_LOG_ERROR,
505 "Failed to store the float32 number (%f) in string.\n", val);
507 return AVERROR_INVALIDDATA;
510 int ret = ffio_read_size(pb, str, str_size);
517 c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
518 av_dict_set(&c->fc->metadata, key, str, 0);
519 if (*language && strcmp(language, "und")) {
520 snprintf(key2, sizeof(key2), "%s-%s", key, language);
521 av_dict_set(&c->fc->metadata, key2, str, 0);
523 if (!strcmp(key, "encoder")) {
524 int major, minor, micro;
525 if (sscanf(str, "HandBrake %d.%d.%d", &major, &minor, µ) == 3) {
526 c->handbrake_version = 1000000*major + 1000*minor + micro;
535 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
538 int i, nb_chapters, str_len, version;
542 if (c->ignore_chapters)
545 if ((atom.size -= 5) < 0)
548 version = avio_r8(pb);
551 avio_rb32(pb); // ???
552 nb_chapters = avio_r8(pb);
554 for (i = 0; i < nb_chapters; i++) {
558 start = avio_rb64(pb);
559 str_len = avio_r8(pb);
561 if ((atom.size -= 9+str_len) < 0)
564 ret = ffio_read_size(pb, str, str_len);
568 avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
573 #define MIN_DATA_ENTRY_BOX_SIZE 12
574 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
577 MOVStreamContext *sc;
580 if (c->fc->nb_streams < 1)
582 st = c->fc->streams[c->fc->nb_streams-1];
585 avio_rb32(pb); // version + flags
586 entries = avio_rb32(pb);
588 entries > (atom.size - 1) / MIN_DATA_ENTRY_BOX_SIZE + 1 ||
589 entries >= UINT_MAX / sizeof(*sc->drefs))
590 return AVERROR_INVALIDDATA;
594 sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
596 return AVERROR(ENOMEM);
597 sc->drefs_count = entries;
599 for (i = 0; i < entries; i++) {
600 MOVDref *dref = &sc->drefs[i];
601 uint32_t size = avio_rb32(pb);
602 int64_t next = avio_tell(pb) + size - 4;
605 return AVERROR_INVALIDDATA;
607 dref->type = avio_rl32(pb);
608 avio_rb32(pb); // version + flags
610 if (dref->type == MKTAG('a','l','i','s') && size > 150) {
611 /* macintosh alias record */
612 uint16_t volume_len, len;
618 volume_len = avio_r8(pb);
619 volume_len = FFMIN(volume_len, 27);
620 ret = ffio_read_size(pb, dref->volume, 27);
623 dref->volume[volume_len] = 0;
624 av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
629 len = FFMIN(len, 63);
630 ret = ffio_read_size(pb, dref->filename, 63);
633 dref->filename[len] = 0;
634 av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
638 /* read next level up_from_alias/down_to_target */
639 dref->nlvl_from = avio_rb16(pb);
640 dref->nlvl_to = avio_rb16(pb);
641 av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
642 dref->nlvl_from, dref->nlvl_to);
646 for (type = 0; type != -1 && avio_tell(pb) < next; ) {
649 type = avio_rb16(pb);
651 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
654 if (type == 2) { // absolute path
656 dref->path = av_mallocz(len+1);
658 return AVERROR(ENOMEM);
660 ret = ffio_read_size(pb, dref->path, len);
662 av_freep(&dref->path);
665 if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
667 memmove(dref->path, dref->path+volume_len, len);
670 // trim string of any ending zeros
671 for (j = len - 1; j >= 0; j--) {
672 if (dref->path[j] == 0)
677 for (j = 0; j < len; j++)
678 if (dref->path[j] == ':' || dref->path[j] == 0)
680 av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
681 } else if (type == 0) { // directory name
683 dref->dir = av_malloc(len+1);
685 return AVERROR(ENOMEM);
687 ret = ffio_read_size(pb, dref->dir, len);
689 av_freep(&dref->dir);
693 for (j = 0; j < len; j++)
694 if (dref->dir[j] == ':')
696 av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
701 av_log(c->fc, AV_LOG_DEBUG, "Unknown dref type 0x%08"PRIx32" size %"PRIu32"\n",
706 avio_seek(pb, next, SEEK_SET);
711 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
720 avio_r8(pb); /* version */
721 avio_rb24(pb); /* flags */
724 ctype = avio_rl32(pb);
725 type = avio_rl32(pb); /* component subtype */
727 av_log(c->fc, AV_LOG_TRACE, "ctype=%s\n", av_fourcc2str(ctype));
728 av_log(c->fc, AV_LOG_TRACE, "stype=%s\n", av_fourcc2str(type));
730 if (c->trak_index < 0) { // meta not inside a trak
731 if (type == MKTAG('m','d','t','a')) {
732 c->found_hdlr_mdta = 1;
737 st = c->fc->streams[c->fc->nb_streams-1];
739 if (type == MKTAG('v','i','d','e'))
740 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
741 else if (type == MKTAG('s','o','u','n'))
742 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
743 else if (type == MKTAG('m','1','a',' '))
744 st->codecpar->codec_id = AV_CODEC_ID_MP2;
745 else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
746 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
748 avio_rb32(pb); /* component manufacture */
749 avio_rb32(pb); /* component flags */
750 avio_rb32(pb); /* component flags mask */
752 title_size = atom.size - 24;
753 if (title_size > 0) {
754 if (title_size > FFMIN(INT_MAX, SIZE_MAX-1))
755 return AVERROR_INVALIDDATA;
756 title_str = av_malloc(title_size + 1); /* Add null terminator */
758 return AVERROR(ENOMEM);
760 ret = ffio_read_size(pb, title_str, title_size);
762 av_freep(&title_str);
765 title_str[title_size] = 0;
767 int off = (!c->isom && title_str[0] == title_size - 1);
768 av_dict_set(&st->metadata, "handler_name", title_str + off, 0);
770 av_freep(&title_str);
776 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
778 return ff_mov_read_esds(c->fc, pb);
781 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
784 enum AVAudioServiceType *ast;
785 int ac3info, acmod, lfeon, bsmod;
787 if (c->fc->nb_streams < 1)
789 st = c->fc->streams[c->fc->nb_streams-1];
791 ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
794 return AVERROR(ENOMEM);
796 ac3info = avio_rb24(pb);
797 bsmod = (ac3info >> 14) & 0x7;
798 acmod = (ac3info >> 11) & 0x7;
799 lfeon = (ac3info >> 10) & 0x1;
800 st->codecpar->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
801 st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
803 st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
805 if (st->codecpar->channels > 1 && bsmod == 0x7)
806 *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
808 #if FF_API_LAVF_AVCTX
809 FF_DISABLE_DEPRECATION_WARNINGS
810 st->codec->audio_service_type = *ast;
811 FF_ENABLE_DEPRECATION_WARNINGS
817 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
820 enum AVAudioServiceType *ast;
821 int eac3info, acmod, lfeon, bsmod;
823 if (c->fc->nb_streams < 1)
825 st = c->fc->streams[c->fc->nb_streams-1];
827 ast = (enum AVAudioServiceType*)av_stream_new_side_data(st, AV_PKT_DATA_AUDIO_SERVICE_TYPE,
830 return AVERROR(ENOMEM);
832 /* No need to parse fields for additional independent substreams and its
833 * associated dependent substreams since libavcodec's E-AC-3 decoder
834 * does not support them yet. */
835 avio_rb16(pb); /* data_rate and num_ind_sub */
836 eac3info = avio_rb24(pb);
837 bsmod = (eac3info >> 12) & 0x1f;
838 acmod = (eac3info >> 9) & 0x7;
839 lfeon = (eac3info >> 8) & 0x1;
840 st->codecpar->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
842 st->codecpar->channel_layout |= AV_CH_LOW_FREQUENCY;
843 st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
845 if (st->codecpar->channels > 1 && bsmod == 0x7)
846 *ast = AV_AUDIO_SERVICE_TYPE_KARAOKE;
848 #if FF_API_LAVF_AVCTX
849 FF_DISABLE_DEPRECATION_WARNINGS
850 st->codec->audio_service_type = *ast;
851 FF_ENABLE_DEPRECATION_WARNINGS
857 static int mov_read_ddts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
859 const uint32_t ddts_size = 20;
862 uint32_t frame_duration_code = 0;
863 uint32_t channel_layout_code = 0;
866 buf = av_malloc(ddts_size + AV_INPUT_BUFFER_PADDING_SIZE);
868 return AVERROR(ENOMEM);
870 if (avio_read(pb, buf, ddts_size) < ddts_size) {
872 return AVERROR_INVALIDDATA;
875 init_get_bits(&gb, buf, 8*ddts_size);
877 if (c->fc->nb_streams < 1) {
881 st = c->fc->streams[c->fc->nb_streams-1];
883 st->codecpar->sample_rate = get_bits_long(&gb, 32);
884 if (st->codecpar->sample_rate <= 0) {
885 av_log(c->fc, AV_LOG_ERROR, "Invalid sample rate %d\n", st->codecpar->sample_rate);
887 return AVERROR_INVALIDDATA;
889 skip_bits_long(&gb, 32); /* max bitrate */
890 st->codecpar->bit_rate = get_bits_long(&gb, 32);
891 st->codecpar->bits_per_coded_sample = get_bits(&gb, 8);
892 frame_duration_code = get_bits(&gb, 2);
893 skip_bits(&gb, 30); /* various fields */
894 channel_layout_code = get_bits(&gb, 16);
896 st->codecpar->frame_size =
897 (frame_duration_code == 0) ? 512 :
898 (frame_duration_code == 1) ? 1024 :
899 (frame_duration_code == 2) ? 2048 :
900 (frame_duration_code == 3) ? 4096 : 0;
902 if (channel_layout_code > 0xff) {
903 av_log(c->fc, AV_LOG_WARNING, "Unsupported DTS audio channel layout");
905 st->codecpar->channel_layout =
906 ((channel_layout_code & 0x1) ? AV_CH_FRONT_CENTER : 0) |
907 ((channel_layout_code & 0x2) ? AV_CH_FRONT_LEFT : 0) |
908 ((channel_layout_code & 0x2) ? AV_CH_FRONT_RIGHT : 0) |
909 ((channel_layout_code & 0x4) ? AV_CH_SIDE_LEFT : 0) |
910 ((channel_layout_code & 0x4) ? AV_CH_SIDE_RIGHT : 0) |
911 ((channel_layout_code & 0x8) ? AV_CH_LOW_FREQUENCY : 0);
913 st->codecpar->channels = av_get_channel_layout_nb_channels(st->codecpar->channel_layout);
919 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
923 if (c->fc->nb_streams < 1)
925 st = c->fc->streams[c->fc->nb_streams-1];
930 /* skip version and flags */
933 ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
938 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
943 if (c->fc->nb_streams < 1)
945 st = c->fc->streams[c->fc->nb_streams-1];
947 if ((ret = ff_get_wav_header(c->fc, pb, st->codecpar, atom.size, 0)) < 0)
948 av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
953 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
955 const int num = avio_rb32(pb);
956 const int den = avio_rb32(pb);
959 if (c->fc->nb_streams < 1)
961 st = c->fc->streams[c->fc->nb_streams-1];
963 if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
964 (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
965 av_log(c->fc, AV_LOG_WARNING,
966 "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
967 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
969 } else if (den != 0) {
970 av_reduce(&st->sample_aspect_ratio.num, &st->sample_aspect_ratio.den,
976 /* this atom contains actual media data */
977 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
979 if (atom.size == 0) /* wrong one (MP4) */
982 return 0; /* now go for moov */
985 #define DRM_BLOB_SIZE 56
987 static int mov_read_adrm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
989 uint8_t intermediate_key[20];
990 uint8_t intermediate_iv[20];
993 uint8_t file_checksum[20];
994 uint8_t calculated_checksum[20];
998 uint8_t *activation_bytes = c->activation_bytes;
999 uint8_t *fixed_key = c->audible_fixed_key;
1003 sha = av_sha_alloc();
1005 return AVERROR(ENOMEM);
1006 c->aes_decrypt = av_aes_alloc();
1007 if (!c->aes_decrypt) {
1008 ret = AVERROR(ENOMEM);
1012 /* drm blob processing */
1013 avio_read(pb, output, 8); // go to offset 8, absolute position 0x251
1014 avio_read(pb, input, DRM_BLOB_SIZE);
1015 avio_read(pb, output, 4); // go to offset 4, absolute position 0x28d
1016 avio_read(pb, file_checksum, 20);
1018 av_log(c->fc, AV_LOG_INFO, "[aax] file checksum == "); // required by external tools
1019 for (i = 0; i < 20; i++)
1020 av_log(c->fc, AV_LOG_INFO, "%02x", file_checksum[i]);
1021 av_log(c->fc, AV_LOG_INFO, "\n");
1023 /* verify activation data */
1024 if (!activation_bytes) {
1025 av_log(c->fc, AV_LOG_WARNING, "[aax] activation_bytes option is missing!\n");
1026 ret = 0; /* allow ffprobe to continue working on .aax files */
1029 if (c->activation_bytes_size != 4) {
1030 av_log(c->fc, AV_LOG_FATAL, "[aax] activation_bytes value needs to be 4 bytes!\n");
1031 ret = AVERROR(EINVAL);
1035 /* verify fixed key */
1036 if (c->audible_fixed_key_size != 16) {
1037 av_log(c->fc, AV_LOG_FATAL, "[aax] audible_fixed_key value needs to be 16 bytes!\n");
1038 ret = AVERROR(EINVAL);
1042 /* AAX (and AAX+) key derivation */
1043 av_sha_init(sha, 160);
1044 av_sha_update(sha, fixed_key, 16);
1045 av_sha_update(sha, activation_bytes, 4);
1046 av_sha_final(sha, intermediate_key);
1047 av_sha_init(sha, 160);
1048 av_sha_update(sha, fixed_key, 16);
1049 av_sha_update(sha, intermediate_key, 20);
1050 av_sha_update(sha, activation_bytes, 4);
1051 av_sha_final(sha, intermediate_iv);
1052 av_sha_init(sha, 160);
1053 av_sha_update(sha, intermediate_key, 16);
1054 av_sha_update(sha, intermediate_iv, 16);
1055 av_sha_final(sha, calculated_checksum);
1056 if (memcmp(calculated_checksum, file_checksum, 20)) { // critical error
1057 av_log(c->fc, AV_LOG_ERROR, "[aax] mismatch in checksums!\n");
1058 ret = AVERROR_INVALIDDATA;
1061 av_aes_init(c->aes_decrypt, intermediate_key, 128, 1);
1062 av_aes_crypt(c->aes_decrypt, output, input, DRM_BLOB_SIZE >> 4, intermediate_iv, 1);
1063 for (i = 0; i < 4; i++) {
1064 // file data (in output) is stored in big-endian mode
1065 if (activation_bytes[i] != output[3 - i]) { // critical error
1066 av_log(c->fc, AV_LOG_ERROR, "[aax] error in drm blob decryption!\n");
1067 ret = AVERROR_INVALIDDATA;
1071 memcpy(c->file_key, output + 8, 16);
1072 memcpy(input, output + 26, 16);
1073 av_sha_init(sha, 160);
1074 av_sha_update(sha, input, 16);
1075 av_sha_update(sha, c->file_key, 16);
1076 av_sha_update(sha, fixed_key, 16);
1077 av_sha_final(sha, c->file_iv);
1085 // Audible AAX (and AAX+) bytestream decryption
1086 static int aax_filter(uint8_t *input, int size, MOVContext *c)
1089 unsigned char iv[16];
1091 memcpy(iv, c->file_iv, 16); // iv is overwritten
1092 blocks = size >> 4; // trailing bytes are not encrypted!
1093 av_aes_init(c->aes_decrypt, c->file_key, 128, 1);
1094 av_aes_crypt(c->aes_decrypt, input, input, blocks, iv, 1);
1099 /* read major brand, minor version and compatible brands and store them as metadata */
1100 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1103 int comp_brand_size;
1104 char* comp_brands_str;
1105 uint8_t type[5] = {0};
1106 int ret = ffio_read_size(pb, type, 4);
1110 if (strcmp(type, "qt "))
1112 av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
1113 av_dict_set(&c->fc->metadata, "major_brand", type, 0);
1114 minor_ver = avio_rb32(pb); /* minor version */
1115 av_dict_set_int(&c->fc->metadata, "minor_version", minor_ver, 0);
1117 comp_brand_size = atom.size - 8;
1118 if (comp_brand_size < 0)
1119 return AVERROR_INVALIDDATA;
1120 comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
1121 if (!comp_brands_str)
1122 return AVERROR(ENOMEM);
1124 ret = ffio_read_size(pb, comp_brands_str, comp_brand_size);
1126 av_freep(&comp_brands_str);
1129 comp_brands_str[comp_brand_size] = 0;
1130 av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
1131 av_freep(&comp_brands_str);
1136 /* this atom should contain all header atoms */
1137 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1141 if (c->found_moov) {
1142 av_log(c->fc, AV_LOG_WARNING, "Found duplicated MOOV Atom. Skipped it\n");
1143 avio_skip(pb, atom.size);
1147 if ((ret = mov_read_default(c, pb, atom)) < 0)
1149 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
1150 /* so we don't parse the whole file if over a network */
1152 return 0; /* now go for mdat */
1155 static MOVFragmentStreamInfo * get_frag_stream_info(
1156 MOVFragmentIndex *frag_index,
1161 MOVFragmentIndexItem * item;
1163 if (index < 0 || index >= frag_index->nb_items)
1165 item = &frag_index->item[index];
1166 for (i = 0; i < item->nb_stream_info; i++)
1167 if (item->stream_info[i].id == id)
1168 return &item->stream_info[i];
1170 // This shouldn't happen
1174 static void set_frag_stream(MOVFragmentIndex *frag_index, int id)
1177 MOVFragmentIndexItem * item;
1179 if (frag_index->current < 0 ||
1180 frag_index->current >= frag_index->nb_items)
1183 item = &frag_index->item[frag_index->current];
1184 for (i = 0; i < item->nb_stream_info; i++)
1185 if (item->stream_info[i].id == id) {
1190 // id not found. This shouldn't happen.
1194 static MOVFragmentStreamInfo * get_current_frag_stream_info(
1195 MOVFragmentIndex *frag_index)
1197 MOVFragmentIndexItem *item;
1198 if (frag_index->current < 0 ||
1199 frag_index->current >= frag_index->nb_items)
1202 item = &frag_index->item[frag_index->current];
1203 if (item->current >= 0 && item->current < item->nb_stream_info)
1204 return &item->stream_info[item->current];
1206 // This shouldn't happen
1210 static int search_frag_moof_offset(MOVFragmentIndex *frag_index, int64_t offset)
1213 int64_t moof_offset;
1215 // Optimize for appending new entries
1216 if (!frag_index->nb_items ||
1217 frag_index->item[frag_index->nb_items - 1].moof_offset < offset)
1218 return frag_index->nb_items;
1221 b = frag_index->nb_items;
1225 moof_offset = frag_index->item[m].moof_offset;
1226 if (moof_offset >= offset)
1228 if (moof_offset <= offset)
1234 static int64_t get_stream_info_time(MOVFragmentStreamInfo * frag_stream_info)
1237 if (frag_stream_info) {
1238 if (frag_stream_info->sidx_pts != AV_NOPTS_VALUE)
1239 return frag_stream_info->sidx_pts;
1240 if (frag_stream_info->first_tfra_pts != AV_NOPTS_VALUE)
1241 return frag_stream_info->first_tfra_pts;
1242 if (frag_stream_info->tfdt_dts != AV_NOPTS_VALUE)
1243 return frag_stream_info->tfdt_dts;
1245 return AV_NOPTS_VALUE;
1248 static int64_t get_frag_time(MOVFragmentIndex *frag_index,
1249 int index, int track_id)
1251 MOVFragmentStreamInfo * frag_stream_info;
1255 if (track_id >= 0) {
1256 frag_stream_info = get_frag_stream_info(frag_index, index, track_id);
1257 return frag_stream_info->sidx_pts;
1260 for (i = 0; i < frag_index->item[index].nb_stream_info; i++) {
1261 frag_stream_info = &frag_index->item[index].stream_info[i];
1262 timestamp = get_stream_info_time(frag_stream_info);
1263 if (timestamp != AV_NOPTS_VALUE)
1266 return AV_NOPTS_VALUE;
1269 static int search_frag_timestamp(MOVFragmentIndex *frag_index,
1270 AVStream *st, int64_t timestamp)
1277 // If the stream is referenced by any sidx, limit the search
1278 // to fragments that referenced this stream in the sidx
1279 MOVStreamContext *sc = st->priv_data;
1285 b = frag_index->nb_items;
1289 frag_time = get_frag_time(frag_index, m, id);
1290 if (frag_time != AV_NOPTS_VALUE) {
1291 if (frag_time >= timestamp)
1293 if (frag_time <= timestamp)
1300 static int update_frag_index(MOVContext *c, int64_t offset)
1303 MOVFragmentIndexItem * item;
1304 MOVFragmentStreamInfo * frag_stream_info;
1306 // If moof_offset already exists in frag_index, return index to it
1307 index = search_frag_moof_offset(&c->frag_index, offset);
1308 if (index < c->frag_index.nb_items &&
1309 c->frag_index.item[index].moof_offset == offset)
1312 // offset is not yet in frag index.
1313 // Insert new item at index (sorted by moof offset)
1314 item = av_fast_realloc(c->frag_index.item,
1315 &c->frag_index.allocated_size,
1316 (c->frag_index.nb_items + 1) *
1317 sizeof(*c->frag_index.item));
1320 c->frag_index.item = item;
1322 frag_stream_info = av_realloc_array(NULL, c->fc->nb_streams,
1323 sizeof(*item->stream_info));
1324 if (!frag_stream_info)
1327 for (i = 0; i < c->fc->nb_streams; i++) {
1328 frag_stream_info[i].id = c->fc->streams[i]->id;
1329 frag_stream_info[i].sidx_pts = AV_NOPTS_VALUE;
1330 frag_stream_info[i].tfdt_dts = AV_NOPTS_VALUE;
1331 frag_stream_info[i].first_tfra_pts = AV_NOPTS_VALUE;
1332 frag_stream_info[i].index_entry = -1;
1333 frag_stream_info[i].encryption_index = NULL;
1336 if (index < c->frag_index.nb_items)
1337 memmove(c->frag_index.item + index + 1, c->frag_index.item + index,
1338 (c->frag_index.nb_items - index) * sizeof(*c->frag_index.item));
1340 item = &c->frag_index.item[index];
1341 item->headers_read = 0;
1343 item->nb_stream_info = c->fc->nb_streams;
1344 item->moof_offset = offset;
1345 item->stream_info = frag_stream_info;
1346 c->frag_index.nb_items++;
1351 static void fix_frag_index_entries(MOVFragmentIndex *frag_index, int index,
1352 int id, int entries)
1355 MOVFragmentStreamInfo * frag_stream_info;
1359 for (i = index; i < frag_index->nb_items; i++) {
1360 frag_stream_info = get_frag_stream_info(frag_index, i, id);
1361 if (frag_stream_info && frag_stream_info->index_entry >= 0)
1362 frag_stream_info->index_entry += entries;
1366 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1368 if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
1369 c->has_looked_for_mfra = 1;
1370 if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
1372 av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
1374 if ((ret = mov_read_mfra(c, pb)) < 0) {
1375 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
1376 "read the mfra (may be a live ismv)\n");
1379 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but stream is not "
1380 "seekable, can not look for mfra\n");
1383 c->fragment.moof_offset = c->fragment.implicit_offset = avio_tell(pb) - 8;
1384 av_log(c->fc, AV_LOG_TRACE, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
1385 c->frag_index.current = update_frag_index(c, c->fragment.moof_offset);
1386 return mov_read_default(c, pb, atom);
1389 static void mov_metadata_creation_time(AVDictionary **metadata, int64_t time)
1392 if(time >= 2082844800)
1393 time -= 2082844800; /* seconds between 1904-01-01 and Epoch */
1395 if ((int64_t)(time * 1000000ULL) / 1000000 != time) {
1396 av_log(NULL, AV_LOG_DEBUG, "creation_time is not representable\n");
1400 avpriv_dict_set_timestamp(metadata, "creation_time", time * 1000000);
1404 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1407 MOVStreamContext *sc;
1409 char language[4] = {0};
1411 int64_t creation_time;
1413 if (c->fc->nb_streams < 1)
1415 st = c->fc->streams[c->fc->nb_streams-1];
1418 if (sc->time_scale) {
1419 av_log(c->fc, AV_LOG_ERROR, "Multiple mdhd?\n");
1420 return AVERROR_INVALIDDATA;
1423 version = avio_r8(pb);
1425 avpriv_request_sample(c->fc, "Version %d", version);
1426 return AVERROR_PATCHWELCOME;
1428 avio_rb24(pb); /* flags */
1430 creation_time = avio_rb64(pb);
1433 creation_time = avio_rb32(pb);
1434 avio_rb32(pb); /* modification time */
1436 mov_metadata_creation_time(&st->metadata, creation_time);
1438 sc->time_scale = avio_rb32(pb);
1439 if (sc->time_scale <= 0) {
1440 av_log(c->fc, AV_LOG_ERROR, "Invalid mdhd time scale %d, defaulting to 1\n", sc->time_scale);
1443 st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1445 lang = avio_rb16(pb); /* language */
1446 if (ff_mov_lang_to_iso639(lang, language))
1447 av_dict_set(&st->metadata, "language", language, 0);
1448 avio_rb16(pb); /* quality */
1453 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1456 int64_t creation_time;
1457 int version = avio_r8(pb); /* version */
1458 avio_rb24(pb); /* flags */
1461 creation_time = avio_rb64(pb);
1464 creation_time = avio_rb32(pb);
1465 avio_rb32(pb); /* modification time */
1467 mov_metadata_creation_time(&c->fc->metadata, creation_time);
1468 c->time_scale = avio_rb32(pb); /* time scale */
1469 if (c->time_scale <= 0) {
1470 av_log(c->fc, AV_LOG_ERROR, "Invalid mvhd time scale %d, defaulting to 1\n", c->time_scale);
1473 av_log(c->fc, AV_LOG_TRACE, "time scale = %i\n", c->time_scale);
1475 c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
1476 // set the AVCodecContext duration because the duration of individual tracks
1477 // may be inaccurate
1478 if (c->time_scale > 0 && !c->trex_data)
1479 c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
1480 avio_rb32(pb); /* preferred scale */
1482 avio_rb16(pb); /* preferred volume */
1484 avio_skip(pb, 10); /* reserved */
1486 /* movie display matrix, store it in main context and use it later on */
1487 for (i = 0; i < 3; i++) {
1488 c->movie_display_matrix[i][0] = avio_rb32(pb); // 16.16 fixed point
1489 c->movie_display_matrix[i][1] = avio_rb32(pb); // 16.16 fixed point
1490 c->movie_display_matrix[i][2] = avio_rb32(pb); // 2.30 fixed point
1493 avio_rb32(pb); /* preview time */
1494 avio_rb32(pb); /* preview duration */
1495 avio_rb32(pb); /* poster time */
1496 avio_rb32(pb); /* selection time */
1497 avio_rb32(pb); /* selection duration */
1498 avio_rb32(pb); /* current time */
1499 avio_rb32(pb); /* next track ID */
1504 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1509 if (c->fc->nb_streams < 1)
1511 st = c->fc->streams[c->fc->nb_streams-1];
1513 little_endian = avio_rb16(pb) & 0xFF;
1514 av_log(c->fc, AV_LOG_TRACE, "enda %d\n", little_endian);
1515 if (little_endian == 1) {
1516 switch (st->codecpar->codec_id) {
1517 case AV_CODEC_ID_PCM_S24BE:
1518 st->codecpar->codec_id = AV_CODEC_ID_PCM_S24LE;
1520 case AV_CODEC_ID_PCM_S32BE:
1521 st->codecpar->codec_id = AV_CODEC_ID_PCM_S32LE;
1523 case AV_CODEC_ID_PCM_F32BE:
1524 st->codecpar->codec_id = AV_CODEC_ID_PCM_F32LE;
1526 case AV_CODEC_ID_PCM_F64BE:
1527 st->codecpar->codec_id = AV_CODEC_ID_PCM_F64LE;
1536 static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1539 char color_parameter_type[5] = { 0 };
1540 uint16_t color_primaries, color_trc, color_matrix;
1543 if (c->fc->nb_streams < 1)
1545 st = c->fc->streams[c->fc->nb_streams - 1];
1547 ret = ffio_read_size(pb, color_parameter_type, 4);
1550 if (strncmp(color_parameter_type, "nclx", 4) &&
1551 strncmp(color_parameter_type, "nclc", 4)) {
1552 av_log(c->fc, AV_LOG_WARNING, "unsupported color_parameter_type %s\n",
1553 color_parameter_type);
1557 color_primaries = avio_rb16(pb);
1558 color_trc = avio_rb16(pb);
1559 color_matrix = avio_rb16(pb);
1561 av_log(c->fc, AV_LOG_TRACE,
1562 "%s: pri %d trc %d matrix %d",
1563 color_parameter_type, color_primaries, color_trc, color_matrix);
1565 if (!strncmp(color_parameter_type, "nclx", 4)) {
1566 uint8_t color_range = avio_r8(pb) >> 7;
1567 av_log(c->fc, AV_LOG_TRACE, " full %"PRIu8"", color_range);
1569 st->codecpar->color_range = AVCOL_RANGE_JPEG;
1571 st->codecpar->color_range = AVCOL_RANGE_MPEG;
1574 if (!av_color_primaries_name(color_primaries))
1575 color_primaries = AVCOL_PRI_UNSPECIFIED;
1576 if (!av_color_transfer_name(color_trc))
1577 color_trc = AVCOL_TRC_UNSPECIFIED;
1578 if (!av_color_space_name(color_matrix))
1579 color_matrix = AVCOL_SPC_UNSPECIFIED;
1581 st->codecpar->color_primaries = color_primaries;
1582 st->codecpar->color_trc = color_trc;
1583 st->codecpar->color_space = color_matrix;
1584 av_log(c->fc, AV_LOG_TRACE, "\n");
1589 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1592 unsigned mov_field_order;
1593 enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
1595 if (c->fc->nb_streams < 1) // will happen with jp2 files
1597 st = c->fc->streams[c->fc->nb_streams-1];
1599 return AVERROR_INVALIDDATA;
1600 mov_field_order = avio_rb16(pb);
1601 if ((mov_field_order & 0xFF00) == 0x0100)
1602 decoded_field_order = AV_FIELD_PROGRESSIVE;
1603 else if ((mov_field_order & 0xFF00) == 0x0200) {
1604 switch (mov_field_order & 0xFF) {
1605 case 0x01: decoded_field_order = AV_FIELD_TT;
1607 case 0x06: decoded_field_order = AV_FIELD_BB;
1609 case 0x09: decoded_field_order = AV_FIELD_TB;
1611 case 0x0E: decoded_field_order = AV_FIELD_BT;
1615 if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
1616 av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
1618 st->codecpar->field_order = decoded_field_order;
1623 static int mov_realloc_extradata(AVCodecParameters *par, MOVAtom atom)
1626 uint64_t size = (uint64_t)par->extradata_size + atom.size + 8 + AV_INPUT_BUFFER_PADDING_SIZE;
1627 if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
1628 return AVERROR_INVALIDDATA;
1629 if ((err = av_reallocp(&par->extradata, size)) < 0) {
1630 par->extradata_size = 0;
1633 par->extradata_size = size - AV_INPUT_BUFFER_PADDING_SIZE;
1637 /* Read a whole atom into the extradata return the size of the atom read, possibly truncated if != atom.size */
1638 static int64_t mov_read_atom_into_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1639 AVCodecParameters *par, uint8_t *buf)
1641 int64_t result = atom.size;
1644 AV_WB32(buf , atom.size + 8);
1645 AV_WL32(buf + 4, atom.type);
1646 err = ffio_read_size(pb, buf + 8, atom.size);
1648 par->extradata_size -= atom.size;
1650 } else if (err < atom.size) {
1651 av_log(c->fc, AV_LOG_WARNING, "truncated extradata\n");
1652 par->extradata_size -= atom.size - err;
1655 memset(buf + 8 + err, 0, AV_INPUT_BUFFER_PADDING_SIZE);
1659 /* FIXME modify QDM2/SVQ3/H.264 decoders to take full atom as extradata */
1660 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1661 enum AVCodecID codec_id)
1664 uint64_t original_size;
1667 if (c->fc->nb_streams < 1) // will happen with jp2 files
1669 st = c->fc->streams[c->fc->nb_streams-1];
1671 if (st->codecpar->codec_id != codec_id)
1672 return 0; /* unexpected codec_id - don't mess with extradata */
1674 original_size = st->codecpar->extradata_size;
1675 err = mov_realloc_extradata(st->codecpar, atom);
1679 err = mov_read_atom_into_extradata(c, pb, atom, st->codecpar, st->codecpar->extradata + original_size);
1682 return 0; // Note: this is the original behavior to ignore truncation.
1685 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
1686 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1688 return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
1691 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1693 return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
1696 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1698 return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
1701 static int mov_read_dpxe(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1703 return mov_read_extradata(c, pb, atom, AV_CODEC_ID_R10K);
1706 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1708 int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1710 ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1714 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1716 int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1718 if (!ret && c->fc->nb_streams >= 1) {
1719 AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1720 if (par->extradata_size >= 40) {
1721 par->height = AV_RB16(&par->extradata[36]);
1722 par->width = AV_RB16(&par->extradata[38]);
1728 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1730 if (c->fc->nb_streams >= 1) {
1731 AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1732 if (par->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1733 par->codec_id == AV_CODEC_ID_H264 &&
1737 cid = avio_rb16(pb);
1738 /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1739 if (cid == 0xd4d || cid == 0xd4e)
1742 } else if ((par->codec_tag == MKTAG('A', 'V', 'd', '1') ||
1743 par->codec_tag == MKTAG('A', 'V', 'j', '2') ||
1744 par->codec_tag == MKTAG('A', 'V', 'd', 'n')) &&
1748 num = avio_rb32(pb);
1749 den = avio_rb32(pb);
1750 if (num <= 0 || den <= 0)
1752 switch (avio_rb32(pb)) {
1754 if (den >= INT_MAX / 2)
1758 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.num = num;
1759 c->fc->streams[c->fc->nb_streams-1]->display_aspect_ratio.den = den;
1766 return mov_read_avid(c, pb, atom);
1769 static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1773 uint64_t original_size;
1774 if (c->fc->nb_streams >= 1) {
1775 AVCodecParameters *par = c->fc->streams[c->fc->nb_streams-1]->codecpar;
1776 if (par->codec_id == AV_CODEC_ID_H264)
1778 if (atom.size == 16) {
1779 original_size = par->extradata_size;
1780 ret = mov_realloc_extradata(par, atom);
1782 length = mov_read_atom_into_extradata(c, pb, atom, par, par->extradata + original_size);
1783 if (length == atom.size) {
1784 const uint8_t range_value = par->extradata[original_size + 19];
1785 switch (range_value) {
1787 par->color_range = AVCOL_RANGE_MPEG;
1790 par->color_range = AVCOL_RANGE_JPEG;
1793 av_log(c, AV_LOG_WARNING, "ignored unknown aclr value (%d)\n", range_value);
1796 ff_dlog(c, "color_range: %d\n", par->color_range);
1798 /* For some reason the whole atom was not added to the extradata */
1799 av_log(c, AV_LOG_ERROR, "aclr not decoded - incomplete atom\n");
1802 av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
1805 av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
1812 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1814 return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1817 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1822 if (c->fc->nb_streams < 1)
1824 st = c->fc->streams[c->fc->nb_streams-1];
1826 if ((uint64_t)atom.size > (1<<30))
1827 return AVERROR_INVALIDDATA;
1829 if (st->codecpar->codec_id == AV_CODEC_ID_QDM2 ||
1830 st->codecpar->codec_id == AV_CODEC_ID_QDMC ||
1831 st->codecpar->codec_id == AV_CODEC_ID_SPEEX) {
1832 // pass all frma atom to codec, needed at least for QDMC and QDM2
1833 av_freep(&st->codecpar->extradata);
1834 ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1837 } else if (atom.size > 8) { /* to read frma, esds atoms */
1838 if (st->codecpar->codec_id == AV_CODEC_ID_ALAC && atom.size >= 24) {
1840 ret = ffio_ensure_seekback(pb, 8);
1843 buffer = avio_rb64(pb);
1845 if ( (buffer & 0xFFFFFFFF) == MKBETAG('f','r','m','a')
1846 && buffer >> 32 <= atom.size
1847 && buffer >> 32 >= 8) {
1850 } else if (!st->codecpar->extradata_size) {
1851 #define ALAC_EXTRADATA_SIZE 36
1852 st->codecpar->extradata = av_mallocz(ALAC_EXTRADATA_SIZE + AV_INPUT_BUFFER_PADDING_SIZE);
1853 if (!st->codecpar->extradata)
1854 return AVERROR(ENOMEM);
1855 st->codecpar->extradata_size = ALAC_EXTRADATA_SIZE;
1856 AV_WB32(st->codecpar->extradata , ALAC_EXTRADATA_SIZE);
1857 AV_WB32(st->codecpar->extradata + 4, MKTAG('a','l','a','c'));
1858 AV_WB64(st->codecpar->extradata + 12, buffer);
1859 avio_read(pb, st->codecpar->extradata + 20, 16);
1860 avio_skip(pb, atom.size - 24);
1864 if ((ret = mov_read_default(c, pb, atom)) < 0)
1867 avio_skip(pb, atom.size);
1872 * This function reads atom content and puts data in extradata without tag
1873 * nor size unlike mov_read_extradata.
1875 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1880 if (c->fc->nb_streams < 1)
1882 st = c->fc->streams[c->fc->nb_streams-1];
1884 if ((uint64_t)atom.size > (1<<30))
1885 return AVERROR_INVALIDDATA;
1887 if (atom.size >= 10) {
1888 // Broken files created by legacy versions of libavformat will
1889 // wrap a whole fiel atom inside of a glbl atom.
1890 unsigned size = avio_rb32(pb);
1891 unsigned type = avio_rl32(pb);
1892 avio_seek(pb, -8, SEEK_CUR);
1893 if (type == MKTAG('f','i','e','l') && size == atom.size)
1894 return mov_read_default(c, pb, atom);
1896 if (st->codecpar->extradata_size > 1 && st->codecpar->extradata) {
1897 av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1900 av_freep(&st->codecpar->extradata);
1901 ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size);
1908 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1911 uint8_t profile_level;
1914 if (c->fc->nb_streams < 1)
1916 st = c->fc->streams[c->fc->nb_streams-1];
1918 if (atom.size >= (1<<28) || atom.size < 7)
1919 return AVERROR_INVALIDDATA;
1921 profile_level = avio_r8(pb);
1922 if ((profile_level & 0xf0) != 0xc0)
1925 avio_seek(pb, 6, SEEK_CUR);
1926 av_freep(&st->codecpar->extradata);
1927 ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 7);
1935 * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1936 * but can have extradata appended at the end after the 40 bytes belonging
1939 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1944 if (c->fc->nb_streams < 1)
1946 if (atom.size <= 40)
1948 st = c->fc->streams[c->fc->nb_streams-1];
1950 if ((uint64_t)atom.size > (1<<30))
1951 return AVERROR_INVALIDDATA;
1954 av_freep(&st->codecpar->extradata);
1955 ret = ff_get_extradata(c->fc, st->codecpar, pb, atom.size - 40);
1962 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1965 MOVStreamContext *sc;
1966 unsigned int i, entries;
1968 if (c->fc->nb_streams < 1)
1970 st = c->fc->streams[c->fc->nb_streams-1];
1973 avio_r8(pb); /* version */
1974 avio_rb24(pb); /* flags */
1976 entries = avio_rb32(pb);
1981 if (sc->chunk_offsets)
1982 av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1983 av_free(sc->chunk_offsets);
1984 sc->chunk_count = 0;
1985 sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1986 if (!sc->chunk_offsets)
1987 return AVERROR(ENOMEM);
1988 sc->chunk_count = entries;
1990 if (atom.type == MKTAG('s','t','c','o'))
1991 for (i = 0; i < entries && !pb->eof_reached; i++)
1992 sc->chunk_offsets[i] = avio_rb32(pb);
1993 else if (atom.type == MKTAG('c','o','6','4'))
1994 for (i = 0; i < entries && !pb->eof_reached; i++)
1995 sc->chunk_offsets[i] = avio_rb64(pb);
1997 return AVERROR_INVALIDDATA;
1999 sc->chunk_count = i;
2001 if (pb->eof_reached) {
2002 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STCO atom\n");
2009 static int mov_codec_id(AVStream *st, uint32_t format)
2011 int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
2014 ((format & 0xFFFF) == 'm' + ('s' << 8) ||
2015 (format & 0xFFFF) == 'T' + ('S' << 8)))
2016 id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
2018 if (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
2019 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
2020 } else if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO &&
2021 /* skip old ASF MPEG-4 tag */
2022 format && format != MKTAG('m','p','4','s')) {
2023 id = ff_codec_get_id(ff_codec_movvideo_tags, format);
2025 id = ff_codec_get_id(ff_codec_bmp_tags, format);
2027 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
2028 else if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA ||
2029 (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE &&
2030 st->codecpar->codec_id == AV_CODEC_ID_NONE)) {
2031 id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
2033 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
2037 st->codecpar->codec_tag = format;
2042 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
2043 AVStream *st, MOVStreamContext *sc)
2045 uint8_t codec_name[32] = { 0 };
2049 /* The first 16 bytes of the video sample description are already
2050 * read in ff_mov_read_stsd_entries() */
2051 stsd_start = avio_tell(pb) - 16;
2053 avio_rb16(pb); /* version */
2054 avio_rb16(pb); /* revision level */
2055 avio_rb32(pb); /* vendor */
2056 avio_rb32(pb); /* temporal quality */
2057 avio_rb32(pb); /* spatial quality */
2059 st->codecpar->width = avio_rb16(pb); /* width */
2060 st->codecpar->height = avio_rb16(pb); /* height */
2062 avio_rb32(pb); /* horiz resolution */
2063 avio_rb32(pb); /* vert resolution */
2064 avio_rb32(pb); /* data size, always 0 */
2065 avio_rb16(pb); /* frames per samples */
2067 len = avio_r8(pb); /* codec name, pascal string */
2070 mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
2072 avio_skip(pb, 31 - len);
2075 av_dict_set(&st->metadata, "encoder", codec_name, 0);
2077 /* codec_tag YV12 triggers an UV swap in rawdec.c */
2078 if (!strncmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
2079 st->codecpar->codec_tag = MKTAG('I', '4', '2', '0');
2080 st->codecpar->width &= ~1;
2081 st->codecpar->height &= ~1;
2083 /* Flash Media Server uses tag H.263 with Sorenson Spark */
2084 if (st->codecpar->codec_tag == MKTAG('H','2','6','3') &&
2085 !strncmp(codec_name, "Sorenson H263", 13))
2086 st->codecpar->codec_id = AV_CODEC_ID_FLV1;
2088 st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* depth */
2090 avio_seek(pb, stsd_start, SEEK_SET);
2092 if (ff_get_qtpalette(st->codecpar->codec_id, pb, sc->palette)) {
2093 st->codecpar->bits_per_coded_sample &= 0x1F;
2094 sc->has_palette = 1;
2098 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
2099 AVStream *st, MOVStreamContext *sc)
2101 int bits_per_sample, flags;
2102 uint16_t version = avio_rb16(pb);
2103 AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
2105 avio_rb16(pb); /* revision level */
2106 avio_rb32(pb); /* vendor */
2108 st->codecpar->channels = avio_rb16(pb); /* channel count */
2109 st->codecpar->bits_per_coded_sample = avio_rb16(pb); /* sample size */
2110 av_log(c->fc, AV_LOG_TRACE, "audio channels %d\n", st->codecpar->channels);
2112 sc->audio_cid = avio_rb16(pb);
2113 avio_rb16(pb); /* packet size = 0 */
2115 st->codecpar->sample_rate = ((avio_rb32(pb) >> 16));
2117 // Read QT version 1 fields. In version 0 these do not exist.
2118 av_log(c->fc, AV_LOG_TRACE, "version =%d, isom =%d\n", version, c->isom);
2120 (compatible_brands && strstr(compatible_brands->value, "qt "))) {
2123 sc->samples_per_frame = avio_rb32(pb);
2124 avio_rb32(pb); /* bytes per packet */
2125 sc->bytes_per_frame = avio_rb32(pb);
2126 avio_rb32(pb); /* bytes per sample */
2127 } else if (version == 2) {
2128 avio_rb32(pb); /* sizeof struct only */
2129 st->codecpar->sample_rate = av_int2double(avio_rb64(pb));
2130 st->codecpar->channels = avio_rb32(pb);
2131 avio_rb32(pb); /* always 0x7F000000 */
2132 st->codecpar->bits_per_coded_sample = avio_rb32(pb);
2134 flags = avio_rb32(pb); /* lpcm format specific flag */
2135 sc->bytes_per_frame = avio_rb32(pb);
2136 sc->samples_per_frame = avio_rb32(pb);
2137 if (st->codecpar->codec_tag == MKTAG('l','p','c','m'))
2138 st->codecpar->codec_id =
2139 ff_mov_get_lpcm_codec_id(st->codecpar->bits_per_coded_sample,
2142 if (version == 0 || (version == 1 && sc->audio_cid != -2)) {
2143 /* can't correctly handle variable sized packet as audio unit */
2144 switch (st->codecpar->codec_id) {
2145 case AV_CODEC_ID_MP2:
2146 case AV_CODEC_ID_MP3:
2147 st->need_parsing = AVSTREAM_PARSE_FULL;
2153 if (sc->format == 0) {
2154 if (st->codecpar->bits_per_coded_sample == 8)
2155 st->codecpar->codec_id = mov_codec_id(st, MKTAG('r','a','w',' '));
2156 else if (st->codecpar->bits_per_coded_sample == 16)
2157 st->codecpar->codec_id = mov_codec_id(st, MKTAG('t','w','o','s'));
2160 switch (st->codecpar->codec_id) {
2161 case AV_CODEC_ID_PCM_S8:
2162 case AV_CODEC_ID_PCM_U8:
2163 if (st->codecpar->bits_per_coded_sample == 16)
2164 st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE;
2166 case AV_CODEC_ID_PCM_S16LE:
2167 case AV_CODEC_ID_PCM_S16BE:
2168 if (st->codecpar->bits_per_coded_sample == 8)
2169 st->codecpar->codec_id = AV_CODEC_ID_PCM_S8;
2170 else if (st->codecpar->bits_per_coded_sample == 24)
2171 st->codecpar->codec_id =
2172 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
2173 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
2174 else if (st->codecpar->bits_per_coded_sample == 32)
2175 st->codecpar->codec_id =
2176 st->codecpar->codec_id == AV_CODEC_ID_PCM_S16BE ?
2177 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
2179 /* set values for old format before stsd version 1 appeared */
2180 case AV_CODEC_ID_MACE3:
2181 sc->samples_per_frame = 6;
2182 sc->bytes_per_frame = 2 * st->codecpar->channels;
2184 case AV_CODEC_ID_MACE6:
2185 sc->samples_per_frame = 6;
2186 sc->bytes_per_frame = 1 * st->codecpar->channels;
2188 case AV_CODEC_ID_ADPCM_IMA_QT:
2189 sc->samples_per_frame = 64;
2190 sc->bytes_per_frame = 34 * st->codecpar->channels;
2192 case AV_CODEC_ID_GSM:
2193 sc->samples_per_frame = 160;
2194 sc->bytes_per_frame = 33;
2200 bits_per_sample = av_get_bits_per_sample(st->codecpar->codec_id);
2201 if (bits_per_sample) {
2202 st->codecpar->bits_per_coded_sample = bits_per_sample;
2203 sc->sample_size = (bits_per_sample >> 3) * st->codecpar->channels;
2207 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
2208 AVStream *st, MOVStreamContext *sc,
2211 // ttxt stsd contains display flags, justification, background
2212 // color, fonts, and default styles, so fake an atom to read it
2213 MOVAtom fake_atom = { .size = size };
2214 // mp4s contains a regular esds atom
2215 if (st->codecpar->codec_tag != AV_RL32("mp4s"))
2216 mov_read_glbl(c, pb, fake_atom);
2217 st->codecpar->width = sc->width;
2218 st->codecpar->height = sc->height;
2221 static uint32_t yuv_to_rgba(uint32_t ycbcr)
2226 y = (ycbcr >> 16) & 0xFF;
2227 cr = (ycbcr >> 8) & 0xFF;
2230 b = av_clip_uint8((1164 * (y - 16) + 2018 * (cb - 128)) / 1000);
2231 g = av_clip_uint8((1164 * (y - 16) - 813 * (cr - 128) - 391 * (cb - 128)) / 1000);
2232 r = av_clip_uint8((1164 * (y - 16) + 1596 * (cr - 128) ) / 1000);
2234 return (r << 16) | (g << 8) | b;
2237 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
2239 char buf[256] = {0};
2240 uint8_t *src = st->codecpar->extradata;
2243 if (st->codecpar->extradata_size != 64)
2246 if (st->codecpar->width > 0 && st->codecpar->height > 0)
2247 snprintf(buf, sizeof(buf), "size: %dx%d\n",
2248 st->codecpar->width, st->codecpar->height);
2249 av_strlcat(buf, "palette: ", sizeof(buf));
2251 for (i = 0; i < 16; i++) {
2252 uint32_t yuv = AV_RB32(src + i * 4);
2253 uint32_t rgba = yuv_to_rgba(yuv);
2255 av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
2258 if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
2261 av_freep(&st->codecpar->extradata);
2262 st->codecpar->extradata_size = 0;
2263 st->codecpar->extradata = av_mallocz(strlen(buf) + AV_INPUT_BUFFER_PADDING_SIZE);
2264 if (!st->codecpar->extradata)
2265 return AVERROR(ENOMEM);
2266 st->codecpar->extradata_size = strlen(buf);
2267 memcpy(st->codecpar->extradata, buf, st->codecpar->extradata_size);
2272 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
2273 AVStream *st, MOVStreamContext *sc,
2278 if (st->codecpar->codec_tag == MKTAG('t','m','c','d')) {
2279 if ((int)size != size)
2280 return AVERROR(ENOMEM);
2282 ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
2286 MOVStreamContext *tmcd_ctx = st->priv_data;
2288 val = AV_RB32(st->codecpar->extradata + 4);
2289 tmcd_ctx->tmcd_flags = val;
2290 st->avg_frame_rate.num = st->codecpar->extradata[16]; /* number of frame */
2291 st->avg_frame_rate.den = 1;
2292 #if FF_API_LAVF_AVCTX
2293 FF_DISABLE_DEPRECATION_WARNINGS
2294 st->codec->time_base = av_inv_q(st->avg_frame_rate);
2295 FF_ENABLE_DEPRECATION_WARNINGS
2297 /* adjust for per frame dur in counter mode */
2298 if (tmcd_ctx->tmcd_flags & 0x0008) {
2299 int timescale = AV_RB32(st->codecpar->extradata + 8);
2300 int framedur = AV_RB32(st->codecpar->extradata + 12);
2301 st->avg_frame_rate.num *= timescale;
2302 st->avg_frame_rate.den *= framedur;
2303 #if FF_API_LAVF_AVCTX
2304 FF_DISABLE_DEPRECATION_WARNINGS
2305 st->codec->time_base.den *= timescale;
2306 st->codec->time_base.num *= framedur;
2307 FF_ENABLE_DEPRECATION_WARNINGS
2311 uint32_t len = AV_RB32(st->codecpar->extradata + 18); /* name atom length */
2312 uint32_t format = AV_RB32(st->codecpar->extradata + 22);
2313 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
2314 uint16_t str_size = AV_RB16(st->codecpar->extradata + 26); /* string length */
2315 if (str_size > 0 && size >= (int)str_size + 26) {
2316 char *reel_name = av_malloc(str_size + 1);
2318 return AVERROR(ENOMEM);
2319 memcpy(reel_name, st->codecpar->extradata + 30, str_size);
2320 reel_name[str_size] = 0; /* Add null terminator */
2321 /* don't add reel_name if emtpy string */
2322 if (*reel_name == 0) {
2325 av_dict_set(&st->metadata, "reel_name", reel_name, AV_DICT_DONT_STRDUP_VAL);
2332 /* other codec type, just skip (rtp, mp4s ...) */
2333 avio_skip(pb, size);
2338 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
2339 AVStream *st, MOVStreamContext *sc)
2341 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
2342 !st->codecpar->sample_rate && sc->time_scale > 1)
2343 st->codecpar->sample_rate = sc->time_scale;
2345 /* special codec parameters handling */
2346 switch (st->codecpar->codec_id) {
2347 #if CONFIG_DV_DEMUXER
2348 case AV_CODEC_ID_DVAUDIO:
2349 c->dv_fctx = avformat_alloc_context();
2351 av_log(c->fc, AV_LOG_ERROR, "dv demux context alloc error\n");
2352 return AVERROR(ENOMEM);
2354 c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
2356 av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
2357 return AVERROR(ENOMEM);
2359 sc->dv_audio_container = 1;
2360 st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
2363 /* no ifdef since parameters are always those */
2364 case AV_CODEC_ID_QCELP:
2365 st->codecpar->channels = 1;
2366 // force sample rate for qcelp when not stored in mov
2367 if (st->codecpar->codec_tag != MKTAG('Q','c','l','p'))
2368 st->codecpar->sample_rate = 8000;
2369 // FIXME: Why is the following needed for some files?
2370 sc->samples_per_frame = 160;
2371 if (!sc->bytes_per_frame)
2372 sc->bytes_per_frame = 35;
2374 case AV_CODEC_ID_AMR_NB:
2375 st->codecpar->channels = 1;
2376 /* force sample rate for amr, stsd in 3gp does not store sample rate */
2377 st->codecpar->sample_rate = 8000;
2379 case AV_CODEC_ID_AMR_WB:
2380 st->codecpar->channels = 1;
2381 st->codecpar->sample_rate = 16000;
2383 case AV_CODEC_ID_MP2:
2384 case AV_CODEC_ID_MP3:
2385 /* force type after stsd for m1a hdlr */
2386 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
2388 case AV_CODEC_ID_GSM:
2389 case AV_CODEC_ID_ADPCM_MS:
2390 case AV_CODEC_ID_ADPCM_IMA_WAV:
2391 case AV_CODEC_ID_ILBC:
2392 case AV_CODEC_ID_MACE3:
2393 case AV_CODEC_ID_MACE6:
2394 case AV_CODEC_ID_QDM2:
2395 st->codecpar->block_align = sc->bytes_per_frame;
2397 case AV_CODEC_ID_ALAC:
2398 if (st->codecpar->extradata_size == 36) {
2399 st->codecpar->channels = AV_RB8 (st->codecpar->extradata + 21);
2400 st->codecpar->sample_rate = AV_RB32(st->codecpar->extradata + 32);
2403 case AV_CODEC_ID_AC3:
2404 case AV_CODEC_ID_EAC3:
2405 case AV_CODEC_ID_MPEG1VIDEO:
2406 case AV_CODEC_ID_VC1:
2407 case AV_CODEC_ID_VP8:
2408 case AV_CODEC_ID_VP9:
2409 st->need_parsing = AVSTREAM_PARSE_FULL;
2417 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
2418 int codec_tag, int format,
2421 int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
2424 (codec_tag != format &&
2425 // AVID 1:1 samples with differing data format and codec tag exist
2426 (codec_tag != AV_RL32("AV1x") || format != AV_RL32("AVup")) &&
2427 // prores is allowed to have differing data format and codec tag
2428 codec_tag != AV_RL32("apcn") && codec_tag != AV_RL32("apch") &&
2430 codec_tag != AV_RL32("dvpp") && codec_tag != AV_RL32("dvcp") &&
2431 (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
2432 : codec_tag != MKTAG('j','p','e','g')))) {
2433 /* Multiple fourcc, we skip JPEG. This is not correct, we should
2434 * export it as a separate AVStream but this needs a few changes
2435 * in the MOV demuxer, patch welcome. */
2437 av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
2438 avio_skip(pb, size);
2445 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
2448 MOVStreamContext *sc;
2449 int pseudo_stream_id;
2451 av_assert0 (c->fc->nb_streams >= 1);
2452 st = c->fc->streams[c->fc->nb_streams-1];
2455 for (pseudo_stream_id = 0;
2456 pseudo_stream_id < entries && !pb->eof_reached;
2457 pseudo_stream_id++) {
2458 //Parsing Sample description table
2460 int ret, dref_id = 1;
2461 MOVAtom a = { AV_RL32("stsd") };
2462 int64_t start_pos = avio_tell(pb);
2463 int64_t size = avio_rb32(pb); /* size */
2464 uint32_t format = avio_rl32(pb); /* data format */
2467 avio_rb32(pb); /* reserved */
2468 avio_rb16(pb); /* reserved */
2469 dref_id = avio_rb16(pb);
2470 } else if (size <= 7) {
2471 av_log(c->fc, AV_LOG_ERROR,
2472 "invalid size %"PRId64" in stsd\n", size);
2473 return AVERROR_INVALIDDATA;
2476 if (mov_skip_multiple_stsd(c, pb, st->codecpar->codec_tag, format,
2477 size - (avio_tell(pb) - start_pos))) {
2482 sc->pseudo_stream_id = st->codecpar->codec_tag ? -1 : pseudo_stream_id;
2483 sc->dref_id= dref_id;
2484 sc->format = format;
2486 id = mov_codec_id(st, format);
2488 av_log(c->fc, AV_LOG_TRACE,
2489 "size=%"PRId64" 4CC=%s codec_type=%d\n", size,
2490 av_fourcc2str(format), st->codecpar->codec_type);
2492 if (st->codecpar->codec_type==AVMEDIA_TYPE_VIDEO) {
2493 st->codecpar->codec_id = id;
2494 mov_parse_stsd_video(c, pb, st, sc);
2495 } else if (st->codecpar->codec_type==AVMEDIA_TYPE_AUDIO) {
2496 st->codecpar->codec_id = id;
2497 mov_parse_stsd_audio(c, pb, st, sc);
2498 if (st->codecpar->sample_rate < 0) {
2499 av_log(c->fc, AV_LOG_ERROR, "Invalid sample rate %d\n", st->codecpar->sample_rate);
2500 return AVERROR_INVALIDDATA;
2502 } else if (st->codecpar->codec_type==AVMEDIA_TYPE_SUBTITLE){
2503 st->codecpar->codec_id = id;
2504 mov_parse_stsd_subtitle(c, pb, st, sc,
2505 size - (avio_tell(pb) - start_pos));
2507 ret = mov_parse_stsd_data(c, pb, st, sc,
2508 size - (avio_tell(pb) - start_pos));
2512 /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
2513 a.size = size - (avio_tell(pb) - start_pos);
2515 if ((ret = mov_read_default(c, pb, a)) < 0)
2517 } else if (a.size > 0)
2518 avio_skip(pb, a.size);
2520 if (sc->extradata && st->codecpar->extradata) {
2521 int extra_size = st->codecpar->extradata_size;
2523 /* Move the current stream extradata to the stream context one. */
2524 sc->extradata_size[pseudo_stream_id] = extra_size;
2525 sc->extradata[pseudo_stream_id] = av_malloc(extra_size + AV_INPUT_BUFFER_PADDING_SIZE);
2526 if (!sc->extradata[pseudo_stream_id])
2527 return AVERROR(ENOMEM);
2528 memcpy(sc->extradata[pseudo_stream_id], st->codecpar->extradata, extra_size);
2529 av_freep(&st->codecpar->extradata);
2530 st->codecpar->extradata_size = 0;
2535 if (pb->eof_reached) {
2536 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSD atom\n");
2543 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2546 MOVStreamContext *sc;
2549 if (c->fc->nb_streams < 1)
2551 st = c->fc->streams[c->fc->nb_streams - 1];
2554 avio_r8(pb); /* version */
2555 avio_rb24(pb); /* flags */
2556 entries = avio_rb32(pb);
2559 av_log(c->fc, AV_LOG_ERROR, "invalid STSD entries %d\n", entries);
2560 return AVERROR_INVALIDDATA;
2563 if (sc->extradata) {
2564 av_log(c->fc, AV_LOG_ERROR,
2565 "Duplicate stsd found in this track.\n");
2566 return AVERROR_INVALIDDATA;
2569 /* Prepare space for hosting multiple extradata. */
2570 sc->extradata = av_mallocz_array(entries, sizeof(*sc->extradata));
2572 return AVERROR(ENOMEM);
2574 sc->extradata_size = av_mallocz_array(entries, sizeof(*sc->extradata_size));
2575 if (!sc->extradata_size) {
2576 ret = AVERROR(ENOMEM);
2580 ret = ff_mov_read_stsd_entries(c, pb, entries);
2584 /* Restore back the primary extradata. */
2585 av_freep(&st->codecpar->extradata);
2586 st->codecpar->extradata_size = sc->extradata_size[0];
2587 if (sc->extradata_size[0]) {
2588 st->codecpar->extradata = av_mallocz(sc->extradata_size[0] + AV_INPUT_BUFFER_PADDING_SIZE);
2589 if (!st->codecpar->extradata)
2590 return AVERROR(ENOMEM);
2591 memcpy(st->codecpar->extradata, sc->extradata[0], sc->extradata_size[0]);
2594 return mov_finalize_stsd_codec(c, pb, st, sc);
2596 if (sc->extradata) {
2598 for (j = 0; j < sc->stsd_count; j++)
2599 av_freep(&sc->extradata[j]);
2602 av_freep(&sc->extradata);
2603 av_freep(&sc->extradata_size);
2607 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2610 MOVStreamContext *sc;
2611 unsigned int i, entries;
2613 if (c->fc->nb_streams < 1)
2615 st = c->fc->streams[c->fc->nb_streams-1];
2618 avio_r8(pb); /* version */
2619 avio_rb24(pb); /* flags */
2621 entries = avio_rb32(pb);
2622 if ((uint64_t)entries * 12 + 4 > atom.size)
2623 return AVERROR_INVALIDDATA;
2625 av_log(c->fc, AV_LOG_TRACE, "track[%u].stsc.entries = %u\n", c->fc->nb_streams - 1, entries);
2630 av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
2631 av_free(sc->stsc_data);
2633 sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
2635 return AVERROR(ENOMEM);
2637 for (i = 0; i < entries && !pb->eof_reached; i++) {
2638 sc->stsc_data[i].first = avio_rb32(pb);
2639 sc->stsc_data[i].count = avio_rb32(pb);
2640 sc->stsc_data[i].id = avio_rb32(pb);
2644 for (i = sc->stsc_count - 1; i < UINT_MAX; i--) {
2645 if ((i+1 < sc->stsc_count && sc->stsc_data[i].first >= sc->stsc_data[i+1].first) ||
2646 (i > 0 && sc->stsc_data[i].first <= sc->stsc_data[i-1].first) ||
2647 sc->stsc_data[i].first < 1 ||
2648 sc->stsc_data[i].count < 1 ||
2649 sc->stsc_data[i].id < 1) {
2650 av_log(c->fc, AV_LOG_WARNING, "STSC entry %d is invalid (first=%d count=%d id=%d)\n", i, sc->stsc_data[i].first, sc->stsc_data[i].count, sc->stsc_data[i].id);
2651 if (i+1 >= sc->stsc_count || sc->stsc_data[i+1].first < 2)
2652 return AVERROR_INVALIDDATA;
2653 // We replace this entry by the next valid
2654 sc->stsc_data[i].first = sc->stsc_data[i+1].first - 1;
2655 sc->stsc_data[i].count = sc->stsc_data[i+1].count;
2656 sc->stsc_data[i].id = sc->stsc_data[i+1].id;
2660 if (pb->eof_reached) {
2661 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSC atom\n");
2668 static inline int mov_stsc_index_valid(unsigned int index, unsigned int count)
2670 return index < count - 1;
2673 /* Compute the samples value for the stsc entry at the given index. */
2674 static inline int64_t mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index)
2678 if (mov_stsc_index_valid(index, sc->stsc_count))
2679 chunk_count = sc->stsc_data[index + 1].first - sc->stsc_data[index].first;
2681 chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1);
2683 return sc->stsc_data[index].count * (int64_t)chunk_count;
2686 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2689 MOVStreamContext *sc;
2690 unsigned i, entries;
2692 if (c->fc->nb_streams < 1)
2694 st = c->fc->streams[c->fc->nb_streams-1];
2697 avio_rb32(pb); // version + flags
2699 entries = avio_rb32(pb);
2701 av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
2702 av_free(sc->stps_data);
2704 sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
2706 return AVERROR(ENOMEM);
2708 for (i = 0; i < entries && !pb->eof_reached; i++) {
2709 sc->stps_data[i] = avio_rb32(pb);
2714 if (pb->eof_reached) {
2715 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STPS atom\n");
2722 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2725 MOVStreamContext *sc;
2726 unsigned int i, entries;
2728 if (c->fc->nb_streams < 1)
2730 st = c->fc->streams[c->fc->nb_streams-1];
2733 avio_r8(pb); /* version */
2734 avio_rb24(pb); /* flags */
2736 entries = avio_rb32(pb);
2738 av_log(c->fc, AV_LOG_TRACE, "keyframe_count = %u\n", entries);
2742 sc->keyframe_absent = 1;
2743 if (!st->need_parsing && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
2744 st->need_parsing = AVSTREAM_PARSE_HEADERS;
2748 av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
2749 if (entries >= UINT_MAX / sizeof(int))
2750 return AVERROR_INVALIDDATA;
2751 av_freep(&sc->keyframes);
2752 sc->keyframe_count = 0;
2753 sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
2755 return AVERROR(ENOMEM);
2757 for (i = 0; i < entries && !pb->eof_reached; i++) {
2758 sc->keyframes[i] = avio_rb32(pb);
2761 sc->keyframe_count = i;
2763 if (pb->eof_reached) {
2764 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSS atom\n");
2771 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2774 MOVStreamContext *sc;
2775 unsigned int i, entries, sample_size, field_size, num_bytes;
2780 if (c->fc->nb_streams < 1)
2782 st = c->fc->streams[c->fc->nb_streams-1];
2785 avio_r8(pb); /* version */
2786 avio_rb24(pb); /* flags */
2788 if (atom.type == MKTAG('s','t','s','z')) {
2789 sample_size = avio_rb32(pb);
2790 if (!sc->sample_size) /* do not overwrite value computed in stsd */
2791 sc->sample_size = sample_size;
2792 sc->stsz_sample_size = sample_size;
2796 avio_rb24(pb); /* reserved */
2797 field_size = avio_r8(pb);
2799 entries = avio_rb32(pb);
2801 av_log(c->fc, AV_LOG_TRACE, "sample_size = %u sample_count = %u\n", sc->sample_size, entries);
2803 sc->sample_count = entries;
2807 if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2808 av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %u\n", field_size);
2809 return AVERROR_INVALIDDATA;
2814 if (entries >= (UINT_MAX - 4) / field_size)
2815 return AVERROR_INVALIDDATA;
2816 if (sc->sample_sizes)
2817 av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2818 av_free(sc->sample_sizes);
2819 sc->sample_count = 0;
2820 sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2821 if (!sc->sample_sizes)
2822 return AVERROR(ENOMEM);
2824 num_bytes = (entries*field_size+4)>>3;
2826 buf = av_malloc(num_bytes+AV_INPUT_BUFFER_PADDING_SIZE);
2828 av_freep(&sc->sample_sizes);
2829 return AVERROR(ENOMEM);
2832 ret = ffio_read_size(pb, buf, num_bytes);
2834 av_freep(&sc->sample_sizes);
2839 init_get_bits(&gb, buf, 8*num_bytes);
2841 for (i = 0; i < entries && !pb->eof_reached; i++) {
2842 sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2843 sc->data_size += sc->sample_sizes[i];
2846 sc->sample_count = i;
2850 if (pb->eof_reached) {
2851 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STSZ atom\n");
2858 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2861 MOVStreamContext *sc;
2862 unsigned int i, entries, alloc_size = 0;
2864 int64_t total_sample_count=0;
2866 if (c->fc->nb_streams < 1)
2868 st = c->fc->streams[c->fc->nb_streams-1];
2871 avio_r8(pb); /* version */
2872 avio_rb24(pb); /* flags */
2873 entries = avio_rb32(pb);
2875 av_log(c->fc, AV_LOG_TRACE, "track[%u].stts.entries = %u\n",
2876 c->fc->nb_streams-1, entries);
2879 av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2880 av_freep(&sc->stts_data);
2882 if (entries >= INT_MAX / sizeof(*sc->stts_data))
2883 return AVERROR(ENOMEM);
2885 for (i = 0; i < entries && !pb->eof_reached; i++) {
2886 int sample_duration;
2887 unsigned int sample_count;
2888 unsigned int min_entries = FFMIN(FFMAX(i + 1, 1024 * 1024), entries);
2889 MOVStts *stts_data = av_fast_realloc(sc->stts_data, &alloc_size,
2890 min_entries * sizeof(*sc->stts_data));
2892 av_freep(&sc->stts_data);
2894 return AVERROR(ENOMEM);
2896 sc->stts_count = min_entries;
2897 sc->stts_data = stts_data;
2899 sample_count=avio_rb32(pb);
2900 sample_duration = avio_rb32(pb);
2902 sc->stts_data[i].count= sample_count;
2903 sc->stts_data[i].duration= sample_duration;
2905 av_log(c->fc, AV_LOG_TRACE, "sample_count=%d, sample_duration=%d\n",
2906 sample_count, sample_duration);
2910 && sample_count == 1
2911 && total_sample_count > 100
2912 && sample_duration/10 > duration / total_sample_count)
2913 sample_duration = duration / total_sample_count;
2914 duration+=(int64_t)sample_duration*(uint64_t)sample_count;
2915 total_sample_count+=sample_count;
2921 duration <= INT64_MAX - sc->duration_for_fps &&
2922 total_sample_count <= INT64_MAX - sc->nb_frames_for_fps
2924 sc->duration_for_fps += duration;
2925 sc->nb_frames_for_fps += total_sample_count;
2928 if (pb->eof_reached) {
2929 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted STTS atom\n");
2933 st->nb_frames= total_sample_count;
2935 st->duration= duration;
2936 sc->track_end = duration;
2940 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2943 if (duration == INT_MIN) {
2944 av_log(NULL, AV_LOG_WARNING, "mov_update_dts_shift(): dts_shift set to %d\n", INT_MAX);
2947 sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2951 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2954 MOVStreamContext *sc;
2955 unsigned int i, entries, ctts_count = 0;
2957 if (c->fc->nb_streams < 1)
2959 st = c->fc->streams[c->fc->nb_streams-1];
2962 avio_r8(pb); /* version */
2963 avio_rb24(pb); /* flags */
2964 entries = avio_rb32(pb);
2966 av_log(c->fc, AV_LOG_TRACE, "track[%u].ctts.entries = %u\n", c->fc->nb_streams - 1, entries);
2970 if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2971 return AVERROR_INVALIDDATA;
2972 av_freep(&sc->ctts_data);
2973 sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size, entries * sizeof(*sc->ctts_data));
2975 return AVERROR(ENOMEM);
2977 for (i = 0; i < entries && !pb->eof_reached; i++) {
2978 int count =avio_rb32(pb);
2979 int duration =avio_rb32(pb);
2982 av_log(c->fc, AV_LOG_TRACE,
2983 "ignoring CTTS entry with count=%d duration=%d\n",
2988 add_ctts_entry(&sc->ctts_data, &ctts_count, &sc->ctts_allocated_size,
2991 av_log(c->fc, AV_LOG_TRACE, "count=%d, duration=%d\n",
2994 if (FFNABS(duration) < -(1<<28) && i+2<entries) {
2995 av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2996 av_freep(&sc->ctts_data);
3002 mov_update_dts_shift(sc, duration);
3005 sc->ctts_count = ctts_count;
3007 if (pb->eof_reached) {
3008 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted CTTS atom\n");
3012 av_log(c->fc, AV_LOG_TRACE, "dts shift %d\n", sc->dts_shift);
3017 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3020 MOVStreamContext *sc;
3021 unsigned int i, entries;
3023 uint32_t grouping_type;
3025 if (c->fc->nb_streams < 1)
3027 st = c->fc->streams[c->fc->nb_streams-1];
3030 version = avio_r8(pb); /* version */
3031 avio_rb24(pb); /* flags */
3032 grouping_type = avio_rl32(pb);
3033 if (grouping_type != MKTAG( 'r','a','p',' '))
3034 return 0; /* only support 'rap ' grouping */
3036 avio_rb32(pb); /* grouping_type_parameter */
3038 entries = avio_rb32(pb);
3042 av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
3043 av_free(sc->rap_group);
3044 sc->rap_group_count = 0;
3045 sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
3047 return AVERROR(ENOMEM);
3049 for (i = 0; i < entries && !pb->eof_reached; i++) {
3050 sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
3051 sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
3054 sc->rap_group_count = i;
3056 if (pb->eof_reached) {
3057 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted SBGP atom\n");
3065 * Get ith edit list entry (media time, duration).
3067 static int get_edit_list_entry(MOVContext *mov,
3068 const MOVStreamContext *msc,
3069 unsigned int edit_list_index,
3070 int64_t *edit_list_media_time,
3071 int64_t *edit_list_duration,
3072 int64_t global_timescale)
3074 if (edit_list_index == msc->elst_count) {
3077 *edit_list_media_time = msc->elst_data[edit_list_index].time;
3078 *edit_list_duration = msc->elst_data[edit_list_index].duration;
3080 /* duration is in global timescale units;convert to msc timescale */
3081 if (global_timescale == 0) {
3082 avpriv_request_sample(mov->fc, "Support for mvhd.timescale = 0 with editlists");
3085 *edit_list_duration = av_rescale(*edit_list_duration, msc->time_scale,
3091 * Find the closest previous frame to the timestamp_pts, in e_old index
3092 * entries. Searching for just any frame / just key frames can be controlled by
3093 * last argument 'flag'.
3094 * Note that if ctts_data is not NULL, we will always search for a key frame
3095 * irrespective of the value of 'flag'. If we don't find any keyframe, we will
3096 * return the first frame of the video.
3098 * Here the timestamp_pts is considered to be a presentation timestamp and
3099 * the timestamp of index entries are considered to be decoding timestamps.
3101 * Returns 0 if successful in finding a frame, else returns -1.
3102 * Places the found index corresponding output arg.
3104 * If ctts_old is not NULL, then refines the searched entry by searching
3105 * backwards from the found timestamp, to find the frame with correct PTS.
3107 * Places the found ctts_index and ctts_sample in corresponding output args.
3109 static int find_prev_closest_index(AVStream *st,
3110 AVIndexEntry *e_old,
3114 int64_t timestamp_pts,
3117 int64_t* ctts_index,
3118 int64_t* ctts_sample)
3120 MOVStreamContext *msc = st->priv_data;
3121 AVIndexEntry *e_keep = st->index_entries;
3122 int nb_keep = st->nb_index_entries;
3124 int64_t index_ctts_count;
3128 // If dts_shift > 0, then all the index timestamps will have to be offset by
3129 // at least dts_shift amount to obtain PTS.
3130 // Hence we decrement the searched timestamp_pts by dts_shift to find the closest index element.
3131 if (msc->dts_shift > 0) {
3132 timestamp_pts -= msc->dts_shift;
3135 st->index_entries = e_old;
3136 st->nb_index_entries = nb_old;
3137 *index = av_index_search_timestamp(st, timestamp_pts, flag | AVSEEK_FLAG_BACKWARD);
3139 // Keep going backwards in the index entries until the timestamp is the same.
3141 for (i = *index; i > 0 && e_old[i].timestamp == e_old[i - 1].timestamp;
3143 if ((flag & AVSEEK_FLAG_ANY) ||
3144 (e_old[i - 1].flags & AVINDEX_KEYFRAME)) {
3150 // If we have CTTS then refine the search, by searching backwards over PTS
3151 // computed by adding corresponding CTTS durations to index timestamps.
3152 if (ctts_data && *index >= 0) {
3153 av_assert0(ctts_index);
3154 av_assert0(ctts_sample);
3155 // Find out the ctts_index for the found frame.
3158 for (index_ctts_count = 0; index_ctts_count < *index; index_ctts_count++) {
3159 if (*ctts_index < ctts_count) {
3161 if (ctts_data[*ctts_index].count == *ctts_sample) {
3168 while (*index >= 0 && (*ctts_index) >= 0 && (*ctts_index) < ctts_count) {
3169 // Find a "key frame" with PTS <= timestamp_pts (So that we can decode B-frames correctly).
3170 // No need to add dts_shift to the timestamp here becase timestamp_pts has already been
3171 // compensated by dts_shift above.
3172 if ((e_old[*index].timestamp + ctts_data[*ctts_index].duration) <= timestamp_pts &&
3173 (e_old[*index].flags & AVINDEX_KEYFRAME)) {
3178 if (*ctts_sample == 0) {
3180 if (*ctts_index >= 0)
3181 *ctts_sample = ctts_data[*ctts_index].count - 1;
3188 /* restore AVStream state*/
3189 st->index_entries = e_keep;
3190 st->nb_index_entries = nb_keep;
3191 return *index >= 0 ? 0 : -1;
3195 * Add index entry with the given values, to the end of st->index_entries.
3196 * Returns the new size st->index_entries if successful, else returns -1.
3198 * This function is similar to ff_add_index_entry in libavformat/utils.c
3199 * except that here we are always unconditionally adding an index entry to
3200 * the end, instead of searching the entries list and skipping the add if
3201 * there is an existing entry with the same timestamp.
3202 * This is needed because the mov_fix_index calls this func with the same
3203 * unincremented timestamp for successive discarded frames.
3205 static int64_t add_index_entry(AVStream *st, int64_t pos, int64_t timestamp,
3206 int size, int distance, int flags)
3208 AVIndexEntry *entries, *ie;
3210 const size_t min_size_needed = (st->nb_index_entries + 1) * sizeof(AVIndexEntry);
3212 // Double the allocation each time, to lower memory fragmentation.
3213 // Another difference from ff_add_index_entry function.
3214 const size_t requested_size =
3215 min_size_needed > st->index_entries_allocated_size ?
3216 FFMAX(min_size_needed, 2 * st->index_entries_allocated_size) :
3219 if((unsigned)st->nb_index_entries + 1 >= UINT_MAX / sizeof(AVIndexEntry))
3222 entries = av_fast_realloc(st->index_entries,
3223 &st->index_entries_allocated_size,
3228 st->index_entries= entries;
3230 index= st->nb_index_entries++;
3231 ie= &entries[index];
3234 ie->timestamp = timestamp;
3235 ie->min_distance= distance;
3242 * Rewrite timestamps of index entries in the range [end_index - frame_duration_buffer_size, end_index)
3243 * by subtracting end_ts successively by the amounts given in frame_duration_buffer.
3245 static void fix_index_entry_timestamps(AVStream* st, int end_index, int64_t end_ts,
3246 int64_t* frame_duration_buffer,
3247 int frame_duration_buffer_size) {
3249 av_assert0(end_index >= 0 && end_index <= st->nb_index_entries);
3250 for (i = 0; i < frame_duration_buffer_size; i++) {
3251 end_ts -= frame_duration_buffer[frame_duration_buffer_size - 1 - i];
3252 st->index_entries[end_index - 1 - i].timestamp = end_ts;
3257 * Append a new ctts entry to ctts_data.
3258 * Returns the new ctts_count if successful, else returns -1.
3260 static int64_t add_ctts_entry(MOVStts** ctts_data, unsigned int* ctts_count, unsigned int* allocated_size,
3261 int count, int duration)
3263 MOVStts *ctts_buf_new;
3264 const size_t min_size_needed = (*ctts_count + 1) * sizeof(MOVStts);
3265 const size_t requested_size =
3266 min_size_needed > *allocated_size ?
3267 FFMAX(min_size_needed, 2 * (*allocated_size)) :
3270 if((unsigned)(*ctts_count) >= UINT_MAX / sizeof(MOVStts) - 1)
3273 ctts_buf_new = av_fast_realloc(*ctts_data, allocated_size, requested_size);
3278 *ctts_data = ctts_buf_new;
3280 ctts_buf_new[*ctts_count].count = count;
3281 ctts_buf_new[*ctts_count].duration = duration;
3283 *ctts_count = (*ctts_count) + 1;
3287 #define MAX_REORDER_DELAY 16
3288 static void mov_estimate_video_delay(MOVContext *c, AVStream* st) {
3289 MOVStreamContext *msc = st->priv_data;
3292 int ctts_sample = 0;
3293 int64_t pts_buf[MAX_REORDER_DELAY + 1]; // Circular buffer to sort pts.
3296 int j, r, num_swaps;
3298 if (st->codecpar->video_delay <= 0 && msc->ctts_data &&
3299 st->codecpar->codec_id == AV_CODEC_ID_H264) {
3300 st->codecpar->video_delay = 0;
3301 for(ind = 0; ind < st->nb_index_entries && ctts_ind < msc->ctts_count; ++ind) {
3302 if (buf_size == (MAX_REORDER_DELAY + 1)) {
3303 // If circular buffer is full, then move the first element forward.
3304 buf_start = (buf_start + 1) % buf_size;
3309 // Point j to the last elem of the buffer and insert the current pts there.
3310 j = (buf_start + buf_size - 1) % buf_size;
3311 pts_buf[j] = st->index_entries[ind].timestamp + msc->ctts_data[ctts_ind].duration;
3313 // The timestamps that are already in the sorted buffer, and are greater than the
3314 // current pts, are exactly the timestamps that need to be buffered to output PTS
3315 // in correct sorted order.
3316 // Hence the video delay (which is the buffer size used to sort DTS and output PTS),
3317 // can be computed as the maximum no. of swaps any particular timestamp needs to
3318 // go through, to keep this buffer in sorted order.
3320 while (j != buf_start) {
3321 r = (j - 1 + buf_size) % buf_size;
3322 if (pts_buf[j] < pts_buf[r]) {
3323 FFSWAP(int64_t, pts_buf[j], pts_buf[r]);
3328 st->codecpar->video_delay = FFMAX(st->codecpar->video_delay, num_swaps);
3331 if (ctts_sample == msc->ctts_data[ctts_ind].count) {
3336 av_log(c->fc, AV_LOG_DEBUG, "Setting codecpar->delay to %d for stream st: %d\n",
3337 st->codecpar->video_delay, st->index);
3341 static void mov_current_sample_inc(MOVStreamContext *sc)
3343 sc->current_sample++;
3344 sc->current_index++;
3345 if (sc->index_ranges &&
3346 sc->current_index >= sc->current_index_range->end &&
3347 sc->current_index_range->end) {
3348 sc->current_index_range++;
3349 sc->current_index = sc->current_index_range->start;
3353 static void mov_current_sample_dec(MOVStreamContext *sc)
3355 sc->current_sample--;
3356 sc->current_index--;
3357 if (sc->index_ranges &&
3358 sc->current_index < sc->current_index_range->start &&
3359 sc->current_index_range > sc->index_ranges) {
3360 sc->current_index_range--;
3361 sc->current_index = sc->current_index_range->end - 1;
3365 static void mov_current_sample_set(MOVStreamContext *sc, int current_sample)
3369 sc->current_sample = current_sample;
3370 sc->current_index = current_sample;
3371 if (!sc->index_ranges) {
3375 for (sc->current_index_range = sc->index_ranges;
3376 sc->current_index_range->end;
3377 sc->current_index_range++) {
3378 range_size = sc->current_index_range->end - sc->current_index_range->start;
3379 if (range_size > current_sample) {
3380 sc->current_index = sc->current_index_range->start + current_sample;
3383 current_sample -= range_size;
3388 * Fix st->index_entries, so that it contains only the entries (and the entries
3389 * which are needed to decode them) that fall in the edit list time ranges.
3390 * Also fixes the timestamps of the index entries to match the timeline
3391 * specified the edit lists.
3393 static void mov_fix_index(MOVContext *mov, AVStream *st)
3395 MOVStreamContext *msc = st->priv_data;
3396 AVIndexEntry *e_old = st->index_entries;
3397 int nb_old = st->nb_index_entries;
3398 const AVIndexEntry *e_old_end = e_old + nb_old;
3399 const AVIndexEntry *current = NULL;
3400 MOVStts *ctts_data_old = msc->ctts_data;
3401 int64_t ctts_index_old = 0;
3402 int64_t ctts_sample_old = 0;
3403 int64_t ctts_count_old = msc->ctts_count;
3404 int64_t edit_list_media_time = 0;
3405 int64_t edit_list_duration = 0;
3406 int64_t frame_duration = 0;
3407 int64_t edit_list_dts_counter = 0;
3408 int64_t edit_list_dts_entry_end = 0;
3409 int64_t edit_list_start_ctts_sample = 0;
3411 int64_t curr_ctts = 0;
3412 int64_t empty_edits_sum_duration = 0;
3413 int64_t edit_list_index = 0;
3416 int64_t start_dts = 0;
3417 int64_t edit_list_start_encountered = 0;
3418 int64_t search_timestamp = 0;
3419 int64_t* frame_duration_buffer = NULL;
3420 int num_discarded_begin = 0;
3421 int first_non_zero_audio_edit = -1;
3422 int packet_skip_samples = 0;
3423 MOVIndexRange *current_index_range;
3425 int found_keyframe_after_edit = 0;
3427 if (!msc->elst_data || msc->elst_count <= 0 || nb_old <= 0) {
3431 // allocate the index ranges array
3432 msc->index_ranges = av_malloc((msc->elst_count + 1) * sizeof(msc->index_ranges[0]));
3433 if (!msc->index_ranges) {
3434 av_log(mov->fc, AV_LOG_ERROR, "Cannot allocate index ranges buffer\n");
3437 msc->current_index_range = msc->index_ranges;
3438 current_index_range = msc->index_ranges - 1;
3440 // Clean AVStream from traces of old index
3441 st->index_entries = NULL;
3442 st->index_entries_allocated_size = 0;
3443 st->nb_index_entries = 0;
3445 // Clean ctts fields of MOVStreamContext
3446 msc->ctts_data = NULL;
3447 msc->ctts_count = 0;
3448 msc->ctts_index = 0;
3449 msc->ctts_sample = 0;
3450 msc->ctts_allocated_size = 0;
3452 // Reinitialize min_corrected_pts so that it can be computed again.
3453 msc->min_corrected_pts = -1;
3455 // If the dts_shift is positive (in case of negative ctts values in mov),
3456 // then negate the DTS by dts_shift
3457 if (msc->dts_shift > 0) {
3458 edit_list_dts_entry_end -= msc->dts_shift;
3459 av_log(mov->fc, AV_LOG_DEBUG, "Shifting DTS by %d because of negative CTTS.\n", msc->dts_shift);
3462 start_dts = edit_list_dts_entry_end;
3464 while (get_edit_list_entry(mov, msc, edit_list_index, &edit_list_media_time,
3465 &edit_list_duration, mov->time_scale)) {
3466 av_log(mov->fc, AV_LOG_DEBUG, "Processing st: %d, edit list %"PRId64" - media time: %"PRId64", duration: %"PRId64"\n",
3467 st->index, edit_list_index, edit_list_media_time, edit_list_duration);
3469 edit_list_dts_counter = edit_list_dts_entry_end;
3470 edit_list_dts_entry_end += edit_list_duration;
3471 num_discarded_begin = 0;
3472 if (edit_list_media_time == -1) {
3473 empty_edits_sum_duration += edit_list_duration;
3477 // If we encounter a non-negative edit list reset the skip_samples/start_pad fields and set them
3478 // according to the edit list below.
3479 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3480 if (first_non_zero_audio_edit < 0) {
3481 first_non_zero_audio_edit = 1;
3483 first_non_zero_audio_edit = 0;
3486 if (first_non_zero_audio_edit > 0)
3487 st->skip_samples = msc->start_pad = 0;
3490 // While reordering frame index according to edit list we must handle properly
3491 // the scenario when edit list entry starts from none key frame.
3492 // We find closest previous key frame and preserve it and consequent frames in index.
3493 // All frames which are outside edit list entry time boundaries will be dropped after decoding.
3494 search_timestamp = edit_list_media_time;
3495 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
3496 // Audio decoders like AAC need need a decoder delay samples previous to the current sample,
3497 // to correctly decode this frame. Hence for audio we seek to a frame 1 sec. before the
3498 // edit_list_media_time to cover the decoder delay.
3499 search_timestamp = FFMAX(search_timestamp - msc->time_scale, e_old[0].timestamp);
3502 if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, 0,
3503 &index, &ctts_index_old, &ctts_sample_old) < 0) {
3504 av_log(mov->fc, AV_LOG_WARNING,
3505 "st: %d edit list: %"PRId64" Missing key frame while searching for timestamp: %"PRId64"\n",
3506 st->index, edit_list_index, search_timestamp);
3507 if (find_prev_closest_index(st, e_old, nb_old, ctts_data_old, ctts_count_old, search_timestamp, AVSEEK_FLAG_ANY,
3508 &index, &ctts_index_old, &ctts_sample_old) < 0) {
3509 av_log(mov->fc, AV_LOG_WARNING,
3510 "st: %d edit list %"PRId64" Cannot find an index entry before timestamp: %"PRId64".\n",
3511 st->index, edit_list_index, search_timestamp);
3514 ctts_sample_old = 0;
3517 current = e_old + index;
3518 edit_list_start_ctts_sample = ctts_sample_old;
3520 // Iterate over index and arrange it according to edit list
3521 edit_list_start_encountered = 0;
3522 found_keyframe_after_edit = 0;
3523 for (; current < e_old_end; current++, index++) {
3524 // check if frame outside edit list mark it for discard
3525 frame_duration = (current + 1 < e_old_end) ?
3526 ((current + 1)->timestamp - current->timestamp) : edit_list_duration;
3528 flags = current->flags;
3530 // frames (pts) before or after edit list
3531 curr_cts = current->timestamp + msc->dts_shift;
3534 if (ctts_data_old && ctts_index_old < ctts_count_old) {
3535 curr_ctts = ctts_data_old[ctts_index_old].duration;
3536 av_log(mov->fc, AV_LOG_DEBUG, "stts: %"PRId64" ctts: %"PRId64", ctts_index: %"PRId64", ctts_count: %"PRId64"\n",
3537 curr_cts, curr_ctts, ctts_index_old, ctts_count_old);
3538 curr_cts += curr_ctts;
3540 if (ctts_sample_old == ctts_data_old[ctts_index_old].count) {
3541 if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3542 &msc->ctts_allocated_size,
3543 ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3544 ctts_data_old[ctts_index_old].duration) == -1) {
3545 av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3547 ctts_data_old[ctts_index_old].count - edit_list_start_ctts_sample,
3548 ctts_data_old[ctts_index_old].duration);
3552 ctts_sample_old = 0;
3553 edit_list_start_ctts_sample = 0;
3557 if (curr_cts < edit_list_media_time || curr_cts >= (edit_list_duration + edit_list_media_time)) {
3558 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id != AV_CODEC_ID_VORBIS &&
3559 curr_cts < edit_list_media_time && curr_cts + frame_duration > edit_list_media_time &&
3560 first_non_zero_audio_edit > 0) {
3561 packet_skip_samples = edit_list_media_time - curr_cts;
3562 st->skip_samples += packet_skip_samples;
3564 // Shift the index entry timestamp by packet_skip_samples to be correct.
3565 edit_list_dts_counter -= packet_skip_samples;
3566 if (edit_list_start_encountered == 0) {
3567 edit_list_start_encountered = 1;
3568 // Make timestamps strictly monotonically increasing for audio, by rewriting timestamps for
3569 // discarded packets.
3570 if (frame_duration_buffer) {
3571 fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3572 frame_duration_buffer, num_discarded_begin);
3573 av_freep(&frame_duration_buffer);
3577 av_log(mov->fc, AV_LOG_DEBUG, "skip %d audio samples from curr_cts: %"PRId64"\n", packet_skip_samples, curr_cts);
3579 flags |= AVINDEX_DISCARD_FRAME;
3580 av_log(mov->fc, AV_LOG_DEBUG, "drop a frame at curr_cts: %"PRId64" @ %"PRId64"\n", curr_cts, index);
3582 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && edit_list_start_encountered == 0) {
3583 num_discarded_begin++;
3584 frame_duration_buffer = av_realloc(frame_duration_buffer,
3585 num_discarded_begin * sizeof(int64_t));
3586 if (!frame_duration_buffer) {
3587 av_log(mov->fc, AV_LOG_ERROR, "Cannot reallocate frame duration buffer\n");
3590 frame_duration_buffer[num_discarded_begin - 1] = frame_duration;
3592 // Increment skip_samples for the first non-zero audio edit list
3593 if (first_non_zero_audio_edit > 0 && st->codecpar->codec_id != AV_CODEC_ID_VORBIS) {
3594 st->skip_samples += frame_duration;
3599 if (msc->min_corrected_pts < 0) {
3600 msc->min_corrected_pts = edit_list_dts_counter + curr_ctts + msc->dts_shift;
3602 msc->min_corrected_pts = FFMIN(msc->min_corrected_pts, edit_list_dts_counter + curr_ctts + msc->dts_shift);
3604 if (edit_list_start_encountered == 0) {
3605 edit_list_start_encountered = 1;
3606 // Make timestamps strictly monotonically increasing for audio, by rewriting timestamps for
3607 // discarded packets.
3608 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && frame_duration_buffer) {
3609 fix_index_entry_timestamps(st, st->nb_index_entries, edit_list_dts_counter,
3610 frame_duration_buffer, num_discarded_begin);
3611 av_freep(&frame_duration_buffer);
3616 if (add_index_entry(st, current->pos, edit_list_dts_counter, current->size,
3617 current->min_distance, flags) == -1) {
3618 av_log(mov->fc, AV_LOG_ERROR, "Cannot add index entry\n");
3622 // Update the index ranges array
3623 if (current_index_range < msc->index_ranges || index != current_index_range->end) {
3624 current_index_range++;
3625 current_index_range->start = index;
3627 current_index_range->end = index + 1;
3629 // Only start incrementing DTS in frame_duration amounts, when we encounter a frame in edit list.
3630 if (edit_list_start_encountered > 0) {
3631 edit_list_dts_counter = edit_list_dts_counter + frame_duration;
3634 // Break when found first key frame after edit entry completion
3635 if ((curr_cts + frame_duration >= (edit_list_duration + edit_list_media_time)) &&
3636 ((flags & AVINDEX_KEYFRAME) || ((st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)))) {
3637 if (ctts_data_old) {
3638 // If we have CTTS and this is the first keyframe after edit elist,
3639 // wait for one more, because there might be trailing B-frames after this I-frame
3640 // that do belong to the edit.
3641 if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO && found_keyframe_after_edit == 0) {
3642 found_keyframe_after_edit = 1;
3645 if (ctts_sample_old != 0) {
3646 if (add_ctts_entry(&msc->ctts_data, &msc->ctts_count,
3647 &msc->ctts_allocated_size,
3648 ctts_sample_old - edit_list_start_ctts_sample,
3649 ctts_data_old[ctts_index_old].duration) == -1) {
3650 av_log(mov->fc, AV_LOG_ERROR, "Cannot add CTTS entry %"PRId64" - {%"PRId64", %d}\n",
3651 ctts_index_old, ctts_sample_old - edit_list_start_ctts_sample,
3652 ctts_data_old[ctts_index_old].duration);
3661 // If there are empty edits, then msc->min_corrected_pts might be positive
3662 // intentionally. So we subtract the sum duration of emtpy edits here.
3663 msc->min_corrected_pts -= empty_edits_sum_duration;
3665 // If the minimum pts turns out to be greater than zero after fixing the index, then we subtract the
3666 // dts by that amount to make the first pts zero.
3667 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && msc->min_corrected_pts > 0) {
3668 av_log(mov->fc, AV_LOG_DEBUG, "Offset DTS by %"PRId64" to make first pts zero.\n", msc->min_corrected_pts);
3669 for (i = 0; i < st->nb_index_entries; ++i) {
3670 st->index_entries[i].timestamp -= msc->min_corrected_pts;
3674 // Update av stream length
3675 st->duration = edit_list_dts_entry_end - start_dts;
3676 msc->start_pad = st->skip_samples;
3678 // Free the old index and the old CTTS structures
3680 av_free(ctts_data_old);
3681 av_freep(&frame_duration_buffer);
3683 // Null terminate the index ranges array
3684 current_index_range++;
3685 current_index_range->start = 0;
3686 current_index_range->end = 0;
3687 msc->current_index = msc->index_ranges[0].start;
3690 static void mov_build_index(MOVContext *mov, AVStream *st)
3692 MOVStreamContext *sc = st->priv_data;
3693 int64_t current_offset;
3694 int64_t current_dts = 0;
3695 unsigned int stts_index = 0;
3696 unsigned int stsc_index = 0;
3697 unsigned int stss_index = 0;
3698 unsigned int stps_index = 0;
3700 uint64_t stream_size = 0;
3701 MOVStts *ctts_data_old = sc->ctts_data;
3702 unsigned int ctts_count_old = sc->ctts_count;
3704 if (sc->elst_count) {
3705 int i, edit_start_index = 0, multiple_edits = 0;
3706 int64_t empty_duration = 0; // empty duration of the first edit list entry
3707 int64_t start_time = 0; // start time of the media
3709 for (i = 0; i < sc->elst_count; i++) {
3710 const MOVElst *e = &sc->elst_data[i];
3711 if (i == 0 && e->time == -1) {
3712 /* if empty, the first entry is the start time of the stream
3713 * relative to the presentation itself */
3714 empty_duration = e->duration;
3715 edit_start_index = 1;
3716 } else if (i == edit_start_index && e->time >= 0) {
3717 start_time = e->time;
3723 if (multiple_edits && !mov->advanced_editlist)
3724 av_log(mov->fc, AV_LOG_WARNING, "multiple edit list entries, "
3725 "Use -advanced_editlist to correctly decode otherwise "
3726 "a/v desync might occur\n");
3728 /* adjust first dts according to edit list */
3729 if ((empty_duration || start_time) && mov->time_scale > 0) {
3731 empty_duration = av_rescale(empty_duration, sc->time_scale, mov->time_scale);
3732 sc->time_offset = start_time - empty_duration;
3733 sc->min_corrected_pts = start_time;
3734 if (!mov->advanced_editlist)
3735 current_dts = -sc->time_offset;
3738 if (!multiple_edits && !mov->advanced_editlist &&
3739 st->codecpar->codec_id == AV_CODEC_ID_AAC && start_time > 0)
3740 sc->start_pad = start_time;
3743 /* only use old uncompressed audio chunk demuxing when stts specifies it */
3744 if (!(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO &&
3745 sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
3746 unsigned int current_sample = 0;
3747 unsigned int stts_sample = 0;
3748 unsigned int sample_size;
3749 unsigned int distance = 0;
3750 unsigned int rap_group_index = 0;
3751 unsigned int rap_group_sample = 0;
3752 int64_t last_dts = 0;
3753 int64_t dts_correction = 0;
3754 int rap_group_present = sc->rap_group_count && sc->rap_group;
3755 int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
3757 current_dts -= sc->dts_shift;
3758 last_dts = current_dts;
3760 if (!sc->sample_count || st->nb_index_entries)
3762 if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3764 if (av_reallocp_array(&st->index_entries,
3765 st->nb_index_entries + sc->sample_count,
3766 sizeof(*st->index_entries)) < 0) {
3767 st->nb_index_entries = 0;
3770 st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
3772 if (ctts_data_old) {
3773 // Expand ctts entries such that we have a 1-1 mapping with samples
3774 if (sc->sample_count >= UINT_MAX / sizeof(*sc->ctts_data))
3777 sc->ctts_allocated_size = 0;
3778 sc->ctts_data = av_fast_realloc(NULL, &sc->ctts_allocated_size,
3779 sc->sample_count * sizeof(*sc->ctts_data));
3780 if (!sc->ctts_data) {
3781 av_free(ctts_data_old);
3785 memset((uint8_t*)(sc->ctts_data), 0, sc->ctts_allocated_size);
3787 for (i = 0; i < ctts_count_old &&
3788 sc->ctts_count < sc->sample_count; i++)
3789 for (j = 0; j < ctts_data_old[i].count &&
3790 sc->ctts_count < sc->sample_count; j++)
3791 add_ctts_entry(&sc->ctts_data, &sc->ctts_count,
3792 &sc->ctts_allocated_size, 1,
3793 ctts_data_old[i].duration);
3794 av_free(ctts_data_old);
3797 for (i = 0; i < sc->chunk_count; i++) {
3798 int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
3799 current_offset = sc->chunk_offsets[i];
3800 while (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3801 i + 1 == sc->stsc_data[stsc_index + 1].first)
3804 if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
3805 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
3806 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
3807 sc->stsz_sample_size = sc->sample_size;
3809 if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
3810 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
3811 sc->stsz_sample_size = sc->sample_size;
3814 for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
3816 if (current_sample >= sc->sample_count) {
3817 av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
3821 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
3823 if (stss_index + 1 < sc->keyframe_count)
3825 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
3827 if (stps_index + 1 < sc->stps_count)
3830 if (rap_group_present && rap_group_index < sc->rap_group_count) {
3831 if (sc->rap_group[rap_group_index].index > 0)
3833 if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
3834 rap_group_sample = 0;
3838 if (sc->keyframe_absent
3840 && !rap_group_present
3841 && (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
3845 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
3846 if (sc->pseudo_stream_id == -1 ||
3847 sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
3849 if (sample_size > 0x3FFFFFFF) {
3850 av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", sample_size);
3853 e = &st->index_entries[st->nb_index_entries++];
3854 e->pos = current_offset;
3855 e->timestamp = current_dts;
3856 e->size = sample_size;
3857 e->min_distance = distance;
3858 e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
3859 av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %u, offset %"PRIx64", dts %"PRId64", "
3860 "size %u, distance %u, keyframe %d\n", st->index, current_sample,
3861 current_offset, current_dts, sample_size, distance, keyframe);
3862 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
3863 ff_rfps_add_frame(mov->fc, st, current_dts);
3866 current_offset += sample_size;
3867 stream_size += sample_size;
3869 /* A negative sample duration is invalid based on the spec,
3870 * but some samples need it to correct the DTS. */
3871 if (sc->stts_data[stts_index].duration < 0) {
3872 av_log(mov->fc, AV_LOG_WARNING,
3873 "Invalid SampleDelta %d in STTS, at %d st:%d\n",
3874 sc->stts_data[stts_index].duration, stts_index,
3876 dts_correction += sc->stts_data[stts_index].duration - 1;
3877 sc->stts_data[stts_index].duration = 1;
3879 current_dts += sc->stts_data[stts_index].duration;
3880 if (!dts_correction || current_dts + dts_correction > last_dts) {
3881 current_dts += dts_correction;
3884 /* Avoid creating non-monotonous DTS */
3885 dts_correction += current_dts - last_dts - 1;
3886 current_dts = last_dts + 1;
3888 last_dts = current_dts;
3892 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
3898 if (st->duration > 0)
3899 st->codecpar->bit_rate = stream_size*8*sc->time_scale/st->duration;
3901 unsigned chunk_samples, total = 0;
3903 // compute total chunk count
3904 for (i = 0; i < sc->stsc_count; i++) {
3905 unsigned count, chunk_count;
3907 chunk_samples = sc->stsc_data[i].count;
3908 if (i != sc->stsc_count - 1 &&
3909 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
3910 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
3914 if (sc->samples_per_frame >= 160) { // gsm
3915 count = chunk_samples / sc->samples_per_frame;
3916 } else if (sc->samples_per_frame > 1) {
3917 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
3918 count = (chunk_samples+samples-1) / samples;
3920 count = (chunk_samples+1023) / 1024;
3923 if (mov_stsc_index_valid(i, sc->stsc_count))
3924 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
3926 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
3927 total += chunk_count * count;
3930 av_log(mov->fc, AV_LOG_TRACE, "chunk count %u\n", total);
3931 if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
3933 if (av_reallocp_array(&st->index_entries,
3934 st->nb_index_entries + total,
3935 sizeof(*st->index_entries)) < 0) {
3936 st->nb_index_entries = 0;
3939 st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
3942 for (i = 0; i < sc->chunk_count; i++) {
3943 current_offset = sc->chunk_offsets[i];
3944 if (mov_stsc_index_valid(stsc_index, sc->stsc_count) &&
3945 i + 1 == sc->stsc_data[stsc_index + 1].first)
3947 chunk_samples = sc->stsc_data[stsc_index].count;
3949 while (chunk_samples > 0) {
3951 unsigned size, samples;
3953 if (sc->samples_per_frame > 1 && !sc->bytes_per_frame) {
3954 avpriv_request_sample(mov->fc,
3955 "Zero bytes per frame, but %d samples per frame",
3956 sc->samples_per_frame);
3960 if (sc->samples_per_frame >= 160) { // gsm
3961 samples = sc->samples_per_frame;
3962 size = sc->bytes_per_frame;
3964 if (sc->samples_per_frame > 1) {
3965 samples = FFMIN((1024 / sc->samples_per_frame)*
3966 sc->samples_per_frame, chunk_samples);
3967 size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
3969 samples = FFMIN(1024, chunk_samples);
3970 size = samples * sc->sample_size;
3974 if (st->nb_index_entries >= total) {
3975 av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %u\n", total);
3978 if (size > 0x3FFFFFFF) {
3979 av_log(mov->fc, AV_LOG_ERROR, "Sample size %u is too large\n", size);
3982 e = &st->index_entries[st->nb_index_entries++];
3983 e->pos = current_offset;
3984 e->timestamp = current_dts;
3986 e->min_distance = 0;
3987 e->flags = AVINDEX_KEYFRAME;
3988 av_log(mov->fc, AV_LOG_TRACE, "AVIndex stream %d, chunk %u, offset %"PRIx64", dts %"PRId64", "
3989 "size %u, duration %u\n", st->index, i, current_offset, current_dts,
3992 current_offset += size;
3993 current_dts += samples;
3994 chunk_samples -= samples;
3999 if (!mov->ignore_editlist && mov->advanced_editlist) {
4000 // Fix index according to edit lists.
4001 mov_fix_index(mov, st);
4004 mov_estimate_video_delay(mov, st);
4007 static int test_same_origin(const char *src, const char *ref) {
4017 av_url_split(src_proto, sizeof(src_proto), src_auth, sizeof(src_auth), src_host, sizeof(src_host), &src_port, NULL, 0, src);
4018 av_url_split(ref_proto, sizeof(ref_proto), ref_auth, sizeof(ref_auth), ref_host, sizeof(ref_host), &ref_port, NULL, 0, ref);
4020 if (strlen(src) == 0) {
4022 } else if (strlen(src_auth) + 1 >= sizeof(src_auth) ||
4023 strlen(ref_auth) + 1 >= sizeof(ref_auth) ||
4024 strlen(src_host) + 1 >= sizeof(src_host) ||
4025 strlen(ref_host) + 1 >= sizeof(ref_host)) {
4027 } else if (strcmp(src_proto, ref_proto) ||
4028 strcmp(src_auth, ref_auth) ||
4029 strcmp(src_host, ref_host) ||
4030 src_port != ref_port) {
4036 static int mov_open_dref(MOVContext *c, AVIOContext **pb, const char *src, MOVDref *ref)
4038 /* try relative path, we do not try the absolute because it can leak information about our
4039 system to an attacker */
4040 if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
4041 char filename[1025];
4042 const char *src_path;
4045 /* find a source dir */
4046 src_path = strrchr(src, '/');
4052 /* find a next level down to target */
4053 for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
4054 if (ref->path[l] == '/') {
4055 if (i == ref->nlvl_to - 1)
4061 /* compose filename if next level down to target was found */
4062 if (i == ref->nlvl_to - 1 && src_path - src < sizeof(filename)) {
4063 memcpy(filename, src, src_path - src);
4064 filename[src_path - src] = 0;
4066 for (i = 1; i < ref->nlvl_from; i++)
4067 av_strlcat(filename, "../", sizeof(filename));
4069 av_strlcat(filename, ref->path + l + 1, sizeof(filename));
4070 if (!c->use_absolute_path) {
4071 int same_origin = test_same_origin(src, filename);
4074 av_log(c->fc, AV_LOG_ERROR,
4075 "Reference with mismatching origin, %s not tried for security reasons, "
4076 "set demuxer option use_absolute_path to allow it anyway\n",
4078 return AVERROR(ENOENT);
4081 if(strstr(ref->path + l + 1, "..") ||
4082 strstr(ref->path + l + 1, ":") ||
4083 (ref->nlvl_from > 1 && same_origin < 0) ||
4084 (filename[0] == '/' && src_path == src))
4085 return AVERROR(ENOENT);
4088 if (strlen(filename) + 1 == sizeof(filename))
4089 return AVERROR(ENOENT);
4090 if (!c->fc->io_open(c->fc, pb, filename, AVIO_FLAG_READ, NULL))
4093 } else if (c->use_absolute_path) {
4094 av_log(c->fc, AV_LOG_WARNING, "Using absolute path on user request, "
4095 "this is a possible security issue\n");
4096 if (!c->fc->io_open(c->fc, pb, ref->path, AVIO_FLAG_READ, NULL))
4099 av_log(c->fc, AV_LOG_ERROR,
4100 "Absolute path %s not tried for security reasons, "
4101 "set demuxer option use_absolute_path to allow absolute paths\n",
4105 return AVERROR(ENOENT);
4108 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
4110 if (sc->time_scale <= 0) {
4111 av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
4112 sc->time_scale = c->time_scale;
4113 if (sc->time_scale <= 0)
4118 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4121 MOVStreamContext *sc;
4124 st = avformat_new_stream(c->fc, NULL);
4125 if (!st) return AVERROR(ENOMEM);
4126 st->id = c->fc->nb_streams;
4127 sc = av_mallocz(sizeof(MOVStreamContext));
4128 if (!sc) return AVERROR(ENOMEM);
4131 st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
4132 sc->ffindex = st->index;
4133 c->trak_index = st->index;
4135 if ((ret = mov_read_default(c, pb, atom)) < 0)
4141 if ((sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
4142 (!sc->sample_size && !sc->sample_count))) ||
4143 (!sc->chunk_count && sc->sample_count)) {
4144 av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
4148 if (sc->stsc_count && sc->stsc_data[ sc->stsc_count - 1 ].first > sc->chunk_count) {
4149 av_log(c->fc, AV_LOG_ERROR, "stream %d, contradictionary STSC and STCO\n",
4151 return AVERROR_INVALIDDATA;
4154 fix_timescale(c, sc);
4156 avpriv_set_pts_info(st, 64, 1, sc->time_scale);
4158 mov_build_index(c, st);
4160 if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
4161 MOVDref *dref = &sc->drefs[sc->dref_id - 1];
4162 if (c->enable_drefs) {
4163 if (mov_open_dref(c, &sc->pb, c->fc->url, dref) < 0)
4164 av_log(c->fc, AV_LOG_ERROR,
4165 "stream %d, error opening alias: path='%s', dir='%s', "
4166 "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
4167 st->index, dref->path, dref->dir, dref->filename,
4168 dref->volume, dref->nlvl_from, dref->nlvl_to);
4170 av_log(c->fc, AV_LOG_WARNING,
4171 "Skipped opening external track: "
4172 "stream %d, alias: path='%s', dir='%s', "
4173 "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d."
4174 "Set enable_drefs to allow this.\n",
4175 st->index, dref->path, dref->dir, dref->filename,
4176 dref->volume, dref->nlvl_from, dref->nlvl_to);
4180 sc->pb_is_copied = 1;
4183 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
4184 if (!st->sample_aspect_ratio.num && st->codecpar->width && st->codecpar->height &&
4185 sc->height && sc->width &&
4186 (st->codecpar->width != sc->width || st->codecpar->height != sc->height)) {
4187 st->sample_aspect_ratio = av_d2q(((double)st->codecpar->height * sc->width) /
4188 ((double)st->codecpar->width * sc->height), INT_MAX);
4191 #if FF_API_R_FRAME_RATE
4192 if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
4193 av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
4194 sc->time_scale, sc->stts_data[0].duration, INT_MAX);
4198 // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
4199 if (!st->codecpar->extradata_size && st->codecpar->codec_id == AV_CODEC_ID_H264 &&
4200 TAG_IS_AVCI(st->codecpar->codec_tag)) {
4201 ret = ff_generate_avci_extradata(st);
4206 switch (st->codecpar->codec_id) {
4207 #if CONFIG_H261_DECODER
4208 case AV_CODEC_ID_H261:
4210 #if CONFIG_H263_DECODER
4211 case AV_CODEC_ID_H263:
4213 #if CONFIG_MPEG4_DECODER
4214 case AV_CODEC_ID_MPEG4:
4216 st->codecpar->width = 0; /* let decoder init width/height */
4217 st->codecpar->height= 0;
4221 // If the duration of the mp3 packets is not constant, then they could need a parser
4222 if (st->codecpar->codec_id == AV_CODEC_ID_MP3
4223 && sc->stts_count > 3
4224 && sc->stts_count*10 > st->nb_frames
4225 && sc->time_scale == st->codecpar->sample_rate) {
4226 st->need_parsing = AVSTREAM_PARSE_FULL;
4228 /* Do not need those anymore. */
4229 av_freep(&sc->chunk_offsets);
4230 av_freep(&sc->sample_sizes);
4231 av_freep(&sc->keyframes);
4232 av_freep(&sc->stts_data);
4233 av_freep(&sc->stps_data);
4234 av_freep(&sc->elst_data);
4235 av_freep(&sc->rap_group);
4240 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4243 c->itunes_metadata = 1;
4244 ret = mov_read_default(c, pb, atom);
4245 c->itunes_metadata = 0;
4249 static int mov_read_keys(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4258 count = avio_rb32(pb);
4259 if (count > UINT_MAX / sizeof(*c->meta_keys) - 1) {
4260 av_log(c->fc, AV_LOG_ERROR,
4261 "The 'keys' atom with the invalid key count: %"PRIu32"\n", count);
4262 return AVERROR_INVALIDDATA;
4265 c->meta_keys_count = count + 1;
4266 c->meta_keys = av_mallocz(c->meta_keys_count * sizeof(*c->meta_keys));
4268 return AVERROR(ENOMEM);
4270 for (i = 1; i <= count; ++i) {
4271 uint32_t key_size = avio_rb32(pb);
4272 uint32_t type = avio_rl32(pb);
4274 av_log(c->fc, AV_LOG_ERROR,
4275 "The key# %"PRIu32" in meta has invalid size:"
4276 "%"PRIu32"\n", i, key_size);
4277 return AVERROR_INVALIDDATA;
4280 if (type != MKTAG('m','d','t','a')) {
4281 avio_skip(pb, key_size);
4283 c->meta_keys[i] = av_mallocz(key_size + 1);
4284 if (!c->meta_keys[i])
4285 return AVERROR(ENOMEM);
4286 avio_read(pb, c->meta_keys[i], key_size);
4292 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4294 int64_t end = avio_tell(pb) + atom.size;
4295 uint8_t *key = NULL, *val = NULL, *mean = NULL;
4299 MOVStreamContext *sc;
4301 if (c->fc->nb_streams < 1)
4303 st = c->fc->streams[c->fc->nb_streams-1];
4306 for (i = 0; i < 3; i++) {
4310 if (end - avio_tell(pb) <= 12)
4313 len = avio_rb32(pb);
4314 tag = avio_rl32(pb);
4315 avio_skip(pb, 4); // flags
4317 if (len < 12 || len - 12 > end - avio_tell(pb))
4321 if (tag == MKTAG('m', 'e', 'a', 'n'))
4323 else if (tag == MKTAG('n', 'a', 'm', 'e'))
4325 else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
4332 *p = av_malloc(len + 1);
4334 ret = AVERROR(ENOMEM);
4337 ret = ffio_read_size(pb, *p, len);
4345 if (mean && key && val) {
4346 if (strcmp(key, "iTunSMPB") == 0) {
4347 int priming, remainder, samples;
4348 if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
4349 if(priming>0 && priming<16384)
4350 sc->start_pad = priming;
4353 if (strcmp(key, "cdec") != 0) {
4354 av_dict_set(&c->fc->metadata, key, val,
4355 AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
4359 av_log(c->fc, AV_LOG_VERBOSE,
4360 "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
4363 avio_seek(pb, end, SEEK_SET);
4370 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4372 while (atom.size > 8) {
4373 uint32_t tag = avio_rl32(pb);
4375 if (tag == MKTAG('h','d','l','r')) {
4376 avio_seek(pb, -8, SEEK_CUR);
4378 return mov_read_default(c, pb, atom);
4384 // return 1 when matrix is identity, 0 otherwise
4385 #define IS_MATRIX_IDENT(matrix) \
4386 ( (matrix)[0][0] == (1 << 16) && \
4387 (matrix)[1][1] == (1 << 16) && \
4388 (matrix)[2][2] == (1 << 30) && \
4389 !(matrix)[0][1] && !(matrix)[0][2] && \
4390 !(matrix)[1][0] && !(matrix)[1][2] && \
4391 !(matrix)[2][0] && !(matrix)[2][1])
4393 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4398 int display_matrix[3][3];
4399 int res_display_matrix[3][3] = { { 0 } };
4401 MOVStreamContext *sc;
4405 if (c->fc->nb_streams < 1)
4407 st = c->fc->streams[c->fc->nb_streams-1];
4410 version = avio_r8(pb);
4411 flags = avio_rb24(pb);
4412 st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
4418 avio_rb32(pb); /* creation time */
4419 avio_rb32(pb); /* modification time */
4421 st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
4422 avio_rb32(pb); /* reserved */
4424 /* highlevel (considering edits) duration in movie timebase */
4425 (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
4426 avio_rb32(pb); /* reserved */
4427 avio_rb32(pb); /* reserved */
4429 avio_rb16(pb); /* layer */
4430 avio_rb16(pb); /* alternate group */
4431 avio_rb16(pb); /* volume */
4432 avio_rb16(pb); /* reserved */
4434 //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
4435 // they're kept in fixed point format through all calculations
4436 // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
4437 // side data, but the scale factor is not needed to calculate aspect ratio
4438 for (i = 0; i < 3; i++) {
4439 display_matrix[i][0] = avio_rb32(pb); // 16.16 fixed point
4440 display_matrix[i][1] = avio_rb32(pb); // 16.16 fixed point
4441 display_matrix[i][2] = avio_rb32(pb); // 2.30 fixed point
4444 width = avio_rb32(pb); // 16.16 fixed point track width
4445 height = avio_rb32(pb); // 16.16 fixed point track height
4446 sc->width = width >> 16;
4447 sc->height = height >> 16;
4449 // apply the moov display matrix (after the tkhd one)
4450 for (i = 0; i < 3; i++) {
4451 const int sh[3] = { 16, 16, 30 };
4452 for (j = 0; j < 3; j++) {
4453 for (e = 0; e < 3; e++) {
4454 res_display_matrix[i][j] +=
4455 ((int64_t) display_matrix[i][e] *
4456 c->movie_display_matrix[e][j]) >> sh[e];
4461 // save the matrix when it is not the default identity
4462 if (!IS_MATRIX_IDENT(res_display_matrix)) {
4465 av_freep(&sc->display_matrix);
4466 sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
4467 if (!sc->display_matrix)
4468 return AVERROR(ENOMEM);
4470 for (i = 0; i < 3; i++)
4471 for (j = 0; j < 3; j++)
4472 sc->display_matrix[i * 3 + j] = res_display_matrix[i][j];
4474 #if FF_API_OLD_ROTATE_API
4475 rotate = av_display_rotation_get(sc->display_matrix);
4476 if (!isnan(rotate)) {
4477 char rotate_buf[64];
4479 if (rotate < 0) // for backward compatibility
4481 snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
4482 av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
4487 // transform the display width/height according to the matrix
4488 // to keep the same scale, use [width height 1<<16]
4489 if (width && height && sc->display_matrix) {
4490 double disp_transform[2];
4492 for (i = 0; i < 2; i++)
4493 disp_transform[i] = hypot(sc->display_matrix[0 + i],
4494 sc->display_matrix[3 + i]);
4496 if (disp_transform[0] > 0 && disp_transform[1] > 0 &&
4497 disp_transform[0] < (1<<24) && disp_transform[1] < (1<<24) &&
4498 fabs((disp_transform[0] / disp_transform[1]) - 1.0) > 0.01)
4499 st->sample_aspect_ratio = av_d2q(
4500 disp_transform[0] / disp_transform[1],
4506 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4508 MOVFragment *frag = &c->fragment;
4509 MOVTrackExt *trex = NULL;
4510 int flags, track_id, i;
4512 avio_r8(pb); /* version */
4513 flags = avio_rb24(pb);
4515 track_id = avio_rb32(pb);
4517 return AVERROR_INVALIDDATA;
4518 frag->track_id = track_id;
4519 set_frag_stream(&c->frag_index, track_id);
4520 for (i = 0; i < c->trex_count; i++)
4521 if (c->trex_data[i].track_id == frag->track_id) {
4522 trex = &c->trex_data[i];
4526 av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
4527 return AVERROR_INVALIDDATA;
4530 frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
4531 avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
4532 frag->moof_offset : frag->implicit_offset;
4533 frag->stsd_id = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
4535 frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
4536 avio_rb32(pb) : trex->duration;
4537 frag->size = flags & MOV_TFHD_DEFAULT_SIZE ?
4538 avio_rb32(pb) : trex->size;
4539 frag->flags = flags & MOV_TFHD_DEFAULT_FLAGS ?
4540 avio_rb32(pb) : trex->flags;
4541 av_log(c->fc, AV_LOG_TRACE, "frag flags 0x%x\n", frag->flags);
4546 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4551 num = atom.size / 4;
4552 if (!(new_tracks = av_malloc_array(num, sizeof(int))))
4553 return AVERROR(ENOMEM);
4555 av_free(c->chapter_tracks);
4556 c->chapter_tracks = new_tracks;
4557 c->nb_chapter_tracks = num;
4559 for (i = 0; i < num && !pb->eof_reached; i++)
4560 c->chapter_tracks[i] = avio_rb32(pb);
4565 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4570 if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
4571 return AVERROR_INVALIDDATA;
4572 if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
4573 sizeof(*c->trex_data))) < 0) {
4578 c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
4580 trex = &c->trex_data[c->trex_count++];
4581 avio_r8(pb); /* version */
4582 avio_rb24(pb); /* flags */
4583 trex->track_id = avio_rb32(pb);
4584 trex->stsd_id = avio_rb32(pb);
4585 trex->duration = avio_rb32(pb);
4586 trex->size = avio_rb32(pb);
4587 trex->flags = avio_rb32(pb);
4591 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4593 MOVFragment *frag = &c->fragment;
4594 AVStream *st = NULL;
4595 MOVStreamContext *sc;
4597 MOVFragmentStreamInfo * frag_stream_info;
4598 int64_t base_media_decode_time;
4600 for (i = 0; i < c->fc->nb_streams; i++) {
4601 if (c->fc->streams[i]->id == frag->track_id) {
4602 st = c->fc->streams[i];
4607 av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4608 return AVERROR_INVALIDDATA;
4611 if (sc->pseudo_stream_id + 1 != frag->stsd_id && sc->pseudo_stream_id != -1)
4613 version = avio_r8(pb);
4614 avio_rb24(pb); /* flags */
4616 base_media_decode_time = avio_rb64(pb);
4618 base_media_decode_time = avio_rb32(pb);
4621 frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4622 if (frag_stream_info)
4623 frag_stream_info->tfdt_dts = base_media_decode_time;
4624 sc->track_end = base_media_decode_time;
4629 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4631 MOVFragment *frag = &c->fragment;
4632 AVStream *st = NULL;
4633 MOVStreamContext *sc;
4636 int64_t dts, pts = AV_NOPTS_VALUE;
4637 int data_offset = 0;
4638 unsigned entries, first_sample_flags = frag->flags;
4639 int flags, distance, i;
4640 int64_t prev_dts = AV_NOPTS_VALUE;
4641 int next_frag_index = -1, index_entry_pos;
4642 size_t requested_size;
4643 size_t old_ctts_allocated_size;
4644 AVIndexEntry *new_entries;
4645 MOVFragmentStreamInfo * frag_stream_info;
4647 for (i = 0; i < c->fc->nb_streams; i++) {
4648 if (c->fc->streams[i]->id == frag->track_id) {
4649 st = c->fc->streams[i];
4654 av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %u\n", frag->track_id);
4655 return AVERROR_INVALIDDATA;
4658 if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
4661 // Find the next frag_index index that has a valid index_entry for
4662 // the current track_id.
4664 // A valid index_entry means the trun for the fragment was read
4665 // and it's samples are in index_entries at the given position.
4666 // New index entries will be inserted before the index_entry found.
4667 index_entry_pos = st->nb_index_entries;
4668 for (i = c->frag_index.current + 1; i < c->frag_index.nb_items; i++) {
4669 frag_stream_info = get_frag_stream_info(&c->frag_index, i, frag->track_id);
4670 if (frag_stream_info && frag_stream_info->index_entry >= 0) {
4671 next_frag_index = i;
4672 index_entry_pos = frag_stream_info->index_entry;
4677 avio_r8(pb); /* version */
4678 flags = avio_rb24(pb);
4679 entries = avio_rb32(pb);
4680 av_log(c->fc, AV_LOG_TRACE, "flags 0x%x entries %u\n", flags, entries);
4682 if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
4683 return AVERROR_INVALIDDATA;
4684 if (flags & MOV_TRUN_DATA_OFFSET) data_offset = avio_rb32(pb);
4685 if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
4687 frag_stream_info = get_current_frag_stream_info(&c->frag_index);
4688 if (frag_stream_info)
4690 if (frag_stream_info->first_tfra_pts != AV_NOPTS_VALUE &&
4691 c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
4692 pts = frag_stream_info->first_tfra_pts;
4693 av_log(c->fc, AV_LOG_DEBUG, "found mfra time %"PRId64
4694 ", using it for pts\n", pts);
4695 } else if (frag_stream_info->sidx_pts != AV_NOPTS_VALUE) {
4696 // FIXME: sidx earliest_presentation_time is *PTS*, s.b.
4697 // pts = frag_stream_info->sidx_pts;
4698 dts = frag_stream_info->sidx_pts - sc->time_offset;
4699 av_log(c->fc, AV_LOG_DEBUG, "found sidx time %"PRId64
4700 ", using it for pts\n", pts);
4701 } else if (frag_stream_info->tfdt_dts != AV_NOPTS_VALUE) {
4702 dts = frag_stream_info->tfdt_dts - sc->time_offset;
4703 av_log(c->fc, AV_LOG_DEBUG, "found tfdt time %"PRId64
4704 ", using it for dts\n", dts);
4706 dts = sc->track_end - sc->time_offset;
4707 av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4708 ", using it for dts\n", dts);
4711 dts = sc->track_end - sc->time_offset;
4712 av_log(c->fc, AV_LOG_DEBUG, "found track end time %"PRId64
4713 ", using it for dts\n", dts);
4715 offset = frag->base_data_offset + data_offset;
4717 av_log(c->fc, AV_LOG_TRACE, "first sample flags 0x%x\n", first_sample_flags);
4719 // realloc space for new index entries
4720 if((unsigned)st->nb_index_entries + entries >= UINT_MAX / sizeof(AVIndexEntry)) {
4721 entries = UINT_MAX / sizeof(AVIndexEntry) - st->nb_index_entries;
4722 av_log(c->fc, AV_LOG_ERROR, "Failed to add index entry\n");
4727 requested_size = (st->nb_index_entries + entries) * sizeof(AVIndexEntry);
4728 new_entries = av_fast_realloc(st->index_entries,
4729 &st->index_entries_allocated_size,
4732 return AVERROR(ENOMEM);
4733 st->index_entries= new_entries;
4735 requested_size = (st->nb_index_entries + entries) * sizeof(*sc->ctts_data);
4736 old_ctts_allocated_size = sc->ctts_allocated_size;
4737 ctts_data = av_fast_realloc(sc->ctts_data, &sc->ctts_allocated_size,
4740 return AVERROR(ENOMEM);
4741 sc->ctts_data = ctts_data;
4743 // In case there were samples without ctts entries, ensure they get
4744 // zero valued entries. This ensures clips which mix boxes with and
4745 // without ctts entries don't pickup uninitialized data.
4746 memset((uint8_t*)(sc->ctts_data) + old_ctts_allocated_size, 0,
4747 sc->ctts_allocated_size - old_ctts_allocated_size);
4749 if (index_entry_pos < st->nb_index_entries) {
4750 // Make hole in index_entries and ctts_data for new samples
4751 memmove(st->index_entries + index_entry_pos + entries,
4752 st->index_entries + index_entry_pos,
4753 sizeof(*st->index_entries) *
4754 (st->nb_index_entries - index_entry_pos));
4755 memmove(sc->ctts_data + index_entry_pos + entries,
4756 sc->ctts_data + index_entry_pos,
4757 sizeof(*sc->ctts_data) * (sc->ctts_count - index_entry_pos));
4758 if (index_entry_pos < sc->current_sample) {
4759 sc->current_sample += entries;
4763 st->nb_index_entries += entries;
4764 sc->ctts_count = st->nb_index_entries;
4766 // Record the index_entry position in frag_index of this fragment
4767 if (frag_stream_info)
4768 frag_stream_info->index_entry = index_entry_pos;
4770 if (index_entry_pos > 0)
4771 prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4773 for (i = 0; i < entries && !pb->eof_reached; i++) {
4774 unsigned sample_size = frag->size;
4775 int sample_flags = i ? frag->flags : first_sample_flags;
4776 unsigned sample_duration = frag->duration;
4777 unsigned ctts_duration = 0;
4779 int index_entry_flags = 0;
4781 if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
4782 if (flags & MOV_TRUN_SAMPLE_SIZE) sample_size = avio_rb32(pb);
4783 if (flags & MOV_TRUN_SAMPLE_FLAGS) sample_flags = avio_rb32(pb);
4784 if (flags & MOV_TRUN_SAMPLE_CTS) ctts_duration = avio_rb32(pb);
4786 mov_update_dts_shift(sc, ctts_duration);
4787 if (pts != AV_NOPTS_VALUE) {
4788 dts = pts - sc->dts_shift;
4789 if (flags & MOV_TRUN_SAMPLE_CTS) {
4790 dts -= ctts_duration;
4792 dts -= sc->time_offset;
4794 av_log(c->fc, AV_LOG_DEBUG,
4795 "pts %"PRId64" calculated dts %"PRId64
4796 " sc->dts_shift %d ctts.duration %d"
4797 " sc->time_offset %"PRId64
4798 " flags & MOV_TRUN_SAMPLE_CTS %d\n",
4800 sc->dts_shift, ctts_duration,
4801 sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
4802 pts = AV_NOPTS_VALUE;
4805 if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4809 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
4810 MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
4813 index_entry_flags |= AVINDEX_KEYFRAME;
4815 // Fragments can overlap in time. Discard overlapping frames after
4817 if (prev_dts >= dts)
4818 index_entry_flags |= AVINDEX_DISCARD_FRAME;
4820 st->index_entries[index_entry_pos].pos = offset;
4821 st->index_entries[index_entry_pos].timestamp = dts;
4822 st->index_entries[index_entry_pos].size= sample_size;
4823 st->index_entries[index_entry_pos].min_distance= distance;
4824 st->index_entries[index_entry_pos].flags = index_entry_flags;
4826 sc->ctts_data[index_entry_pos].count = 1;
4827 sc->ctts_data[index_entry_pos].duration = ctts_duration;
4830 av_log(c->fc, AV_LOG_TRACE, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
4831 "size %u, distance %d, keyframe %d\n", st->index,
4832 index_entry_pos, offset, dts, sample_size, distance, keyframe);
4834 dts += sample_duration;
4835 offset += sample_size;
4836 sc->data_size += sample_size;
4838 if (sample_duration <= INT64_MAX - sc->duration_for_fps &&
4839 1 <= INT64_MAX - sc->nb_frames_for_fps
4841 sc->duration_for_fps += sample_duration;
4842 sc->nb_frames_for_fps ++;
4846 // EOF found before reading all entries. Fix the hole this would
4847 // leave in index_entries and ctts_data
4848 int gap = entries - i;
4849 memmove(st->index_entries + index_entry_pos,
4850 st->index_entries + index_entry_pos + gap,
4851 sizeof(*st->index_entries) *
4852 (st->nb_index_entries - (index_entry_pos + gap)));
4853 memmove(sc->ctts_data + index_entry_pos,
4854 sc->ctts_data + index_entry_pos + gap,
4855 sizeof(*sc->ctts_data) *
4856 (sc->ctts_count - (index_entry_pos + gap)));
4858 st->nb_index_entries -= gap;
4859 sc->ctts_count -= gap;
4860 if (index_entry_pos < sc->current_sample) {
4861 sc->current_sample -= gap;
4866 // The end of this new fragment may overlap in time with the start
4867 // of the next fragment in index_entries. Mark the samples in the next
4868 // fragment that overlap with AVINDEX_DISCARD_FRAME
4869 prev_dts = AV_NOPTS_VALUE;
4870 if (index_entry_pos > 0)
4871 prev_dts = st->index_entries[index_entry_pos-1].timestamp;
4872 for (i = index_entry_pos; i < st->nb_index_entries; i++) {
4873 if (prev_dts < st->index_entries[i].timestamp)
4875 st->index_entries[i].flags |= AVINDEX_DISCARD_FRAME;
4878 // If a hole was created to insert the new index_entries into,
4879 // the index_entry recorded for all subsequent moof must
4880 // be incremented by the number of entries inserted.
4881 fix_frag_index_entries(&c->frag_index, next_frag_index,
4882 frag->track_id, entries);
4884 if (pb->eof_reached) {
4885 av_log(c->fc, AV_LOG_WARNING, "reached eof, corrupted TRUN atom\n");
4889 frag->implicit_offset = offset;
4891 sc->track_end = dts + sc->time_offset;
4892 if (st->duration < sc->track_end)
4893 st->duration = sc->track_end;
4898 static int mov_read_sidx(MOVContext *c, AVIOContext *pb, MOVAtom atom)
4900 int64_t offset = avio_tell(pb) + atom.size, pts, timestamp;
4902 unsigned i, j, track_id, item_count;
4903 AVStream *st = NULL;
4904 AVStream *ref_st = NULL;
4905 MOVStreamContext *sc, *ref_sc = NULL;
4906 AVRational timescale;
4908 version = avio_r8(pb);
4910 avpriv_request_sample(c->fc, "sidx version %u", version);
4914 avio_rb24(pb); // flags
4916 track_id = avio_rb32(pb); // Reference ID
4917 for (i = 0; i < c->fc->nb_streams; i++) {
4918 if (c->fc->streams[i]->id == track_id) {
4919 st = c->fc->streams[i];
4924 av_log(c->fc, AV_LOG_WARNING, "could not find corresponding track id %d\n", track_id);
4930 timescale = av_make_q(1, avio_rb32(pb));
4932 if (timescale.den <= 0) {
4933 av_log(c->fc, AV_LOG_ERROR, "Invalid sidx timescale 1/%d\n", timescale.den);
4934 return AVERROR_INVALIDDATA;
4938 pts = avio_rb32(pb);
4939 offset += avio_rb32(pb);
4941 pts = avio_rb64(pb);
4942 offset += avio_rb64(pb);
4945 avio_rb16(pb); // reserved
4947 item_count = avio_rb16(pb);
4949 for (i = 0; i < item_count; i++) {
4951 MOVFragmentStreamInfo * frag_stream_info;
4952 uint32_t size = avio_rb32(pb);
4953 uint32_t duration = avio_rb32(pb);
4954 if (size & 0x80000000) {
4955 avpriv_request_sample(c->fc, "sidx reference_type 1");
4956 return AVERROR_PATCHWELCOME;
4958 avio_rb32(pb); // sap_flags
4959 timestamp = av_rescale_q(pts, st->time_base, timescale);
4961 index = update_frag_index(c, offset);
4962 frag_stream_info = get_frag_stream_info(&c->frag_index, index, track_id);
4963 if (frag_stream_info)
4964 frag_stream_info->sidx_pts = timestamp;
4970 st->duration = sc->track_end = pts;
4974 if (offset == avio_size(pb)) {
4975 // Find first entry in fragment index that came from an sidx.
4976 // This will pretty much always be the first entry.
4977 for (i = 0; i < c->frag_index.nb_items; i++) {
4978 MOVFragmentIndexItem * item = &c->frag_index.item[i];
4979 for (j = 0; ref_st == NULL && j < item->nb_stream_info; j++) {
4980 MOVFragmentStreamInfo * si;
4981 si = &item->stream_info[j];
4982 if (si->sidx_pts != AV_NOPTS_VALUE) {
4983 ref_st = c->fc->streams[j];
4984 ref_sc = ref_st->priv_data;
4989 for (i = 0; i < c->fc->nb_streams; i++) {
4990 st = c->fc->streams[i];
4992 if (!sc->has_sidx) {
4993 st->duration = sc->track_end = av_rescale(ref_st->duration, sc->time_scale, ref_sc->time_scale);
4997 c->frag_index.complete = 1;
5003 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
5004 /* like the files created with Adobe Premiere 5.0, for samples see */
5005 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
5006 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5011 return 0; /* continue */
5012 if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
5013 avio_skip(pb, atom.size - 4);
5016 atom.type = avio_rl32(pb);
5018 if (atom.type != MKTAG('m','d','a','t')) {
5019 avio_skip(pb, atom.size);
5022 err = mov_read_mdat(c, pb, atom);
5026 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5031 uint8_t *moov_data; /* uncompressed data */
5032 long cmov_len, moov_len;
5035 avio_rb32(pb); /* dcom atom */
5036 if (avio_rl32(pb) != MKTAG('d','c','o','m'))
5037 return AVERROR_INVALIDDATA;
5038 if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
5039 av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
5040 return AVERROR_INVALIDDATA;
5042 avio_rb32(pb); /* cmvd atom */
5043 if (avio_rl32(pb) != MKTAG('c','m','v','d'))
5044 return AVERROR_INVALIDDATA;
5045 moov_len = avio_rb32(pb); /* uncompressed size */
5046 cmov_len = atom.size - 6 * 4;
5048 cmov_data = av_malloc(cmov_len);
5050 return AVERROR(ENOMEM);
5051 moov_data = av_malloc(moov_len);
5054 return AVERROR(ENOMEM);
5056 ret = ffio_read_size(pb, cmov_data, cmov_len);
5058 goto free_and_return;
5060 ret = AVERROR_INVALIDDATA;
5061 if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
5062 goto free_and_return;
5063 if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
5064 goto free_and_return;
5065 ctx.seekable = AVIO_SEEKABLE_NORMAL;
5066 atom.type = MKTAG('m','o','o','v');
5067 atom.size = moov_len;
5068 ret = mov_read_default(c, &ctx, atom);
5074 av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
5075 return AVERROR(ENOSYS);
5079 /* edit list atom */
5080 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5082 MOVStreamContext *sc;
5083 int i, edit_count, version;
5084 int64_t elst_entry_size;
5086 if (c->fc->nb_streams < 1 || c->ignore_editlist)
5088 sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
5090 version = avio_r8(pb); /* version */
5091 avio_rb24(pb); /* flags */
5092 edit_count = avio_rb32(pb); /* entries */
5095 elst_entry_size = version == 1 ? 20 : 12;
5096 if (atom.size != edit_count * elst_entry_size) {
5097 if (c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5098 av_log(c->fc, AV_LOG_ERROR, "Invalid edit list entry_count: %d for elst atom of size: %"PRId64" bytes.\n",
5099 edit_count, atom.size + 8);
5100 return AVERROR_INVALIDDATA;
5102 edit_count = atom.size / elst_entry_size;
5103 if (edit_count * elst_entry_size != atom.size) {
5104 av_log(c->fc, AV_LOG_WARNING, "ELST atom of %"PRId64" bytes, bigger than %d entries.", atom.size, edit_count);
5112 av_log(c->fc, AV_LOG_WARNING, "Duplicated ELST atom\n");
5113 av_free(sc->elst_data);
5115 sc->elst_data = av_malloc_array(edit_count, sizeof(*sc->elst_data));
5117 return AVERROR(ENOMEM);
5119 av_log(c->fc, AV_LOG_TRACE, "track[%u].edit_count = %i\n", c->fc->nb_streams - 1, edit_count);
5120 for (i = 0; i < edit_count && atom.size > 0 && !pb->eof_reached; i++) {
5121 MOVElst *e = &sc->elst_data[i];
5124 e->duration = avio_rb64(pb);
5125 e->time = avio_rb64(pb);
5128 e->duration = avio_rb32(pb); /* segment duration */
5129 e->time = (int32_t)avio_rb32(pb); /* media time */
5132 e->rate = avio_rb32(pb) / 65536.0;
5134 av_log(c->fc, AV_LOG_TRACE, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
5135 e->duration, e->time, e->rate);
5137 if (e->time < 0 && e->time != -1 &&
5138 c->fc->strict_std_compliance >= FF_COMPLIANCE_STRICT) {
5139 av_log(c->fc, AV_LOG_ERROR, "Track %d, edit %d: Invalid edit list media time=%"PRId64"\n",
5140 c->fc->nb_streams-1, i, e->time);
5141 return AVERROR_INVALIDDATA;
5149 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5151 MOVStreamContext *sc;
5153 if (c->fc->nb_streams < 1)
5154 return AVERROR_INVALIDDATA;
5155 sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5156 sc->timecode_track = avio_rb32(pb);
5160 static int mov_read_vpcc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5163 int version, color_range, color_primaries, color_trc, color_space;
5165 if (c->fc->nb_streams < 1)
5167 st = c->fc->streams[c->fc->nb_streams - 1];
5169 if (atom.size < 5) {
5170 av_log(c->fc, AV_LOG_ERROR, "Empty VP Codec Configuration box\n");
5171 return AVERROR_INVALIDDATA;
5174 version = avio_r8(pb);
5176 av_log(c->fc, AV_LOG_WARNING, "Unsupported VP Codec Configuration box version %d\n", version);
5179 avio_skip(pb, 3); /* flags */
5181 avio_skip(pb, 2); /* profile + level */
5182 color_range = avio_r8(pb); /* bitDepth, chromaSubsampling, videoFullRangeFlag */
5183 color_primaries = avio_r8(pb);
5184 color_trc = avio_r8(pb);
5185 color_space = avio_r8(pb);
5186 if (avio_rb16(pb)) /* codecIntializationDataSize */
5187 return AVERROR_INVALIDDATA;
5189 if (!av_color_primaries_name(color_primaries))
5190 color_primaries = AVCOL_PRI_UNSPECIFIED;
5191 if (!av_color_transfer_name(color_trc))
5192 color_trc = AVCOL_TRC_UNSPECIFIED;
5193 if (!av_color_space_name(color_space))
5194 color_space = AVCOL_SPC_UNSPECIFIED;
5196 st->codecpar->color_range = (color_range & 1) ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
5197 st->codecpar->color_primaries = color_primaries;
5198 st->codecpar->color_trc = color_trc;
5199 st->codecpar->color_space = color_space;
5204 static int mov_read_smdm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5206 MOVStreamContext *sc;
5207 const int chroma_den = 50000;
5208 const int luma_den = 10000;
5211 if (c->fc->nb_streams < 1)
5212 return AVERROR_INVALIDDATA;
5214 sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5216 if (atom.size < 5) {
5217 av_log(c->fc, AV_LOG_ERROR, "Empty Mastering Display Metadata box\n");
5218 return AVERROR_INVALIDDATA;
5221 version = avio_r8(pb);
5223 av_log(c->fc, AV_LOG_WARNING, "Unsupported Mastering Display Metadata box version %d\n", version);
5226 avio_skip(pb, 3); /* flags */
5228 sc->mastering = av_mastering_display_metadata_alloc();
5230 return AVERROR(ENOMEM);
5232 for (i = 0; i < 3; i++)
5233 for (j = 0; j < 2; j++)
5234 sc->mastering->display_primaries[i][j] =
5235 av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5236 for (i = 0; i < 2; i++)
5237 sc->mastering->white_point[i] =
5238 av_make_q(lrint(((double)avio_rb16(pb) / (1 << 16)) * chroma_den), chroma_den);
5239 sc->mastering->max_luminance =
5240 av_make_q(lrint(((double)avio_rb32(pb) / (1 << 8)) * luma_den), luma_den);
5241 sc->mastering->min_luminance =
5242 av_make_q(lrint(((double)avio_rb32(pb) / (1 << 14)) * luma_den), luma_den);
5244 sc->mastering->has_primaries = 1;
5245 sc->mastering->has_luminance = 1;
5250 static int mov_read_mdcv(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5252 MOVStreamContext *sc;
5253 const int mapping[3] = {1, 2, 0};
5254 const int chroma_den = 50000;
5255 const int luma_den = 10000;
5258 if (c->fc->nb_streams < 1)
5259 return AVERROR_INVALIDDATA;
5261 sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5263 if (atom.size < 24) {
5264 av_log(c->fc, AV_LOG_ERROR, "Invalid Mastering Display Color Volume box\n");
5265 return AVERROR_INVALIDDATA;
5268 sc->mastering = av_mastering_display_metadata_alloc();
5270 return AVERROR(ENOMEM);
5272 for (i = 0; i < 3; i++) {
5273 const int j = mapping[i];
5274 sc->mastering->display_primaries[j][0] = av_make_q(avio_rb16(pb), chroma_den);
5275 sc->mastering->display_primaries[j][1] = av_make_q(avio_rb16(pb), chroma_den);
5277 sc->mastering->white_point[0] = av_make_q(avio_rb16(pb), chroma_den);
5278 sc->mastering->white_point[1] = av_make_q(avio_rb16(pb), chroma_den);
5280 sc->mastering->max_luminance = av_make_q(avio_rb32(pb), luma_den);
5281 sc->mastering->min_luminance = av_make_q(avio_rb32(pb), luma_den);
5283 sc->mastering->has_luminance = 1;
5284 sc->mastering->has_primaries = 1;
5289 static int mov_read_coll(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5291 MOVStreamContext *sc;
5294 if (c->fc->nb_streams < 1)
5295 return AVERROR_INVALIDDATA;
5297 sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5299 if (atom.size < 5) {
5300 av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level box\n");
5301 return AVERROR_INVALIDDATA;
5304 version = avio_r8(pb);
5306 av_log(c->fc, AV_LOG_WARNING, "Unsupported Content Light Level box version %d\n", version);
5309 avio_skip(pb, 3); /* flags */
5311 sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5313 return AVERROR(ENOMEM);
5315 sc->coll->MaxCLL = avio_rb16(pb);
5316 sc->coll->MaxFALL = avio_rb16(pb);
5321 static int mov_read_clli(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5323 MOVStreamContext *sc;
5325 if (c->fc->nb_streams < 1)
5326 return AVERROR_INVALIDDATA;
5328 sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
5330 if (atom.size < 4) {
5331 av_log(c->fc, AV_LOG_ERROR, "Empty Content Light Level Info box\n");
5332 return AVERROR_INVALIDDATA;
5335 sc->coll = av_content_light_metadata_alloc(&sc->coll_size);
5337 return AVERROR(ENOMEM);
5339 sc->coll->MaxCLL = avio_rb16(pb);
5340 sc->coll->MaxFALL = avio_rb16(pb);
5345 static int mov_read_st3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5348 MOVStreamContext *sc;
5349 enum AVStereo3DType type;
5352 if (c->fc->nb_streams < 1)
5355 st = c->fc->streams[c->fc->nb_streams - 1];
5358 if (atom.size < 5) {
5359 av_log(c->fc, AV_LOG_ERROR, "Empty stereoscopic video box\n");
5360 return AVERROR_INVALIDDATA;
5362 avio_skip(pb, 4); /* version + flags */
5367 type = AV_STEREO3D_2D;
5370 type = AV_STEREO3D_TOPBOTTOM;
5373 type = AV_STEREO3D_SIDEBYSIDE;
5376 av_log(c->fc, AV_LOG_WARNING, "Unknown st3d mode value %d\n", mode);
5380 sc->stereo3d = av_stereo3d_alloc();
5382 return AVERROR(ENOMEM);
5384 sc->stereo3d->type = type;
5388 static int mov_read_sv3d(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5391 MOVStreamContext *sc;
5392 int size, version, layout;
5393 int32_t yaw, pitch, roll;
5394 uint32_t l = 0, t = 0, r = 0, b = 0;
5395 uint32_t tag, padding = 0;
5396 enum AVSphericalProjection projection;
5398 if (c->fc->nb_streams < 1)
5401 st = c->fc->streams[c->fc->nb_streams - 1];
5404 if (atom.size < 8) {
5405 av_log(c->fc, AV_LOG_ERROR, "Empty spherical video box\n");
5406 return AVERROR_INVALIDDATA;
5409 size = avio_rb32(pb);
5410 if (size <= 12 || size > atom.size)
5411 return AVERROR_INVALIDDATA;
5413 tag = avio_rl32(pb);
5414 if (tag != MKTAG('s','v','h','d')) {
5415 av_log(c->fc, AV_LOG_ERROR, "Missing spherical video header\n");
5418 version = avio_r8(pb);
5420 av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5424 avio_skip(pb, 3); /* flags */
5425 avio_skip(pb, size - 12); /* metadata_source */
5427 size = avio_rb32(pb);
5428 if (size > atom.size)
5429 return AVERROR_INVALIDDATA;
5431 tag = avio_rl32(pb);
5432 if (tag != MKTAG('p','r','o','j')) {
5433 av_log(c->fc, AV_LOG_ERROR, "Missing projection box\n");
5437 size = avio_rb32(pb);
5438 if (size > atom.size)
5439 return AVERROR_INVALIDDATA;
5441 tag = avio_rl32(pb);
5442 if (tag != MKTAG('p','r','h','d')) {
5443 av_log(c->fc, AV_LOG_ERROR, "Missing projection header box\n");
5446 version = avio_r8(pb);
5448 av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5452 avio_skip(pb, 3); /* flags */
5454 /* 16.16 fixed point */
5455 yaw = avio_rb32(pb);
5456 pitch = avio_rb32(pb);
5457 roll = avio_rb32(pb);
5459 size = avio_rb32(pb);
5460 if (size > atom.size)
5461 return AVERROR_INVALIDDATA;
5463 tag = avio_rl32(pb);
5464 version = avio_r8(pb);
5466 av_log(c->fc, AV_LOG_WARNING, "Unknown spherical version %d\n",
5470 avio_skip(pb, 3); /* flags */
5472 case MKTAG('c','b','m','p'):
5473 layout = avio_rb32(pb);
5475 av_log(c->fc, AV_LOG_WARNING,
5476 "Unsupported cubemap layout %d\n", layout);
5479 projection = AV_SPHERICAL_CUBEMAP;
5480 padding = avio_rb32(pb);
5482 case MKTAG('e','q','u','i'):
5488 if (b >= UINT_MAX - t || r >= UINT_MAX - l) {
5489 av_log(c->fc, AV_LOG_ERROR,
5490 "Invalid bounding rectangle coordinates "
5491 "%"PRIu32",%"PRIu32",%"PRIu32",%"PRIu32"\n", l, t, r, b);
5492 return AVERROR_INVALIDDATA;
5495 if (l || t || r || b)
5496 projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE;
5498 projection = AV_SPHERICAL_EQUIRECTANGULAR;
5501 av_log(c->fc, AV_LOG_ERROR, "Unknown projection type: %s\n", av_fourcc2str(tag));
5505 sc->spherical = av_spherical_alloc(&sc->spherical_size);
5507 return AVERROR(ENOMEM);
5509 sc->spherical->projection = projection;
5511 sc->spherical->yaw = yaw;
5512 sc->spherical->pitch = pitch;
5513 sc->spherical->roll = roll;
5515 sc->spherical->padding = padding;
5517 sc->spherical->bound_left = l;
5518 sc->spherical->bound_top = t;
5519 sc->spherical->bound_right = r;
5520 sc->spherical->bound_bottom = b;
5525 static int mov_parse_uuid_spherical(MOVStreamContext *sc, AVIOContext *pb, size_t len)
5528 uint8_t *buffer = av_malloc(len + 1);
5532 return AVERROR(ENOMEM);
5535 ret = ffio_read_size(pb, buffer, len);
5539 /* Check for mandatory keys and values, try to support XML as best-effort */
5540 if (!sc->spherical &&
5541 av_stristr(buffer, "<GSpherical:StitchingSoftware>") &&
5542 (val = av_stristr(buffer, "<GSpherical:Spherical>")) &&
5543 av_stristr(val, "true") &&
5544 (val = av_stristr(buffer, "<GSpherical:Stitched>")) &&
5545 av_stristr(val, "true") &&
5546 (val = av_stristr(buffer, "<GSpherical:ProjectionType>")) &&
5547 av_stristr(val, "equirectangular")) {
5548 sc->spherical = av_spherical_alloc(&sc->spherical_size);
5552 sc->spherical->projection = AV_SPHERICAL_EQUIRECTANGULAR;
5554 if (av_stristr(buffer, "<GSpherical:StereoMode>") && !sc->stereo3d) {
5555 enum AVStereo3DType mode;
5557 if (av_stristr(buffer, "left-right"))
5558 mode = AV_STEREO3D_SIDEBYSIDE;
5559 else if (av_stristr(buffer, "top-bottom"))
5560 mode = AV_STEREO3D_TOPBOTTOM;
5562 mode = AV_STEREO3D_2D;
5564 sc->stereo3d = av_stereo3d_alloc();
5568 sc->stereo3d->type = mode;
5572 val = av_stristr(buffer, "<GSpherical:InitialViewHeadingDegrees>");
5574 sc->spherical->yaw = strtol(val, NULL, 10) * (1 << 16);
5575 val = av_stristr(buffer, "<GSpherical:InitialViewPitchDegrees>");
5577 sc->spherical->pitch = strtol(val, NULL, 10) * (1 << 16);
5578 val = av_stristr(buffer, "<GSpherical:InitialViewRollDegrees>");
5580 sc->spherical->roll = strtol(val, NULL, 10) * (1 << 16);
5588 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5591 MOVStreamContext *sc;
5594 static const uint8_t uuid_isml_manifest[] = {
5595 0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
5596 0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
5598 static const uint8_t uuid_xmp[] = {
5599 0xbe, 0x7a, 0xcf, 0xcb, 0x97, 0xa9, 0x42, 0xe8,
5600 0x9c, 0x71, 0x99, 0x94, 0x91, 0xe3, 0xaf, 0xac
5602 static const uint8_t uuid_spherical[] = {
5603 0xff, 0xcc, 0x82, 0x63, 0xf8, 0x55, 0x4a, 0x93,
5604 0x88, 0x14, 0x58, 0x7a, 0x02, 0x52, 0x1f, 0xdd,
5607 if (atom.size < sizeof(uuid) || atom.size >= FFMIN(INT_MAX, SIZE_MAX))
5608 return AVERROR_INVALIDDATA;
5610 if (c->fc->nb_streams < 1)
5612 st = c->fc->streams[c->fc->nb_streams - 1];
5615 ret = avio_read(pb, uuid, sizeof(uuid));
5618 } else if (ret != sizeof(uuid)) {
5619 return AVERROR_INVALIDDATA;
5621 if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
5622 uint8_t *buffer, *ptr;
5624 size_t len = atom.size - sizeof(uuid);
5627 return AVERROR_INVALIDDATA;
5629 ret = avio_skip(pb, 4); // zeroes
5632 buffer = av_mallocz(len + 1);
5634 return AVERROR(ENOMEM);
5636 ret = avio_read(pb, buffer, len);
5640 } else if (ret != len) {
5642 return AVERROR_INVALIDDATA;
5646 while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
5647 ptr += sizeof("systemBitrate=\"") - 1;
5648 c->bitrates_count++;
5649 c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
5651 c->bitrates_count = 0;
5653 return AVERROR(ENOMEM);
5656 ret = strtol(ptr, &endptr, 10);
5657 if (ret < 0 || errno || *endptr != '"') {
5658 c->bitrates[c->bitrates_count - 1] = 0;
5660 c->bitrates[c->bitrates_count - 1] = ret;
5665 } else if (!memcmp(uuid, uuid_xmp, sizeof(uuid))) {
5667 size_t len = atom.size - sizeof(uuid);
5668 if (c->export_xmp) {
5669 buffer = av_mallocz(len + 1);
5671 return AVERROR(ENOMEM);
5673 ret = avio_read(pb, buffer, len);
5677 } else if (ret != len) {
5679 return AVERROR_INVALIDDATA;
5682 av_dict_set(&c->fc->metadata, "xmp", buffer, 0);
5685 // skip all uuid atom, which makes it fast for long uuid-xmp file
5686 ret = avio_skip(pb, len);
5690 } else if (!memcmp(uuid, uuid_spherical, sizeof(uuid))) {
5691 size_t len = atom.size - sizeof(uuid);
5692 ret = mov_parse_uuid_spherical(sc, pb, len);
5696 av_log(c->fc, AV_LOG_WARNING, "Invalid spherical metadata found\n");
5702 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5705 uint8_t content[16];
5710 ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
5716 && !memcmp(content, "Anevia\x1A\x1A", 8)
5717 && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
5718 c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
5724 static int mov_read_frma(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5726 uint32_t format = avio_rl32(pb);
5727 MOVStreamContext *sc;
5731 if (c->fc->nb_streams < 1)
5733 st = c->fc->streams[c->fc->nb_streams - 1];
5738 case MKTAG('e','n','c','v'): // encrypted video
5739 case MKTAG('e','n','c','a'): // encrypted audio
5740 id = mov_codec_id(st, format);
5741 if (st->codecpar->codec_id != AV_CODEC_ID_NONE &&
5742 st->codecpar->codec_id != id) {
5743 av_log(c->fc, AV_LOG_WARNING,
5744 "ignoring 'frma' atom of '%.4s', stream has codec id %d\n",
5745 (char*)&format, st->codecpar->codec_id);
5749 st->codecpar->codec_id = id;
5750 sc->format = format;
5754 if (format != sc->format) {
5755 av_log(c->fc, AV_LOG_WARNING,
5756 "ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
5757 (char*)&format, (char*)&sc->format);
5766 * Gets the current encryption info and associated current stream context. If
5767 * we are parsing a track fragment, this will return the specific encryption
5768 * info for this fragment; otherwise this will return the global encryption
5769 * info for the current stream.
5771 static int get_current_encryption_info(MOVContext *c, MOVEncryptionIndex **encryption_index, MOVStreamContext **sc)
5773 MOVFragmentStreamInfo *frag_stream_info;
5777 frag_stream_info = get_current_frag_stream_info(&c->frag_index);
5778 if (frag_stream_info) {
5779 for (i = 0; i < c->fc->nb_streams; i++) {
5780 if (c->fc->streams[i]->id == frag_stream_info->id) {
5781 st = c->fc->streams[i];
5785 if (i == c->fc->nb_streams)
5787 *sc = st->priv_data;
5789 if (!frag_stream_info->encryption_index) {
5790 frag_stream_info->encryption_index = av_mallocz(sizeof(*frag_stream_info->encryption_index));
5791 if (!frag_stream_info->encryption_index)
5792 return AVERROR(ENOMEM);
5794 *encryption_index = frag_stream_info->encryption_index;
5797 // No current track fragment, using stream level encryption info.
5799 if (c->fc->nb_streams < 1)
5801 st = c->fc->streams[c->fc->nb_streams - 1];
5802 *sc = st->priv_data;
5804 if (!(*sc)->cenc.encryption_index) {
5805 (*sc)->cenc.encryption_index = av_mallocz(sizeof(*frag_stream_info->encryption_index));
5806 if (!(*sc)->cenc.encryption_index)
5807 return AVERROR(ENOMEM);
5810 *encryption_index = (*sc)->cenc.encryption_index;
5815 static int mov_read_sample_encryption_info(MOVContext *c, AVIOContext *pb, MOVStreamContext *sc, AVEncryptionInfo **sample, int use_subsamples)
5818 unsigned int subsample_count;
5819 AVSubsampleEncryptionInfo *subsamples;
5821 *sample = av_encryption_info_clone(sc->cenc.default_encrypted_sample);
5823 return AVERROR(ENOMEM);
5825 if (sc->cenc.per_sample_iv_size != 0) {
5826 if (avio_read(pb, (*sample)->iv, sc->cenc.per_sample_iv_size) != sc->cenc.per_sample_iv_size) {
5827 av_log(c->fc, AV_LOG_ERROR, "failed to read the initialization vector\n");
5828 av_encryption_info_free(*sample);
5830 return AVERROR_INVALIDDATA;
5834 if (use_subsamples) {
5835 subsample_count = avio_rb16(pb);
5836 (*sample)->subsamples = av_mallocz_array(subsample_count, sizeof(*subsamples));
5837 if (!(*sample)->subsamples) {
5838 av_encryption_info_free(*sample);
5840 return AVERROR(ENOMEM);
5843 for (i = 0; i < subsample_count && !pb->eof_reached; i++) {
5844 (*sample)->subsamples[i].bytes_of_clear_data = avio_rb16(pb);
5845 (*sample)->subsamples[i].bytes_of_protected_data = avio_rb32(pb);
5848 if (pb->eof_reached) {
5849 av_log(c->fc, AV_LOG_ERROR, "hit EOF while reading sub-sample encryption info\n");
5850 av_encryption_info_free(*sample);
5852 return AVERROR_INVALIDDATA;
5854 (*sample)->subsample_count = subsample_count;
5860 static int mov_read_senc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5862 AVEncryptionInfo **encrypted_samples;
5863 MOVEncryptionIndex *encryption_index;
5864 MOVStreamContext *sc;
5865 int use_subsamples, ret;
5866 unsigned int sample_count, i, alloc_size = 0;
5868 ret = get_current_encryption_info(c, &encryption_index, &sc);
5872 if (encryption_index->nb_encrypted_samples) {
5873 // This can happen if we have both saio/saiz and senc atoms.
5874 av_log(c->fc, AV_LOG_DEBUG, "Ignoring duplicate encryption info in senc\n");
5878 avio_r8(pb); /* version */
5879 use_subsamples = avio_rb24(pb) & 0x02; /* flags */
5881 sample_count = avio_rb32(pb);
5882 if (sample_count >= INT_MAX / sizeof(*encrypted_samples))
5883 return AVERROR(ENOMEM);
5885 for (i = 0; i < sample_count; i++) {
5886 unsigned int min_samples = FFMIN(FFMAX(i, 1024 * 1024), sample_count);
5887 encrypted_samples = av_fast_realloc(encryption_index->encrypted_samples, &alloc_size,
5888 min_samples * sizeof(*encrypted_samples));
5889 if (encrypted_samples) {
5890 encryption_index->encrypted_samples = encrypted_samples;
5892 ret = mov_read_sample_encryption_info(
5893 c, pb, sc, &encryption_index->encrypted_samples[i], use_subsamples);
5895 ret = AVERROR(ENOMEM);
5897 if (pb->eof_reached) {
5898 av_log(c->fc, AV_LOG_ERROR, "Hit EOF while reading senc\n");
5899 ret = AVERROR_INVALIDDATA;
5904 av_encryption_info_free(encryption_index->encrypted_samples[i - 1]);
5905 av_freep(&encryption_index->encrypted_samples);
5909 encryption_index->nb_encrypted_samples = sample_count;
5914 static int mov_read_schm(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5917 MOVStreamContext *sc;
5919 if (c->fc->nb_streams < 1)
5921 st = c->fc->streams[c->fc->nb_streams-1];
5924 if (sc->pseudo_stream_id != 0) {
5925 av_log(c->fc, AV_LOG_ERROR, "schm boxes are only supported in first sample descriptor\n");
5926 return AVERROR_PATCHWELCOME;
5930 return AVERROR_INVALIDDATA;
5932 avio_rb32(pb); /* version and flags */
5934 if (!sc->cenc.default_encrypted_sample) {
5935 sc->cenc.default_encrypted_sample = av_encryption_info_alloc(0, 16, 16);
5936 if (!sc->cenc.default_encrypted_sample) {
5937 return AVERROR(ENOMEM);
5941 sc->cenc.default_encrypted_sample->scheme = avio_rb32(pb);
5945 static int mov_read_tenc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
5948 MOVStreamContext *sc;
5949 unsigned int version, pattern, is_protected, iv_size;
5951 if (c->fc->nb_streams < 1)
5953 st = c->fc->streams[c->fc->nb_streams-1];
5956 if (sc->pseudo_stream_id != 0) {
5957 av_log(c->fc, AV_LOG_ERROR, "tenc atom are only supported in first sample descriptor\n");
5958 return AVERROR_PATCHWELCOME;
5961 if (!sc->cenc.default_encrypted_sample) {
5962 sc->cenc.default_encrypted_sample = av_encryption_info_alloc(0, 16, 16);
5963 if (!sc->cenc.default_encrypted_sample) {
5964 return AVERROR(ENOMEM);
5969 return AVERROR_INVALIDDATA;
5971 version = avio_r8(pb); /* version */
5972 avio_rb24(pb); /* flags */
5974 avio_r8(pb); /* reserved */
5975 pattern = avio_r8(pb);
5978 sc->cenc.default_encrypted_sample->crypt_byte_block = pattern >> 4;
5979 sc->cenc.default_encrypted_sample->skip_byte_block = pattern & 0xf;
5982 is_protected = avio_r8(pb);
5983 if (is_protected && !sc->cenc.encryption_index) {
5984 // The whole stream should be by-default encrypted.
5985 sc->cenc.encryption_index = av_mallocz(sizeof(MOVEncryptionIndex));
5986 if (!sc->cenc.encryption_index)
5987 return AVERROR(ENOMEM);
5989 sc->cenc.per_sample_iv_size = avio_r8(pb);
5990 if (avio_read(pb, sc->cenc.default_encrypted_sample->key_id, 16) != 16) {
5991 av_log(c->fc, AV_LOG_ERROR, "failed to read the default key ID");
5992 return AVERROR_INVALIDDATA;
5995 if (is_protected && !sc->cenc.per_sample_iv_size) {
5996 iv_size = avio_r8(pb);
5997 if (iv_size != 8 && iv_size != 16) {
5998 av_log(c->fc, AV_LOG_ERROR, "invalid default_constant_IV_size in tenc atom\n");
5999 return AVERROR_INVALIDDATA;
6002 if (avio_read(pb, sc->cenc.default_encrypted_sample->iv, iv_size) != iv_size) {
6003 av_log(c->fc, AV_LOG_ERROR, "failed to read the default IV");
6004 return AVERROR_INVALIDDATA;
6011 static int mov_read_saiz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6014 MOVStreamContext *sc;
6016 int atom_header_size;
6019 if (c->decryption_key_len == 0 || c->fc->nb_streams < 1)
6022 st = c->fc->streams[c->fc->nb_streams - 1];
6025 if (sc->cenc.auxiliary_info_sizes || sc->cenc.auxiliary_info_default_size) {
6026 av_log(c->fc, AV_LOG_ERROR, "duplicate saiz atom\n");
6027 return AVERROR_INVALIDDATA;
6030 atom_header_size = 9;
6032 avio_r8(pb); /* version */
6033 flags = avio_rb24(pb);
6035 if ((flags & 0x01) != 0) {
6036 atom_header_size += 8;
6038 avio_rb32(pb); /* info type */
6039 avio_rb32(pb); /* info type param */
6042 sc->cenc.auxiliary_info_default_size = avio_r8(pb);
6043 avio_rb32(pb); /* entries */
6045 if (atom.size <= atom_header_size) {
6049 if (atom.size > FFMIN(INT_MAX, SIZE_MAX)) {
6050 av_log(c->fc, AV_LOG_ERROR, "saiz atom auxiliary_info_sizes size %"PRId64" invalid\n", atom.size);
6051 return AVERROR_INVALIDDATA;
6054 /* save the auxiliary info sizes as is */
6055 data_size = atom.size - atom_header_size;
6057 sc->cenc.auxiliary_info_sizes = av_malloc(data_size);
6058 if (!sc->cenc.auxiliary_info_sizes) {
6059 return AVERROR(ENOMEM);
6062 sc->cenc.auxiliary_info_sizes_count = data_size;
6064 if (avio_read(pb, sc->cenc.auxiliary_info_sizes, data_size) != data_size) {
6065 av_log(c->fc, AV_LOG_ERROR, "failed to read the auxiliary info sizes");
6066 return AVERROR_INVALIDDATA;
6072 static int mov_read_dfla(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6075 int last, type, size, ret;
6078 if (c->fc->nb_streams < 1)
6080 st = c->fc->streams[c->fc->nb_streams-1];
6082 if ((uint64_t)atom.size > (1<<30) || atom.size < 42)
6083 return AVERROR_INVALIDDATA;
6085 /* Check FlacSpecificBox version. */
6086 if (avio_r8(pb) != 0)
6087 return AVERROR_INVALIDDATA;
6089 avio_rb24(pb); /* Flags */
6091 avio_read(pb, buf, sizeof(buf));
6092 flac_parse_block_header(buf, &last, &type, &size);
6094 if (type != FLAC_METADATA_TYPE_STREAMINFO || size != FLAC_STREAMINFO_SIZE) {
6095 av_log(c->fc, AV_LOG_ERROR, "STREAMINFO must be first FLACMetadataBlock\n");
6096 return AVERROR_INVALIDDATA;
6099 ret = ff_get_extradata(c->fc, st->codecpar, pb, size);
6104 av_log(c->fc, AV_LOG_WARNING, "non-STREAMINFO FLACMetadataBlock(s) ignored\n");
6109 static int mov_seek_auxiliary_info(MOVContext *c, MOVStreamContext *sc, int64_t index)
6111 size_t auxiliary_info_seek_offset = 0;
6114 if (sc->cenc.auxiliary_info_default_size) {
6115 auxiliary_info_seek_offset = (size_t)sc->cenc.auxiliary_info_default_size * index;
6116 } else if (sc->cenc.auxiliary_info_sizes) {
6117 if (index > sc->cenc.auxiliary_info_sizes_count) {
6118 av_log(c, AV_LOG_ERROR, "current sample %"PRId64" greater than the number of auxiliary info sample sizes %"SIZE_SPECIFIER"\n",
6119 index, sc->cenc.auxiliary_info_sizes_count);
6120 return AVERROR_INVALIDDATA;
6123 for (i = 0; i < index; i++) {
6124 auxiliary_info_seek_offset += sc->cenc.auxiliary_info_sizes[i];
6128 if (auxiliary_info_seek_offset > sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info) {
6129 av_log(c, AV_LOG_ERROR, "auxiliary info offset %"SIZE_SPECIFIER" greater than auxiliary info size %"SIZE_SPECIFIER"\n",
6130 auxiliary_info_seek_offset, (size_t)(sc->cenc.auxiliary_info_end - sc->cenc.auxiliary_info));
6131 return AVERROR_INVALIDDATA;
6134 sc->cenc.auxiliary_info_pos = sc->cenc.auxiliary_info + auxiliary_info_seek_offset;
6135 sc->cenc.auxiliary_info_index = index;
6139 static int cenc_decrypt(MOVContext *c, MOVStreamContext *sc, AVEncryptionInfo *sample, uint8_t *input, int size)
6143 if (sample->scheme != MKBETAG('c','e','n','c') || sample->crypt_byte_block != 0 || sample->skip_byte_block != 0) {
6144 av_log(c->fc, AV_LOG_ERROR, "Only the 'cenc' encryption scheme is supported\n");
6145 return AVERROR_PATCHWELCOME;
6148 if (!sc->cenc.aes_ctr) {
6149 /* initialize the cipher */
6150 sc->cenc.aes_ctr = av_aes_ctr_alloc();
6151 if (!sc->cenc.aes_ctr) {
6152 return AVERROR(ENOMEM);
6155 ret = av_aes_ctr_init(sc->cenc.aes_ctr, c->decryption_key);
6161 av_aes_ctr_set_full_iv(sc->cenc.aes_ctr, sample->iv);
6163 if (!sample->subsample_count)
6165 /* decrypt the whole packet */
6166 av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, size);
6170 for (i = 0; i < sample->subsample_count; i++)
6172 if (sample->subsamples[i].bytes_of_clear_data + sample->subsamples[i].bytes_of_protected_data > size) {
6173 av_log(c->fc, AV_LOG_ERROR, "subsample size exceeds the packet size left\n");
6174 return AVERROR_INVALIDDATA;
6177 /* skip the clear bytes */
6178 input += sample->subsamples[i].bytes_of_clear_data;
6179 size -= sample->subsamples[i].bytes_of_clear_data;
6181 /* decrypt the encrypted bytes */
6182 av_aes_ctr_crypt(sc->cenc.aes_ctr, input, input, sample->subsamples[i].bytes_of_protected_data);
6183 input += sample->subsamples[i].bytes_of_protected_data;
6184 size -= sample->subsamples[i].bytes_of_protected_data;
6188 av_log(c->fc, AV_LOG_ERROR, "leftover packet bytes after subsample processing\n");
6189 return AVERROR_INVALIDDATA;
6195 static int cenc_filter(MOVContext *mov, MOVStreamContext *sc, AVPacket *pkt, int current_index)
6197 MOVFragmentStreamInfo *frag_stream_info;
6198 MOVEncryptionIndex *encryption_index;
6199 AVEncryptionInfo *encrypted_sample;
6200 int encrypted_index;
6202 frag_stream_info = get_current_frag_stream_info(&mov->frag_index);
6203 encrypted_index = current_index;
6204 encryption_index = NULL;
6205 if (frag_stream_info) {
6206 // Note this only supports encryption info in the first sample descriptor.
6207 if (mov->fragment.stsd_id == 1) {
6208 if (frag_stream_info->encryption_index) {
6209 encrypted_index = current_index - frag_stream_info->index_entry;
6210 encryption_index = frag_stream_info->encryption_index;
6212 encryption_index = sc->cenc.encryption_index;
6216 encryption_index = sc->cenc.encryption_index;
6219 if (encryption_index) {
6220 if (!encryption_index->nb_encrypted_samples) {
6221 // Full-sample encryption with default settings.
6222 encrypted_sample = sc->cenc.default_encrypted_sample;
6223 } else if (encrypted_index >= 0 && encrypted_index < encryption_index->nb_encrypted_samples) {
6224 // Per-sample setting override.
6225 encrypted_sample = encryption_index->encrypted_samples[encrypted_index];
6227 av_log(mov->fc, AV_LOG_ERROR, "Incorrect number of samples in encryption info\n");
6228 return AVERROR_INVALIDDATA;
6231 if (mov->decryption_key) {
6232 return cenc_decrypt(mov, sc, encrypted_sample, pkt->data, pkt->size);
6239 static int mov_read_dops(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6241 const int OPUS_SEEK_PREROLL_MS = 80;
6246 if (c->fc->nb_streams < 1)
6248 st = c->fc->streams[c->fc->nb_streams-1];
6250 if ((uint64_t)atom.size > (1<<30) || atom.size < 11)
6251 return AVERROR_INVALIDDATA;
6253 /* Check OpusSpecificBox version. */
6254 if (avio_r8(pb) != 0) {
6255 av_log(c->fc, AV_LOG_ERROR, "unsupported OpusSpecificBox version\n");
6256 return AVERROR_INVALIDDATA;
6259 /* OpusSpecificBox size plus magic for Ogg OpusHead header. */
6260 size = atom.size + 8;
6262 if (ff_alloc_extradata(st->codecpar, size))
6263 return AVERROR(ENOMEM);
6265 AV_WL32(st->codecpar->extradata, MKTAG('O','p','u','s'));
6266 AV_WL32(st->codecpar->extradata + 4, MKTAG('H','e','a','d'));
6267 AV_WB8(st->codecpar->extradata + 8, 1); /* OpusHead version */
6268 avio_read(pb, st->codecpar->extradata + 9, size - 9);
6270 /* OpusSpecificBox is stored in big-endian, but OpusHead is
6271 little-endian; aside from the preceeding magic and version they're
6272 otherwise currently identical. Data after output gain at offset 16
6273 doesn't need to be bytewapped. */
6274 pre_skip = AV_RB16(st->codecpar->extradata + 10);
6275 AV_WL16(st->codecpar->extradata + 10, pre_skip);
6276 AV_WL32(st->codecpar->extradata + 12, AV_RB32(st->codecpar->extradata + 12));
6277 AV_WL16(st->codecpar->extradata + 16, AV_RB16(st->codecpar->extradata + 16));
6279 st->codecpar->initial_padding = pre_skip;
6280 st->codecpar->seek_preroll = av_rescale_q(OPUS_SEEK_PREROLL_MS,
6281 (AVRational){1, 1000},
6282 (AVRational){1, 48000});
6287 static const MOVParseTableEntry mov_default_parse_table[] = {
6288 { MKTAG('A','C','L','R'), mov_read_aclr },
6289 { MKTAG('A','P','R','G'), mov_read_avid },
6290 { MKTAG('A','A','L','P'), mov_read_avid },
6291 { MKTAG('A','R','E','S'), mov_read_ares },
6292 { MKTAG('a','v','s','s'), mov_read_avss },
6293 { MKTAG('c','h','p','l'), mov_read_chpl },
6294 { MKTAG('c','o','6','4'), mov_read_stco },
6295 { MKTAG('c','o','l','r'), mov_read_colr },
6296 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
6297 { MKTAG('d','i','n','f'), mov_read_default },
6298 { MKTAG('D','p','x','E'), mov_read_dpxe },
6299 { MKTAG('d','r','e','f'), mov_read_dref },
6300 { MKTAG('e','d','t','s'), mov_read_default },
6301 { MKTAG('e','l','s','t'), mov_read_elst },
6302 { MKTAG('e','n','d','a'), mov_read_enda },
6303 { MKTAG('f','i','e','l'), mov_read_fiel },
6304 { MKTAG('a','d','r','m'), mov_read_adrm },
6305 { MKTAG('f','t','y','p'), mov_read_ftyp },
6306 { MKTAG('g','l','b','l'), mov_read_glbl },
6307 { MKTAG('h','d','l','r'), mov_read_hdlr },
6308 { MKTAG('i','l','s','t'), mov_read_ilst },
6309 { MKTAG('j','p','2','h'), mov_read_jp2h },
6310 { MKTAG('m','d','a','t'), mov_read_mdat },
6311 { MKTAG('m','d','h','d'), mov_read_mdhd },
6312 { MKTAG('m','d','i','a'), mov_read_default },
6313 { MKTAG('m','e','t','a'), mov_read_meta },
6314 { MKTAG('m','i','n','f'), mov_read_default },
6315 { MKTAG('m','o','o','f'), mov_read_moof },
6316 { MKTAG('m','o','o','v'), mov_read_moov },
6317 { MKTAG('m','v','e','x'), mov_read_default },
6318 { MKTAG('m','v','h','d'), mov_read_mvhd },
6319 { MKTAG('S','M','I',' '), mov_read_svq3 },
6320 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
6321 { MKTAG('a','v','c','C'), mov_read_glbl },
6322 { MKTAG('p','a','s','p'), mov_read_pasp },
6323 { MKTAG('s','i','d','x'), mov_read_sidx },
6324 { MKTAG('s','t','b','l'), mov_read_default },
6325 { MKTAG('s','t','c','o'), mov_read_stco },
6326 { MKTAG('s','t','p','s'), mov_read_stps },
6327 { MKTAG('s','t','r','f'), mov_read_strf },
6328 { MKTAG('s','t','s','c'), mov_read_stsc },
6329 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
6330 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
6331 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
6332 { MKTAG('s','t','t','s'), mov_read_stts },
6333 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
6334 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
6335 { MKTAG('t','f','d','t'), mov_read_tfdt },
6336 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
6337 { MKTAG('t','r','a','k'), mov_read_trak },
6338 { MKTAG('t','r','a','f'), mov_read_default },
6339 { MKTAG('t','r','e','f'), mov_read_default },
6340 { MKTAG('t','m','c','d'), mov_read_tmcd },
6341 { MKTAG('c','h','a','p'), mov_read_chap },
6342 { MKTAG('t','r','e','x'), mov_read_trex },
6343 { MKTAG('t','r','u','n'), mov_read_trun },
6344 { MKTAG('u','d','t','a'), mov_read_default },
6345 { MKTAG('w','a','v','e'), mov_read_wave },
6346 { MKTAG('e','s','d','s'), mov_read_esds },
6347 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
6348 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
6349 { MKTAG('d','d','t','s'), mov_read_ddts }, /* DTS audio descriptor */
6350 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
6351 { MKTAG('w','f','e','x'), mov_read_wfex },
6352 { MKTAG('c','m','o','v'), mov_read_cmov },
6353 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
6354 { MKTAG('d','v','c','1'), mov_read_dvc1 },
6355 { MKTAG('s','b','g','p'), mov_read_sbgp },
6356 { MKTAG('h','v','c','C'), mov_read_glbl },
6357 { MKTAG('u','u','i','d'), mov_read_uuid },
6358 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
6359 { MKTAG('f','r','e','e'), mov_read_free },
6360 { MKTAG('-','-','-','-'), mov_read_custom },
6361 { MKTAG('s','i','n','f'), mov_read_default },
6362 { MKTAG('f','r','m','a'), mov_read_frma },
6363 { MKTAG('s','e','n','c'), mov_read_senc },
6364 { MKTAG('s','c','h','m'), mov_read_schm },
6365 { MKTAG('s','c','h','i'), mov_read_default },
6366 { MKTAG('t','e','n','c'), mov_read_tenc },
6367 { MKTAG('d','f','L','a'), mov_read_dfla },
6368 { MKTAG('s','t','3','d'), mov_read_st3d }, /* stereoscopic 3D video box */
6369 { MKTAG('s','v','3','d'), mov_read_sv3d }, /* spherical video box */
6370 { MKTAG('d','O','p','s'), mov_read_dops },
6371 { MKTAG('S','m','D','m'), mov_read_smdm },
6372 { MKTAG('C','o','L','L'), mov_read_coll },
6373 { MKTAG('v','p','c','C'), mov_read_vpcc },
6374 { MKTAG('m','d','c','v'), mov_read_mdcv },
6375 { MKTAG('c','l','l','i'), mov_read_clli },
6379 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
6381 int64_t total_size = 0;
6385 if (c->atom_depth > 10) {
6386 av_log(c->fc, AV_LOG_ERROR, "Atoms too deeply nested\n");
6387 return AVERROR_INVALIDDATA;
6392 atom.size = INT64_MAX;
6393 while (total_size <= atom.size - 8 && !avio_feof(pb)) {
6394 int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
6397 if (atom.size >= 8) {
6398 a.size = avio_rb32(pb);
6399 a.type = avio_rl32(pb);
6400 if (a.type == MKTAG('f','r','e','e') &&
6402 c->fc->strict_std_compliance < FF_COMPLIANCE_STRICT &&
6405 uint32_t *type = (uint32_t *)buf + 1;
6406 if (avio_read(pb, buf, 8) != 8)
6407 return AVERROR_INVALIDDATA;
6408 avio_seek(pb, -8, SEEK_CUR);
6409 if (*type == MKTAG('m','v','h','d') ||
6410 *type == MKTAG('c','m','o','v')) {
6411 av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
6412 a.type = MKTAG('m','o','o','v');
6415 if (atom.type != MKTAG('r','o','o','t') &&
6416 atom.type != MKTAG('m','o','o','v'))
6418 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
6420 av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
6427 if (a.size == 1 && total_size + 8 <= atom.size) { /* 64 bit extended size */
6428 a.size = avio_rb64(pb) - 8;
6432 av_log(c->fc, AV_LOG_TRACE, "type:'%s' parent:'%s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
6433 av_fourcc2str(a.type), av_fourcc2str(atom.type), a.size, total_size, atom.size);
6435 a.size = atom.size - total_size + 8;
6440 a.size = FFMIN(a.size, atom.size - total_size);
6442 for (i = 0; mov_default_parse_table[i].type; i++)
6443 if (mov_default_parse_table[i].type == a.type) {
6444 parse = mov_default_parse_table[i].parse;
6448 // container is user data
6449 if (!parse && (atom.type == MKTAG('u','d','t','a') ||
6450 atom.type == MKTAG('i','l','s','t')))
6451 parse = mov_read_udta_string;
6453 // Supports parsing the QuickTime Metadata Keys.
6454 // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html
6455 if (!parse && c->found_hdlr_mdta &&
6456 atom.type == MKTAG('m','e','t','a') &&
6457 a.type == MKTAG('k','e','y','s')) {
6458 parse = mov_read_keys;
6461 if (!parse) { /* skip leaf atoms data */
6462 avio_skip(pb, a.size);
6464 int64_t start_pos = avio_tell(pb);
6466 int err = parse(c, pb, a);
6471 if (c->found_moov && c->found_mdat &&
6472 ((!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete) ||
6473 start_pos + a.size == avio_size(pb))) {
6474 if (!(pb->seekable & AVIO_SEEKABLE_NORMAL) || c->fc->flags & AVFMT_FLAG_IGNIDX || c->frag_index.complete)
6475 c->next_root_atom = start_pos + a.size;
6479 left = a.size - avio_tell(pb) + start_pos;
6480 if (left > 0) /* skip garbage at atom end */
6481 avio_skip(pb, left);
6482 else if (left < 0) {
6483 av_log(c->fc, AV_LOG_WARNING,
6484 "overread end of atom '%.4s' by %"PRId64" bytes\n",
6485 (char*)&a.type, -left);
6486 avio_seek(pb, left, SEEK_CUR);
6490 total_size += a.size;
6493 if (total_size < atom.size && atom.size < 0x7ffff)
6494 avio_skip(pb, atom.size - total_size);
6500 static int mov_probe(AVProbeData *p)
6505 int moov_offset = -1;
6507 /* check file header */
6510 /* ignore invalid offset */
6511 if ((offset + 8) > (unsigned int)p->buf_size)
6513 tag = AV_RL32(p->buf + offset + 4);
6515 /* check for obvious tags */
6516 case MKTAG('m','o','o','v'):
6517 moov_offset = offset + 4;
6518 case MKTAG('m','d','a','t'):
6519 case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
6520 case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
6521 case MKTAG('f','t','y','p'):
6522 if (AV_RB32(p->buf+offset) < 8 &&
6523 (AV_RB32(p->buf+offset) != 1 ||
6524 offset + 12 > (unsigned int)p->buf_size ||
6525 AV_RB64(p->buf+offset + 8) == 0)) {
6526 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6527 } else if (tag == MKTAG('f','t','y','p') &&
6528 ( AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')
6529 || AV_RL32(p->buf + offset + 8) == MKTAG('j','p','x',' ')
6531 score = FFMAX(score, 5);
6533 score = AVPROBE_SCORE_MAX;
6535 offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6537 /* those are more common words, so rate then a bit less */
6538 case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
6539 case MKTAG('w','i','d','e'):
6540 case MKTAG('f','r','e','e'):
6541 case MKTAG('j','u','n','k'):
6542 case MKTAG('p','i','c','t'):
6543 score = FFMAX(score, AVPROBE_SCORE_MAX - 5);
6544 offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6546 case MKTAG(0x82,0x82,0x7f,0x7d):
6547 case MKTAG('s','k','i','p'):
6548 case MKTAG('u','u','i','d'):
6549 case MKTAG('p','r','f','l'):
6550 /* if we only find those cause probedata is too small at least rate them */
6551 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
6552 offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6555 offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
6558 if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
6559 /* moov atom in the header - we should make sure that this is not a
6560 * MOV-packed MPEG-PS */
6561 offset = moov_offset;
6563 while(offset < (p->buf_size - 16)){ /* Sufficient space */
6564 /* We found an actual hdlr atom */
6565 if(AV_RL32(p->buf + offset ) == MKTAG('h','d','l','r') &&
6566 AV_RL32(p->buf + offset + 8) == MKTAG('m','h','l','r') &&
6567 AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
6568 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
6569 /* We found a media handler reference atom describing an
6570 * MPEG-PS-in-MOV, return a
6571 * low score to force expanding the probe window until
6572 * mpegps_probe finds what it needs */
6583 // must be done after parsing all trak because there's no order requirement
6584 static void mov_read_chapters(AVFormatContext *s)
6586 MOVContext *mov = s->priv_data;
6588 MOVStreamContext *sc;
6593 for (j = 0; j < mov->nb_chapter_tracks; j++) {
6594 chapter_track = mov->chapter_tracks[j];
6596 for (i = 0; i < s->nb_streams; i++)
6597 if (s->streams[i]->id == chapter_track) {
6602 av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
6607 cur_pos = avio_tell(sc->pb);
6609 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6610 st->disposition |= AV_DISPOSITION_ATTACHED_PIC | AV_DISPOSITION_TIMED_THUMBNAILS;
6611 if (st->nb_index_entries) {
6612 // Retrieve the first frame, if possible
6614 AVIndexEntry *sample = &st->index_entries[0];
6615 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
6616 av_log(s, AV_LOG_ERROR, "Failed to retrieve first frame\n");
6620 if (av_get_packet(sc->pb, &pkt, sample->size) < 0)
6623 st->attached_pic = pkt;
6624 st->attached_pic.stream_index = st->index;
6625 st->attached_pic.flags |= AV_PKT_FLAG_KEY;
6628 st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
6629 st->codecpar->codec_id = AV_CODEC_ID_BIN_DATA;
6630 st->discard = AVDISCARD_ALL;
6631 for (i = 0; i < st->nb_index_entries; i++) {
6632 AVIndexEntry *sample = &st->index_entries[i];
6633 int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
6638 if (end < sample->timestamp) {
6639 av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
6640 end = AV_NOPTS_VALUE;
6643 if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
6644 av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
6648 // the first two bytes are the length of the title
6649 len = avio_rb16(sc->pb);
6650 if (len > sample->size-2)
6652 title_len = 2*len + 1;
6653 if (!(title = av_mallocz(title_len)))
6656 // The samples could theoretically be in any encoding if there's an encd
6657 // atom following, but in practice are only utf-8 or utf-16, distinguished
6658 // instead by the presence of a BOM
6662 ch = avio_rb16(sc->pb);
6664 avio_get_str16be(sc->pb, len, title, title_len);
6665 else if (ch == 0xfffe)
6666 avio_get_str16le(sc->pb, len, title, title_len);
6669 if (len == 1 || len == 2)
6672 avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
6676 avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
6681 avio_seek(sc->pb, cur_pos, SEEK_SET);
6685 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
6686 uint32_t value, int flags)
6689 char buf[AV_TIMECODE_STR_SIZE];
6690 AVRational rate = st->avg_frame_rate;
6691 int ret = av_timecode_init(&tc, rate, flags, 0, s);
6694 av_dict_set(&st->metadata, "timecode",
6695 av_timecode_make_string(&tc, buf, value), 0);
6699 static int mov_read_rtmd_track(AVFormatContext *s, AVStream *st)
6701 MOVStreamContext *sc = st->priv_data;
6702 char buf[AV_TIMECODE_STR_SIZE];
6703 int64_t cur_pos = avio_tell(sc->pb);
6704 int hh, mm, ss, ff, drop;
6706 if (!st->nb_index_entries)
6709 avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
6710 avio_skip(s->pb, 13);
6711 hh = avio_r8(s->pb);
6712 mm = avio_r8(s->pb);
6713 ss = avio_r8(s->pb);
6714 drop = avio_r8(s->pb);
6715 ff = avio_r8(s->pb);
6716 snprintf(buf, AV_TIMECODE_STR_SIZE, "%02d:%02d:%02d%c%02d",
6717 hh, mm, ss, drop ? ';' : ':', ff);
6718 av_dict_set(&st->metadata, "timecode", buf, 0);
6720 avio_seek(sc->pb, cur_pos, SEEK_SET);
6724 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
6726 MOVStreamContext *sc = st->priv_data;
6728 int64_t cur_pos = avio_tell(sc->pb);
6731 if (!st->nb_index_entries)
6734 avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
6735 value = avio_rb32(s->pb);
6737 if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
6738 if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
6739 if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
6741 /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
6742 * not the case) and thus assume "frame number format" instead of QT one.
6743 * No sample with tmcd track can be found with a QT timecode at the moment,
6744 * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
6746 parse_timecode_in_framenum_format(s, st, value, flags);
6748 avio_seek(sc->pb, cur_pos, SEEK_SET);
6752 static void mov_free_encryption_index(MOVEncryptionIndex **index) {
6754 if (!index || !*index) return;
6755 for (i = 0; i < (*index)->nb_encrypted_samples; i++) {
6756 av_encryption_info_free((*index)->encrypted_samples[i]);
6758 av_freep(&(*index)->encrypted_samples);
6762 static int mov_read_close(AVFormatContext *s)
6764 MOVContext *mov = s->priv_data;
6767 for (i = 0; i < s->nb_streams; i++) {
6768 AVStream *st = s->streams[i];
6769 MOVStreamContext *sc = st->priv_data;
6774 av_freep(&sc->ctts_data);
6775 for (j = 0; j < sc->drefs_count; j++) {
6776 av_freep(&sc->drefs[j].path);
6777 av_freep(&sc->drefs[j].dir);
6779 av_freep(&sc->drefs);
6781 sc->drefs_count = 0;
6783 if (!sc->pb_is_copied)
6784 ff_format_io_close(s, &sc->pb);
6787 av_freep(&sc->chunk_offsets);
6788 av_freep(&sc->stsc_data);
6789 av_freep(&sc->sample_sizes);
6790 av_freep(&sc->keyframes);
6791 av_freep(&sc->stts_data);
6792 av_freep(&sc->stps_data);
6793 av_freep(&sc->elst_data);
6794 av_freep(&sc->rap_group);
6795 av_freep(&sc->display_matrix);
6796 av_freep(&sc->index_ranges);
6799 for (j = 0; j < sc->stsd_count; j++)
6800 av_free(sc->extradata[j]);
6801 av_freep(&sc->extradata);
6802 av_freep(&sc->extradata_size);
6804 mov_free_encryption_index(&sc->cenc.encryption_index);
6805 av_encryption_info_free(sc->cenc.default_encrypted_sample);
6806 av_aes_ctr_free(sc->cenc.aes_ctr);
6808 av_freep(&sc->stereo3d);
6809 av_freep(&sc->spherical);
6810 av_freep(&sc->mastering);
6811 av_freep(&sc->coll);
6814 if (mov->dv_demux) {
6815 avformat_free_context(mov->dv_fctx);
6816 mov->dv_fctx = NULL;
6819 if (mov->meta_keys) {
6820 for (i = 1; i < mov->meta_keys_count; i++) {
6821 av_freep(&mov->meta_keys[i]);
6823 av_freep(&mov->meta_keys);
6826 av_freep(&mov->trex_data);
6827 av_freep(&mov->bitrates);
6829 for (i = 0; i < mov->frag_index.nb_items; i++) {
6830 MOVFragmentStreamInfo *frag = mov->frag_index.item[i].stream_info;
6831 for (j = 0; j < mov->frag_index.item[i].nb_stream_info; j++) {
6832 mov_free_encryption_index(&frag[j].encryption_index);
6834 av_freep(&mov->frag_index.item[i].stream_info);
6836 av_freep(&mov->frag_index.item);
6838 av_freep(&mov->aes_decrypt);
6839 av_freep(&mov->chapter_tracks);
6844 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
6848 for (i = 0; i < s->nb_streams; i++) {
6849 AVStream *st = s->streams[i];
6850 MOVStreamContext *sc = st->priv_data;
6852 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
6853 sc->timecode_track == tmcd_id)
6859 /* look for a tmcd track not referenced by any video track, and export it globally */
6860 static void export_orphan_timecode(AVFormatContext *s)
6864 for (i = 0; i < s->nb_streams; i++) {
6865 AVStream *st = s->streams[i];
6867 if (st->codecpar->codec_tag == MKTAG('t','m','c','d') &&
6868 !tmcd_is_referenced(s, i + 1)) {
6869 AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
6871 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
6878 static int read_tfra(MOVContext *mov, AVIOContext *f)
6880 int version, fieldlength, i, j;
6881 int64_t pos = avio_tell(f);
6882 uint32_t size = avio_rb32(f);
6883 unsigned track_id, item_count;
6885 if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
6888 av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
6890 version = avio_r8(f);
6892 track_id = avio_rb32(f);
6893 fieldlength = avio_rb32(f);
6894 item_count = avio_rb32(f);
6895 for (i = 0; i < item_count; i++) {
6896 int64_t time, offset;
6898 MOVFragmentStreamInfo * frag_stream_info;
6901 return AVERROR_INVALIDDATA;
6905 time = avio_rb64(f);
6906 offset = avio_rb64(f);
6908 time = avio_rb32(f);
6909 offset = avio_rb32(f);
6912 // The first sample of each stream in a fragment is always a random
6913 // access sample. So it's entry in the tfra can be used as the
6914 // initial PTS of the fragment.
6915 index = update_frag_index(mov, offset);
6916 frag_stream_info = get_frag_stream_info(&mov->frag_index, index, track_id);
6917 if (frag_stream_info &&
6918 frag_stream_info->first_tfra_pts == AV_NOPTS_VALUE)
6919 frag_stream_info->first_tfra_pts = time;
6921 for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
6923 for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
6925 for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
6929 avio_seek(f, pos + size, SEEK_SET);
6933 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
6935 int64_t stream_size = avio_size(f);
6936 int64_t original_pos = avio_tell(f);
6940 if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
6944 mfra_size = avio_rb32(f);
6945 if (mfra_size < 0 || mfra_size > stream_size) {
6946 av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
6949 if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
6953 if (avio_rb32(f) != mfra_size) {
6954 av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
6957 if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
6958 av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
6961 av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
6963 ret = read_tfra(c, f);
6969 seek_ret = avio_seek(f, original_pos, SEEK_SET);
6971 av_log(c->fc, AV_LOG_ERROR,
6972 "failed to seek back after looking for mfra\n");
6978 static int mov_read_header(AVFormatContext *s)
6980 MOVContext *mov = s->priv_data;
6981 AVIOContext *pb = s->pb;
6983 MOVAtom atom = { AV_RL32("root") };
6986 if (mov->decryption_key_len != 0 && mov->decryption_key_len != AES_CTR_KEY_SIZE) {
6987 av_log(s, AV_LOG_ERROR, "Invalid decryption key len %d expected %d\n",
6988 mov->decryption_key_len, AES_CTR_KEY_SIZE);
6989 return AVERROR(EINVAL);
6993 mov->trak_index = -1;
6994 /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
6995 if (pb->seekable & AVIO_SEEKABLE_NORMAL)
6996 atom.size = avio_size(pb);
6998 atom.size = INT64_MAX;
7000 /* check MOV header */
7002 if (mov->moov_retry)
7003 avio_seek(pb, 0, SEEK_SET);
7004 if ((err = mov_read_default(mov, pb, atom)) < 0) {
7005 av_log(s, AV_LOG_ERROR, "error reading header\n");
7009 } while ((pb->seekable & AVIO_SEEKABLE_NORMAL) && !mov->found_moov && !mov->moov_retry++);
7010 if (!mov->found_moov) {
7011 av_log(s, AV_LOG_ERROR, "moov atom not found\n");
7013 return AVERROR_INVALIDDATA;
7015 av_log(mov->fc, AV_LOG_TRACE, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
7017 if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
7018 if (mov->nb_chapter_tracks > 0 && !mov->ignore_chapters)
7019 mov_read_chapters(s);
7020 for (i = 0; i < s->nb_streams; i++)
7021 if (s->streams[i]->codecpar->codec_tag == AV_RL32("tmcd")) {
7022 mov_read_timecode_track(s, s->streams[i]);
7023 } else if (s->streams[i]->codecpar->codec_tag == AV_RL32("rtmd")) {
7024 mov_read_rtmd_track(s, s->streams[i]);
7028 /* copy timecode metadata from tmcd tracks to the related video streams */
7029 for (i = 0; i < s->nb_streams; i++) {
7030 AVStream *st = s->streams[i];
7031 MOVStreamContext *sc = st->priv_data;
7032 if (sc->timecode_track > 0) {
7033 AVDictionaryEntry *tcr;
7034 int tmcd_st_id = -1;
7036 for (j = 0; j < s->nb_streams; j++)
7037 if (s->streams[j]->id == sc->timecode_track)
7040 if (tmcd_st_id < 0 || tmcd_st_id == i)
7042 tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
7044 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
7047 export_orphan_timecode(s);
7049 for (i = 0; i < s->nb_streams; i++) {
7050 AVStream *st = s->streams[i];
7051 MOVStreamContext *sc = st->priv_data;
7052 fix_timescale(mov, sc);
7053 if(st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && st->codecpar->codec_id == AV_CODEC_ID_AAC) {
7054 st->skip_samples = sc->start_pad;
7056 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
7057 av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
7058 sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
7059 if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
7060 if (st->codecpar->width <= 0 || st->codecpar->height <= 0) {
7061 st->codecpar->width = sc->width;
7062 st->codecpar->height = sc->height;
7064 if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
7065 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
7069 if (mov->handbrake_version &&
7070 mov->handbrake_version <= 1000000*0 + 1000*10 + 2 && // 0.10.2
7071 st->codecpar->codec_id == AV_CODEC_ID_MP3
7073 av_log(s, AV_LOG_VERBOSE, "Forcing full parsing for mp3 stream\n");
7074 st->need_parsing = AVSTREAM_PARSE_FULL;
7078 if (mov->trex_data) {
7079 for (i = 0; i < s->nb_streams; i++) {
7080 AVStream *st = s->streams[i];
7081 MOVStreamContext *sc = st->priv_data;
7082 if (st->duration > 0) {
7083 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
7084 av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
7085 sc->data_size, sc->time_scale);
7087 return AVERROR_INVALIDDATA;
7089 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
7094 if (mov->use_mfra_for > 0) {
7095 for (i = 0; i < s->nb_streams; i++) {
7096 AVStream *st = s->streams[i];
7097 MOVStreamContext *sc = st->priv_data;
7098 if (sc->duration_for_fps > 0) {
7099 if (sc->data_size > INT64_MAX / sc->time_scale / 8) {
7100 av_log(s, AV_LOG_ERROR, "Overflow during bit rate calculation %"PRId64" * 8 * %d\n",
7101 sc->data_size, sc->time_scale);
7103 return AVERROR_INVALIDDATA;
7105 st->codecpar->bit_rate = sc->data_size * 8 * sc->time_scale /
7106 sc->duration_for_fps;
7111 for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
7112 if (mov->bitrates[i]) {
7113 s->streams[i]->codecpar->bit_rate = mov->bitrates[i];
7117 ff_rfps_calculate(s);
7119 for (i = 0; i < s->nb_streams; i++) {
7120 AVStream *st = s->streams[i];
7121 MOVStreamContext *sc = st->priv_data;
7123 switch (st->codecpar->codec_type) {
7124 case AVMEDIA_TYPE_AUDIO:
7125 err = ff_replaygain_export(st, s->metadata);
7131 case AVMEDIA_TYPE_VIDEO:
7132 if (sc->display_matrix) {
7133 err = av_stream_add_side_data(st, AV_PKT_DATA_DISPLAYMATRIX, (uint8_t*)sc->display_matrix,
7134 sizeof(int32_t) * 9);
7138 sc->display_matrix = NULL;
7141 err = av_stream_add_side_data(st, AV_PKT_DATA_STEREO3D,
7142 (uint8_t *)sc->stereo3d,
7143 sizeof(*sc->stereo3d));
7147 sc->stereo3d = NULL;
7149 if (sc->spherical) {
7150 err = av_stream_add_side_data(st, AV_PKT_DATA_SPHERICAL,
7151 (uint8_t *)sc->spherical,
7152 sc->spherical_size);
7156 sc->spherical = NULL;
7158 if (sc->mastering) {
7159 err = av_stream_add_side_data(st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA,
7160 (uint8_t *)sc->mastering,
7161 sizeof(*sc->mastering));
7165 sc->mastering = NULL;
7168 err = av_stream_add_side_data(st, AV_PKT_DATA_CONTENT_LIGHT_LEVEL,
7169 (uint8_t *)sc->coll,
7179 ff_configure_buffers_for_index(s, AV_TIME_BASE);
7181 for (i = 0; i < mov->frag_index.nb_items; i++)
7182 if (mov->frag_index.item[i].moof_offset <= mov->fragment.moof_offset)
7183 mov->frag_index.item[i].headers_read = 1;
7188 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
7190 AVIndexEntry *sample = NULL;
7191 int64_t best_dts = INT64_MAX;
7193 for (i = 0; i < s->nb_streams; i++) {
7194 AVStream *avst = s->streams[i];
7195 MOVStreamContext *msc = avst->priv_data;
7196 if (msc->pb && msc->current_sample < avst->nb_index_entries) {
7197 AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
7198 int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
7199 av_log(s, AV_LOG_TRACE, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
7200 if (!sample || (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) && current_sample->pos < sample->pos) ||
7201 ((s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
7202 ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
7203 ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
7204 (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
7205 sample = current_sample;
7214 static int should_retry(AVIOContext *pb, int error_code) {
7215 if (error_code == AVERROR_EOF || avio_feof(pb))
7221 static int mov_switch_root(AVFormatContext *s, int64_t target, int index)
7224 MOVContext *mov = s->priv_data;
7226 if (index >= 0 && index < mov->frag_index.nb_items)
7227 target = mov->frag_index.item[index].moof_offset;
7228 if (avio_seek(s->pb, target, SEEK_SET) != target) {
7229 av_log(mov->fc, AV_LOG_ERROR, "root atom offset 0x%"PRIx64": partial file\n", target);
7230 return AVERROR_INVALIDDATA;
7233 mov->next_root_atom = 0;
7234 if (index < 0 || index >= mov->frag_index.nb_items)
7235 index = search_frag_moof_offset(&mov->frag_index, target);
7236 if (index < mov->frag_index.nb_items) {
7237 if (index + 1 < mov->frag_index.nb_items)
7238 mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
7239 if (mov->frag_index.item[index].headers_read)
7241 mov->frag_index.item[index].headers_read = 1;
7244 mov->found_mdat = 0;
7246 ret = mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX });
7249 if (avio_feof(s->pb))
7251 av_log(s, AV_LOG_TRACE, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
7256 static int mov_change_extradata(MOVStreamContext *sc, AVPacket *pkt)
7258 uint8_t *side, *extradata;
7261 /* Save the current index. */
7262 sc->last_stsd_index = sc->stsc_data[sc->stsc_index].id - 1;
7264 /* Notify the decoder that extradata changed. */
7265 extradata_size = sc->extradata_size[sc->last_stsd_index];
7266 extradata = sc->extradata[sc->last_stsd_index];
7267 if (extradata_size > 0 && extradata) {
7268 side = av_packet_new_side_data(pkt,
7269 AV_PKT_DATA_NEW_EXTRADATA,
7272 return AVERROR(ENOMEM);
7273 memcpy(side, extradata, extradata_size);
7279 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
7281 MOVContext *mov = s->priv_data;
7282 MOVStreamContext *sc;
7283 AVIndexEntry *sample;
7284 AVStream *st = NULL;
7285 int64_t current_index;
7289 sample = mov_find_next_sample(s, &st);
7290 if (!sample || (mov->next_root_atom && sample->pos > mov->next_root_atom)) {
7291 if (!mov->next_root_atom)
7293 if ((ret = mov_switch_root(s, mov->next_root_atom, -1)) < 0)
7298 /* must be done just before reading, to avoid infinite loop on sample */
7299 current_index = sc->current_index;
7300 mov_current_sample_inc(sc);
7302 if (mov->next_root_atom) {
7303 sample->pos = FFMIN(sample->pos, mov->next_root_atom);
7304 sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
7307 if (st->discard != AVDISCARD_ALL) {
7308 int64_t ret64 = avio_seek(sc->pb, sample->pos, SEEK_SET);
7309 if (ret64 != sample->pos) {
7310 av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
7311 sc->ffindex, sample->pos);
7312 if (should_retry(sc->pb, ret64)) {
7313 mov_current_sample_dec(sc);
7315 return AVERROR_INVALIDDATA;
7318 if( st->discard == AVDISCARD_NONKEY && 0==(sample->flags & AVINDEX_KEYFRAME) ) {
7319 av_log(mov->fc, AV_LOG_DEBUG, "Nonkey frame from stream %d discarded due to AVDISCARD_NONKEY\n", sc->ffindex);
7323 ret = av_get_packet(sc->pb, pkt, sample->size);
7325 if (should_retry(sc->pb, ret)) {
7326 mov_current_sample_dec(sc);
7330 if (sc->has_palette) {
7333 pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
7335 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
7337 memcpy(pal, sc->palette, AVPALETTE_SIZE);
7338 sc->has_palette = 0;
7341 #if CONFIG_DV_DEMUXER
7342 if (mov->dv_demux && sc->dv_audio_container) {
7343 avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
7344 av_freep(&pkt->data);
7346 ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
7351 if (st->codecpar->codec_id == AV_CODEC_ID_MP3 && !st->need_parsing && pkt->size > 4) {
7352 if (ff_mpa_check_header(AV_RB32(pkt->data)) < 0)
7353 st->need_parsing = AVSTREAM_PARSE_FULL;
7357 pkt->stream_index = sc->ffindex;
7358 pkt->dts = sample->timestamp;
7359 if (sample->flags & AVINDEX_DISCARD_FRAME) {
7360 pkt->flags |= AV_PKT_FLAG_DISCARD;
7362 if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
7363 pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
7364 /* update ctts context */
7366 if (sc->ctts_index < sc->ctts_count &&
7367 sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
7369 sc->ctts_sample = 0;
7372 int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
7373 st->index_entries[sc->current_sample].timestamp : st->duration;
7374 pkt->duration = next_dts - pkt->dts;
7375 pkt->pts = pkt->dts;
7377 if (st->discard == AVDISCARD_ALL)
7379 pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
7380 pkt->pos = sample->pos;
7382 /* Multiple stsd handling. */
7383 if (sc->stsc_data) {
7384 /* Keep track of the stsc index for the given sample, then check
7385 * if the stsd index is different from the last used one. */
7387 if (mov_stsc_index_valid(sc->stsc_index, sc->stsc_count) &&
7388 mov_get_stsc_samples(sc, sc->stsc_index) == sc->stsc_sample) {
7390 sc->stsc_sample = 0;
7391 /* Do not check indexes after a switch. */
7392 } else if (sc->stsc_data[sc->stsc_index].id > 0 &&
7393 sc->stsc_data[sc->stsc_index].id - 1 < sc->stsd_count &&
7394 sc->stsc_data[sc->stsc_index].id - 1 != sc->last_stsd_index) {
7395 ret = mov_change_extradata(sc, pkt);
7402 aax_filter(pkt->data, pkt->size, mov);
7404 ret = cenc_filter(mov, sc, pkt, current_index);
7411 static int mov_seek_fragment(AVFormatContext *s, AVStream *st, int64_t timestamp)
7413 MOVContext *mov = s->priv_data;
7416 if (!mov->frag_index.complete)
7419 index = search_frag_timestamp(&mov->frag_index, st, timestamp);
7422 if (!mov->frag_index.item[index].headers_read)
7423 return mov_switch_root(s, -1, index);
7424 if (index + 1 < mov->frag_index.nb_items)
7425 mov->next_root_atom = mov->frag_index.item[index + 1].moof_offset;
7430 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
7432 MOVStreamContext *sc = st->priv_data;
7433 int sample, time_sample, ret;
7436 // Here we consider timestamp to be PTS, hence try to offset it so that we
7437 // can search over the DTS timeline.
7438 timestamp -= (sc->min_corrected_pts + sc->dts_shift);
7440 ret = mov_seek_fragment(s, st, timestamp);
7444 sample = av_index_search_timestamp(st, timestamp, flags);
7445 av_log(s, AV_LOG_TRACE, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
7446 if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
7448 if (sample < 0) /* not sure what to do */
7449 return AVERROR_INVALIDDATA;
7450 mov_current_sample_set(sc, sample);
7451 av_log(s, AV_LOG_TRACE, "stream %d, found sample %d\n", st->index, sc->current_sample);
7452 /* adjust ctts index */
7453 if (sc->ctts_data) {
7455 for (i = 0; i < sc->ctts_count; i++) {
7456 int next = time_sample + sc->ctts_data[i].count;
7457 if (next > sc->current_sample) {
7459 sc->ctts_sample = sc->current_sample - time_sample;
7466 /* adjust stsd index */
7468 for (i = 0; i < sc->stsc_count; i++) {
7469 int64_t next = time_sample + mov_get_stsc_samples(sc, i);
7470 if (next > sc->current_sample) {
7472 sc->stsc_sample = sc->current_sample - time_sample;
7475 av_assert0(next == (int)next);
7482 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
7484 MOVContext *mc = s->priv_data;
7489 if (stream_index >= s->nb_streams)
7490 return AVERROR_INVALIDDATA;
7492 st = s->streams[stream_index];
7493 sample = mov_seek_stream(s, st, sample_time, flags);
7497 if (mc->seek_individually) {
7498 /* adjust seek timestamp to found sample timestamp */
7499 int64_t seek_timestamp = st->index_entries[sample].timestamp;
7501 for (i = 0; i < s->nb_streams; i++) {
7503 MOVStreamContext *sc = s->streams[i]->priv_data;
7505 st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
7507 if (stream_index == i)
7510 timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
7511 mov_seek_stream(s, st, timestamp, flags);
7514 for (i = 0; i < s->nb_streams; i++) {
7515 MOVStreamContext *sc;
7518 mov_current_sample_set(sc, 0);
7521 MOVStreamContext *sc;
7522 AVIndexEntry *entry = mov_find_next_sample(s, &st);
7524 return AVERROR_INVALIDDATA;
7526 if (sc->ffindex == stream_index && sc->current_sample == sample)
7528 mov_current_sample_inc(sc);
7534 #define OFFSET(x) offsetof(MOVContext, x)
7535 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
7536 static const AVOption mov_options[] = {
7537 {"use_absolute_path",
7538 "allow using absolute path when opening alias, this is a possible security issue",
7539 OFFSET(use_absolute_path), AV_OPT_TYPE_BOOL, {.i64 = 0},
7541 {"seek_streams_individually",
7542 "Seek each stream individually to the to the closest point",
7543 OFFSET(seek_individually), AV_OPT_TYPE_BOOL, { .i64 = 1 },
7545 {"ignore_editlist", "Ignore the edit list atom.", OFFSET(ignore_editlist), AV_OPT_TYPE_BOOL, {.i64 = 0},
7547 {"advanced_editlist",
7548 "Modify the AVIndex according to the editlists. Use this option to decode in the order specified by the edits.",
7549 OFFSET(advanced_editlist), AV_OPT_TYPE_BOOL, {.i64 = 1},
7551 {"ignore_chapters", "", OFFSET(ignore_chapters), AV_OPT_TYPE_BOOL, {.i64 = 0},
7554 "use mfra for fragment timestamps",
7555 OFFSET(use_mfra_for), AV_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
7556 -1, FF_MOV_FLAG_MFRA_PTS, FLAGS,
7558 {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
7559 FLAGS, "use_mfra_for" },
7560 {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
7561 FLAGS, "use_mfra_for" },
7562 {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
7563 FLAGS, "use_mfra_for" },
7564 { "export_all", "Export unrecognized metadata entries", OFFSET(export_all),
7565 AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7566 { "export_xmp", "Export full XMP metadata", OFFSET(export_xmp),
7567 AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = FLAGS },
7568 { "activation_bytes", "Secret bytes for Audible AAX files", OFFSET(activation_bytes),
7569 AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7570 { "audible_fixed_key", // extracted from libAAX_SDK.so and AAXSDKWin.dll files!
7571 "Fixed key used for handling Audible AAX files", OFFSET(audible_fixed_key),
7572 AV_OPT_TYPE_BINARY, {.str="77214d4b196a87cd520045fd20a51d67"},
7573 .flags = AV_OPT_FLAG_DECODING_PARAM },
7574 { "decryption_key", "The media decryption key (hex)", OFFSET(decryption_key), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_DECODING_PARAM },
7575 { "enable_drefs", "Enable external track support.", OFFSET(enable_drefs), AV_OPT_TYPE_BOOL,
7576 {.i64 = 0}, 0, 1, FLAGS },
7581 static const AVClass mov_class = {
7582 .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
7583 .item_name = av_default_item_name,
7584 .option = mov_options,
7585 .version = LIBAVUTIL_VERSION_INT,
7588 AVInputFormat ff_mov_demuxer = {
7589 .name = "mov,mp4,m4a,3gp,3g2,mj2",
7590 .long_name = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
7591 .priv_class = &mov_class,
7592 .priv_data_size = sizeof(MOVContext),
7593 .extensions = "mov,mp4,m4a,3gp,3g2,mj2",
7594 .read_probe = mov_probe,
7595 .read_header = mov_read_header,
7596 .read_packet = mov_read_packet,
7597 .read_close = mov_read_close,
7598 .read_seek = mov_read_seek,
7599 .flags = AVFMT_NO_BYTE_SEEK,