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 Libav.
11 * Libav 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 * Libav 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 Libav; 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/intreadwrite.h"
33 #include "libavutil/intfloat.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/time_internal.h"
36 #include "libavutil/avstring.h"
37 #include "libavutil/dict.h"
38 #include "libavutil/opt.h"
39 #include "libavcodec/ac3tab.h"
42 #include "avio_internal.h"
45 #include "libavcodec/get_bits.h"
48 #include "replaygain.h"
54 #include "qtpalette.h"
60 /* those functions parse an atom */
61 /* links atom IDs to parse functions */
62 typedef struct MOVParseTableEntry
{
64 int (*parse
)(MOVContext
*ctx
, AVIOContext
*pb
, MOVAtom atom
);
67 static int mov_read_default(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
);
69 static int mov_metadata_track_or_disc_number(MOVContext
*c
, AVIOContext
*pb
,
70 unsigned len
, const char *key
)
74 short current
, total
= 0;
75 avio_rb16(pb
); // unknown
76 current
= avio_rb16(pb
);
78 total
= avio_rb16(pb
);
80 snprintf(buf
, sizeof(buf
), "%d", current
);
82 snprintf(buf
, sizeof(buf
), "%d/%d", current
, total
);
83 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
84 av_dict_set(&c
->fc
->metadata
, key
, buf
, 0);
89 static int mov_metadata_int8_bypass_padding(MOVContext
*c
, AVIOContext
*pb
,
90 unsigned len
, const char *key
)
94 /* bypass padding bytes */
99 snprintf(buf
, sizeof(buf
), "%d", avio_r8(pb
));
100 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
101 av_dict_set(&c
->fc
->metadata
, key
, buf
, 0);
106 static int mov_metadata_int8_no_padding(MOVContext
*c
, AVIOContext
*pb
,
107 unsigned len
, const char *key
)
111 snprintf(buf
, sizeof(buf
), "%d", avio_r8(pb
));
112 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
113 av_dict_set(&c
->fc
->metadata
, key
, buf
, 0);
118 static int mov_metadata_gnre(MOVContext
*c
, AVIOContext
*pb
,
119 unsigned len
, const char *key
)
124 avio_r8(pb
); // unknown
127 if (genre
< 1 || genre
> ID3v1_GENRE_MAX
)
129 snprintf(buf
, sizeof(buf
), "%s", ff_id3v1_genre_str
[genre
-1]);
130 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
131 av_dict_set(&c
->fc
->metadata
, key
, buf
, 0);
136 static const uint32_t mac_to_unicode
[128] = {
137 0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
138 0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
139 0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
140 0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
141 0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
142 0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
143 0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
144 0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
145 0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
146 0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
147 0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
148 0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
149 0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
150 0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
151 0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
152 0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
155 static int mov_read_mac_string(MOVContext
*c
, AVIOContext
*pb
, int len
,
156 char *dst
, int dstlen
)
159 char *end
= dst
+dstlen
-1;
162 for (i
= 0; i
< len
; i
++) {
163 uint8_t t
, c
= avio_r8(pb
);
164 if (c
< 0x80 && p
< end
)
167 PUT_UTF8(mac_to_unicode
[c
-0x80], t
, if (p
< end
) *p
++ = t
;);
173 static int mov_read_covr(MOVContext
*c
, AVIOContext
*pb
, int type
, int len
)
177 MOVStreamContext
*sc
;
182 case 0xd: id
= AV_CODEC_ID_MJPEG
; break;
183 case 0xe: id
= AV_CODEC_ID_PNG
; break;
184 case 0x1b: id
= AV_CODEC_ID_BMP
; break;
186 av_log(c
->fc
, AV_LOG_WARNING
, "Unknown cover type: 0x%x.\n", type
);
191 st
= avformat_new_stream(c
->fc
, NULL
);
193 return AVERROR(ENOMEM
);
194 sc
= av_mallocz(sizeof(*sc
));
196 return AVERROR(ENOMEM
);
199 ret
= av_get_packet(pb
, &pkt
, len
);
203 st
->disposition
|= AV_DISPOSITION_ATTACHED_PIC
;
205 st
->attached_pic
= pkt
;
206 st
->attached_pic
.stream_index
= st
->index
;
207 st
->attached_pic
.flags
|= AV_PKT_FLAG_KEY
;
209 st
->codec
->codec_type
= AVMEDIA_TYPE_VIDEO
;
210 st
->codec
->codec_id
= id
;
215 static int mov_metadata_loci(MOVContext
*c
, AVIOContext
*pb
, unsigned len
)
217 char language
[4] = { 0 };
219 uint16_t langcode
= 0;
220 double longitude
, latitude
;
221 const char *key
= "location";
223 if (len
< 4 + 2 + 1 + 1 + 4 + 4 + 4)
224 return AVERROR_INVALIDDATA
;
226 avio_skip(pb
, 4); // version+flags
227 langcode
= avio_rb16(pb
);
228 ff_mov_lang_to_iso639(langcode
, language
);
231 len
-= avio_get_str(pb
, len
, buf
, sizeof(buf
)); // place name
233 return AVERROR_INVALIDDATA
;
234 avio_skip(pb
, 1); // role
238 return AVERROR_INVALIDDATA
;
239 longitude
= ((int32_t) avio_rb32(pb
)) / (float) (1 << 16);
240 latitude
= ((int32_t) avio_rb32(pb
)) / (float) (1 << 16);
242 // Try to output in the same format as the ?xyz field
243 snprintf(buf
, sizeof(buf
), "%+08.4f%+09.4f/", latitude
, longitude
);
244 if (*language
&& strcmp(language
, "und")) {
246 snprintf(key2
, sizeof(key2
), "%s-%s", key
, language
);
247 av_dict_set(&c
->fc
->metadata
, key2
, buf
, 0);
249 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
250 return av_dict_set(&c
->fc
->metadata
, key
, buf
, 0);
253 static int mov_read_udta_string(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
256 char *str
, key2
[32], language
[4] = {0};
257 const char *key
= NULL
;
258 uint16_t langcode
= 0;
259 uint32_t data_type
= 0, str_size
, str_size_alloc
;
260 int (*parse
)(MOVContext
*, AVIOContext
*, unsigned, const char*) = NULL
;
264 case MKTAG( '@','P','R','M'): key
= "premiere_version"; raw
= 1; break;
265 case MKTAG( '@','P','R','Q'): key
= "quicktime_version"; raw
= 1; break;
266 case MKTAG( 'X','M','P','_'):
267 if (c
->export_xmp
) { key
= "xmp"; raw
= 1; } break;
268 case MKTAG( 'a','A','R','T'): key
= "album_artist"; break;
269 case MKTAG( 'a','k','I','D'): key
= "account_type";
270 parse
= mov_metadata_int8_no_padding
; break;
271 case MKTAG( 'a','p','I','D'): key
= "account_id"; break;
272 case MKTAG( 'c','a','t','g'): key
= "category"; break;
273 case MKTAG( 'c','p','i','l'): key
= "compilation";
274 parse
= mov_metadata_int8_no_padding
; break;
275 case MKTAG( 'c','p','r','t'): key
= "copyright"; break;
276 case MKTAG( 'd','e','s','c'): key
= "description"; break;
277 case MKTAG( 'd','i','s','k'): key
= "disc";
278 parse
= mov_metadata_track_or_disc_number
; break;
279 case MKTAG( 'e','g','i','d'): key
= "episode_uid";
280 parse
= mov_metadata_int8_no_padding
; break;
281 case MKTAG( 'g','n','r','e'): key
= "genre";
282 parse
= mov_metadata_gnre
; break;
283 case MKTAG( 'h','d','v','d'): key
= "hd_video";
284 parse
= mov_metadata_int8_no_padding
; break;
285 case MKTAG( 'k','e','y','w'): key
= "keywords"; break;
286 case MKTAG( 'l','d','e','s'): key
= "synopsis"; break;
287 case MKTAG( 'l','o','c','i'):
288 return mov_metadata_loci(c
, pb
, atom
.size
);
289 case MKTAG( 'p','c','s','t'): key
= "podcast";
290 parse
= mov_metadata_int8_no_padding
; break;
291 case MKTAG( 'p','g','a','p'): key
= "gapless_playback";
292 parse
= mov_metadata_int8_no_padding
; break;
293 case MKTAG( 'p','u','r','d'): key
= "purchase_date"; break;
294 case MKTAG( 'r','t','n','g'): key
= "rating";
295 parse
= mov_metadata_int8_no_padding
; break;
296 case MKTAG( 's','o','a','a'): key
= "sort_album_artist"; break;
297 case MKTAG( 's','o','a','l'): key
= "sort_album"; break;
298 case MKTAG( 's','o','a','r'): key
= "sort_artist"; break;
299 case MKTAG( 's','o','c','o'): key
= "sort_composer"; break;
300 case MKTAG( 's','o','n','m'): key
= "sort_name"; break;
301 case MKTAG( 's','o','s','n'): key
= "sort_show"; break;
302 case MKTAG( 's','t','i','k'): key
= "media_type";
303 parse
= mov_metadata_int8_no_padding
; break;
304 case MKTAG( 't','r','k','n'): key
= "track";
305 parse
= mov_metadata_track_or_disc_number
; break;
306 case MKTAG( 't','v','e','n'): key
= "episode_id"; break;
307 case MKTAG( 't','v','e','s'): key
= "episode_sort";
308 parse
= mov_metadata_int8_bypass_padding
; break;
309 case MKTAG( 't','v','n','n'): key
= "network"; break;
310 case MKTAG( 't','v','s','h'): key
= "show"; break;
311 case MKTAG( 't','v','s','n'): key
= "season_number";
312 parse
= mov_metadata_int8_bypass_padding
; break;
313 case MKTAG(0xa9,'A','R','T'): key
= "artist"; break;
314 case MKTAG(0xa9,'P','R','D'): key
= "producer"; break;
315 case MKTAG(0xa9,'a','l','b'): key
= "album"; break;
316 case MKTAG(0xa9,'a','u','t'): key
= "artist"; break;
317 case MKTAG(0xa9,'c','h','p'): key
= "chapter"; break;
318 case MKTAG(0xa9,'c','m','t'): key
= "comment"; break;
319 case MKTAG(0xa9,'c','o','m'): key
= "composer"; break;
320 case MKTAG(0xa9,'c','p','y'): key
= "copyright"; break;
321 case MKTAG(0xa9,'d','a','y'): key
= "date"; break;
322 case MKTAG(0xa9,'d','i','r'): key
= "director"; break;
323 case MKTAG(0xa9,'d','i','s'): key
= "disclaimer"; break;
324 case MKTAG(0xa9,'e','d','1'): key
= "edit_date"; break;
325 case MKTAG(0xa9,'e','n','c'): key
= "encoder"; break;
326 case MKTAG(0xa9,'f','m','t'): key
= "original_format"; break;
327 case MKTAG(0xa9,'g','e','n'): key
= "genre"; break;
328 case MKTAG(0xa9,'g','r','p'): key
= "grouping"; break;
329 case MKTAG(0xa9,'h','s','t'): key
= "host_computer"; break;
330 case MKTAG(0xa9,'i','n','f'): key
= "comment"; break;
331 case MKTAG(0xa9,'l','y','r'): key
= "lyrics"; break;
332 case MKTAG(0xa9,'m','a','k'): key
= "make"; break;
333 case MKTAG(0xa9,'m','o','d'): key
= "model"; break;
334 case MKTAG(0xa9,'n','a','m'): key
= "title"; break;
335 case MKTAG(0xa9,'o','p','e'): key
= "original_artist"; break;
336 case MKTAG(0xa9,'p','r','d'): key
= "producer"; break;
337 case MKTAG(0xa9,'p','r','f'): key
= "performers"; break;
338 case MKTAG(0xa9,'r','e','q'): key
= "playback_requirements"; break;
339 case MKTAG(0xa9,'s','r','c'): key
= "original_source"; break;
340 case MKTAG(0xa9,'s','t','3'): key
= "subtitle"; break;
341 case MKTAG(0xa9,'s','w','r'): key
= "encoder"; break;
342 case MKTAG(0xa9,'t','o','o'): key
= "encoder"; break;
343 case MKTAG(0xa9,'t','r','k'): key
= "track"; break;
344 case MKTAG(0xa9,'u','r','l'): key
= "URL"; break;
345 case MKTAG(0xa9,'w','r','n'): key
= "warning"; break;
346 case MKTAG(0xa9,'w','r','t'): key
= "composer"; break;
347 case MKTAG(0xa9,'x','y','z'): key
= "location"; break;
350 if (c
->itunes_metadata
&& atom
.size
> 8) {
351 int data_size
= avio_rb32(pb
);
352 int tag
= avio_rl32(pb
);
353 if (tag
== MKTAG('d','a','t','a')) {
354 data_type
= avio_rb32(pb
); // type
355 avio_rb32(pb
); // unknown
356 str_size
= data_size
- 16;
359 if (atom
.type
== MKTAG('c', 'o', 'v', 'r')) {
360 int ret
= mov_read_covr(c
, pb
, data_type
, str_size
);
362 av_log(c
->fc
, AV_LOG_ERROR
, "Error parsing cover art.\n");
367 } else if (atom
.size
> 4 && key
&& !c
->itunes_metadata
&& !raw
) {
368 str_size
= avio_rb16(pb
); // string length
369 langcode
= avio_rb16(pb
);
370 ff_mov_lang_to_iso639(langcode
, language
);
373 str_size
= atom
.size
;
375 if (c
->export_all
&& !key
) {
376 snprintf(tmp_key
, 5, "%.4s", (char*)&atom
.type
);
383 return AVERROR_INVALIDDATA
;
385 // allocate twice as much as worst-case
386 str_size_alloc
= (raw ? str_size
: str_size
* 2) + 1;
387 str
= av_malloc(str_size_alloc
);
389 return AVERROR(ENOMEM
);
392 parse(c
, pb
, str_size
, key
);
394 if (!raw
&& (data_type
== 3 || (data_type
== 0 && (langcode
< 0x400 || langcode
== 0x7fff)))) { // MAC Encoded
395 mov_read_mac_string(c
, pb
, str_size
, str
, str_size_alloc
);
397 int ret
= ffio_read_size(pb
, str
, str_size
);
404 c
->fc
->event_flags
|= AVFMT_EVENT_FLAG_METADATA_UPDATED
;
405 av_dict_set(&c
->fc
->metadata
, key
, str
, 0);
406 if (*language
&& strcmp(language
, "und")) {
407 snprintf(key2
, sizeof(key2
), "%s-%s", key
, language
);
408 av_dict_set(&c
->fc
->metadata
, key2
, str
, 0);
411 av_log(c
->fc
, AV_LOG_TRACE
, "lang \"%3s\" ", language
);
412 av_log(c
->fc
, AV_LOG_TRACE
, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64
"\n",
413 key
, str
, (char*)&atom
.type
, str_size_alloc
, atom
.size
);
419 static int mov_read_chpl(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
422 int i
, nb_chapters
, str_len
, version
;
426 if ((atom
.size
-= 5) < 0)
429 version
= avio_r8(pb
);
432 avio_rb32(pb
); // ???
433 nb_chapters
= avio_r8(pb
);
435 for (i
= 0; i
< nb_chapters
; i
++) {
439 start
= avio_rb64(pb
);
440 str_len
= avio_r8(pb
);
442 if ((atom
.size
-= 9+str_len
) < 0)
445 ret
= ffio_read_size(pb
, str
, str_len
);
449 avpriv_new_chapter(c
->fc
, i
, (AVRational
){1,10000000}, start
, AV_NOPTS_VALUE
, str
);
454 #define MIN_DATA_ENTRY_BOX_SIZE 12
455 static int mov_read_dref(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
458 MOVStreamContext
*sc
;
461 if (c
->fc
->nb_streams
< 1)
463 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
466 avio_rb32(pb
); // version + flags
467 entries
= avio_rb32(pb
);
468 if (entries
> (atom
.size
- 1) / MIN_DATA_ENTRY_BOX_SIZE
+ 1 ||
469 entries
>= UINT_MAX
/ sizeof(*sc
->drefs
))
470 return AVERROR_INVALIDDATA
;
472 sc
->drefs
= av_mallocz(entries
* sizeof(*sc
->drefs
));
474 return AVERROR(ENOMEM
);
475 sc
->drefs_count
= entries
;
477 for (i
= 0; i
< sc
->drefs_count
; i
++) {
478 MOVDref
*dref
= &sc
->drefs
[i
];
479 uint32_t size
= avio_rb32(pb
);
480 int64_t next
= avio_tell(pb
) + size
- 4;
483 return AVERROR_INVALIDDATA
;
485 dref
->type
= avio_rl32(pb
);
486 avio_rb32(pb
); // version + flags
487 av_log(c
->fc
, AV_LOG_TRACE
, "type %.4s size %d\n", (char*)&dref
->type
, size
);
489 if (dref
->type
== MKTAG('a','l','i','s') && size
> 150) {
490 /* macintosh alias record */
491 uint16_t volume_len
, len
;
497 volume_len
= avio_r8(pb
);
498 volume_len
= FFMIN(volume_len
, 27);
499 ret
= ffio_read_size(pb
, dref
->volume
, 27);
502 dref
->volume
[volume_len
] = 0;
503 av_log(c
->fc
, AV_LOG_DEBUG
, "volume %s, len %d\n", dref
->volume
, volume_len
);
508 len
= FFMIN(len
, 63);
509 ret
= ffio_read_size(pb
, dref
->filename
, 63);
512 dref
->filename
[len
] = 0;
513 av_log(c
->fc
, AV_LOG_DEBUG
, "filename %s, len %d\n", dref
->filename
, len
);
517 /* read next level up_from_alias/down_to_target */
518 dref
->nlvl_from
= avio_rb16(pb
);
519 dref
->nlvl_to
= avio_rb16(pb
);
520 av_log(c
->fc
, AV_LOG_DEBUG
, "nlvl from %d, nlvl to %d\n",
521 dref
->nlvl_from
, dref
->nlvl_to
);
525 for (type
= 0; type
!= -1 && avio_tell(pb
) < next
; ) {
528 type
= avio_rb16(pb
);
530 av_log(c
->fc
, AV_LOG_DEBUG
, "type %d, len %d\n", type
, len
);
533 if (type
== 2 || type
== 18) { // absolute path
535 dref
->path
= av_mallocz(len
+1);
537 return AVERROR(ENOMEM
);
539 ret
= ffio_read_size(pb
, dref
->path
, len
);
541 av_freep(&dref
->path
);
544 if (type
== 18) // no additional processing needed
546 if (len
> volume_len
&& !strncmp(dref
->path
, dref
->volume
, volume_len
)) {
548 memmove(dref
->path
, dref
->path
+volume_len
, len
);
551 for (j
= 0; j
< len
; j
++)
552 if (dref
->path
[j
] == ':')
554 av_log(c
->fc
, AV_LOG_DEBUG
, "path %s\n", dref
->path
);
555 } else if (type
== 0) { // directory name
557 dref
->dir
= av_malloc(len
+1);
559 return AVERROR(ENOMEM
);
561 ret
= ffio_read_size(pb
, dref
->dir
, len
);
563 av_freep(&dref
->dir
);
567 for (j
= 0; j
< len
; j
++)
568 if (dref
->dir
[j
] == ':')
570 av_log(c
->fc
, AV_LOG_DEBUG
, "dir %s\n", dref
->dir
);
575 avio_seek(pb
, next
, SEEK_SET
);
580 static int mov_read_hdlr(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
584 uint32_t av_unused ctype
;
589 if (c
->fc
->nb_streams
< 1) // meta before first trak
592 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
594 avio_r8(pb
); /* version */
595 avio_rb24(pb
); /* flags */
598 ctype
= avio_rl32(pb
);
599 type
= avio_rl32(pb
); /* component subtype */
601 av_log(c
->fc
, AV_LOG_TRACE
, "ctype= %.4s (0x%08x)\n", (char*)&ctype
, ctype
);
602 av_log(c
->fc
, AV_LOG_TRACE
, "stype= %.4s\n", (char*)&type
);
604 if (type
== MKTAG('v','i','d','e'))
605 st
->codec
->codec_type
= AVMEDIA_TYPE_VIDEO
;
606 else if (type
== MKTAG('s','o','u','n'))
607 st
->codec
->codec_type
= AVMEDIA_TYPE_AUDIO
;
608 else if (type
== MKTAG('m','1','a',' '))
609 st
->codec
->codec_id
= AV_CODEC_ID_MP2
;
610 else if ((type
== MKTAG('s','u','b','p')) || (type
== MKTAG('c','l','c','p')))
611 st
->codec
->codec_type
= AVMEDIA_TYPE_SUBTITLE
;
613 avio_rb32(pb
); /* component manufacture */
614 avio_rb32(pb
); /* component flags */
615 avio_rb32(pb
); /* component flags mask */
617 title_size
= atom
.size
- 24;
618 if (title_size
> 0) {
619 title_str
= av_malloc(title_size
+ 1); /* Add null terminator */
621 return AVERROR(ENOMEM
);
623 ret
= ffio_read_size(pb
, title_str
, title_size
);
625 av_freep(&title_str
);
628 title_str
[title_size
] = 0;
630 int off
= (!c
->isom
&& title_str
[0] == title_size
- 1);
631 av_dict_set(&st
->metadata
, "handler_name", title_str
+ off
, 0);
633 av_freep(&title_str
);
639 int ff_mov_read_esds(AVFormatContext
*fc
, AVIOContext
*pb
)
644 if (fc
->nb_streams
< 1)
646 st
= fc
->streams
[fc
->nb_streams
-1];
648 avio_rb32(pb
); /* version + flags */
649 ff_mp4_read_descr(fc
, pb
, &tag
);
650 if (tag
== MP4ESDescrTag
) {
651 ff_mp4_parse_es_descr(pb
, NULL
);
653 avio_rb16(pb
); /* ID */
655 ff_mp4_read_descr(fc
, pb
, &tag
);
656 if (tag
== MP4DecConfigDescrTag
)
657 ff_mp4_read_dec_config_descr(fc
, st
, pb
);
661 static int mov_read_esds(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
663 return ff_mov_read_esds(c
->fc
, pb
);
666 static int mov_read_dac3(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
669 enum AVAudioServiceType
*ast
;
670 int ac3info
, acmod
, lfeon
, bsmod
;
672 if (c
->fc
->nb_streams
< 1)
674 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
676 ast
= (enum AVAudioServiceType
*)ff_stream_new_side_data(st
, AV_PKT_DATA_AUDIO_SERVICE_TYPE
,
679 return AVERROR(ENOMEM
);
681 ac3info
= avio_rb24(pb
);
682 bsmod
= (ac3info
>> 14) & 0x7;
683 acmod
= (ac3info
>> 11) & 0x7;
684 lfeon
= (ac3info
>> 10) & 0x1;
685 st
->codec
->channels
= ((int[]){2,1,2,3,3,4,4,5})[acmod
] + lfeon
;
686 st
->codec
->channel_layout
= avpriv_ac3_channel_layout_tab
[acmod
];
688 st
->codec
->channel_layout
|= AV_CH_LOW_FREQUENCY
;
690 if (st
->codec
->channels
> 1 && bsmod
== 0x7)
691 *ast
= AV_AUDIO_SERVICE_TYPE_KARAOKE
;
693 st
->codec
->audio_service_type
= *ast
;
698 static int mov_read_dec3(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
701 enum AVAudioServiceType
*ast
;
702 int eac3info
, acmod
, lfeon
, bsmod
;
704 if (c
->fc
->nb_streams
< 1)
706 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
708 ast
= (enum AVAudioServiceType
*)ff_stream_new_side_data(st
, AV_PKT_DATA_AUDIO_SERVICE_TYPE
,
711 return AVERROR(ENOMEM
);
713 /* No need to parse fields for additional independent substreams and its
714 * associated dependent substreams since libavcodec's E-AC-3 decoder
715 * does not support them yet. */
716 avio_rb16(pb
); /* data_rate and num_ind_sub */
717 eac3info
= avio_rb24(pb
);
718 bsmod
= (eac3info
>> 12) & 0x1f;
719 acmod
= (eac3info
>> 9) & 0x7;
720 lfeon
= (eac3info
>> 8) & 0x1;
721 st
->codec
->channel_layout
= avpriv_ac3_channel_layout_tab
[acmod
];
723 st
->codec
->channel_layout
|= AV_CH_LOW_FREQUENCY
;
724 st
->codec
->channels
= av_get_channel_layout_nb_channels(st
->codec
->channel_layout
);
726 if (st
->codec
->channels
> 1 && bsmod
== 0x7)
727 *ast
= AV_AUDIO_SERVICE_TYPE_KARAOKE
;
729 st
->codec
->audio_service_type
= *ast
;
734 static int mov_read_chan(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
738 if (c
->fc
->nb_streams
< 1)
740 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
745 /* skip version and flags */
748 ff_mov_read_chan(c
->fc
, pb
, st
, atom
.size
- 4);
753 static int mov_read_wfex(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
757 if (c
->fc
->nb_streams
< 1)
759 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
761 return ff_get_wav_header(pb
, st
->codec
, atom
.size
);
764 static int mov_read_pasp(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
766 const int num
= avio_rb32(pb
);
767 const int den
= avio_rb32(pb
);
770 if (c
->fc
->nb_streams
< 1)
772 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
774 if ((st
->sample_aspect_ratio
.den
!= 1 || st
->sample_aspect_ratio
.num
) && // default
775 (den
!= st
->sample_aspect_ratio
.den
|| num
!= st
->sample_aspect_ratio
.num
)) {
776 av_log(c
->fc
, AV_LOG_WARNING
,
777 "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
778 st
->sample_aspect_ratio
.num
, st
->sample_aspect_ratio
.den
,
780 } else if (den
!= 0) {
781 st
->sample_aspect_ratio
.num
= num
;
782 st
->sample_aspect_ratio
.den
= den
;
787 /* this atom contains actual media data */
788 static int mov_read_mdat(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
790 if (atom
.size
== 0) /* wrong one (MP4) */
793 return 0; /* now go for moov */
796 /* read major brand, minor version and compatible brands and store them as metadata */
797 static int mov_read_ftyp(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
801 char minor_ver_str
[11]; /* 32 bit integer -> 10 digits + null */
802 char* comp_brands_str
;
803 uint8_t type
[5] = {0};
804 int ret
= ffio_read_size(pb
, type
, 4);
808 if (strcmp(type
, "qt "))
810 av_log(c
->fc
, AV_LOG_DEBUG
, "ISO: File Type Major Brand: %.4s\n",(char *)&type
);
811 av_dict_set(&c
->fc
->metadata
, "major_brand", type
, 0);
812 minor_ver
= avio_rb32(pb
); /* minor version */
813 snprintf(minor_ver_str
, sizeof(minor_ver_str
), "%"PRIu32
"", minor_ver
);
814 av_dict_set(&c
->fc
->metadata
, "minor_version", minor_ver_str
, 0);
816 comp_brand_size
= atom
.size
- 8;
817 if (comp_brand_size
< 0)
818 return AVERROR_INVALIDDATA
;
819 comp_brands_str
= av_malloc(comp_brand_size
+ 1); /* Add null terminator */
820 if (!comp_brands_str
)
821 return AVERROR(ENOMEM
);
823 ret
= ffio_read_size(pb
, comp_brands_str
, comp_brand_size
);
825 av_freep(&comp_brands_str
);
828 comp_brands_str
[comp_brand_size
] = 0;
829 av_dict_set(&c
->fc
->metadata
, "compatible_brands", comp_brands_str
, 0);
830 av_freep(&comp_brands_str
);
835 /* this atom should contain all header atoms */
836 static int mov_read_moov(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
840 if ((ret
= mov_read_default(c
, pb
, atom
)) < 0)
842 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
843 /* so we don't parse the whole file if over a network */
845 return 0; /* now go for mdat */
848 static int mov_read_moof(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
850 c
->fragment
.moof_offset
= c
->fragment
.implicit_offset
= avio_tell(pb
) - 8;
851 av_log(c
->fc
, AV_LOG_TRACE
, "moof offset %"PRIx64
"\n", c
->fragment
.moof_offset
);
852 return mov_read_default(c
, pb
, atom
);
855 static void mov_metadata_creation_time(AVDictionary
**metadata
, time_t time
)
859 struct tm
*ptm
, tmbuf
;
860 time
-= 2082844800; /* seconds between 1904-01-01 and Epoch */
861 ptm
= gmtime_r(&time
, &tmbuf
);
863 if (strftime(buffer
, sizeof(buffer
), "%Y-%m-%d %H:%M:%S", ptm
))
864 av_dict_set(metadata
, "creation_time", buffer
, 0);
868 static int mov_read_mdhd(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
871 MOVStreamContext
*sc
;
873 char language
[4] = {0};
875 time_t creation_time
;
877 if (c
->fc
->nb_streams
< 1)
879 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
882 if (sc
->time_scale
) {
883 av_log(c
->fc
, AV_LOG_ERROR
, "Multiple mdhd?\n");
884 return AVERROR_INVALIDDATA
;
887 version
= avio_r8(pb
);
889 avpriv_request_sample(c
->fc
, "Version %d", version
);
890 return AVERROR_PATCHWELCOME
;
892 avio_rb24(pb
); /* flags */
894 creation_time
= avio_rb64(pb
);
897 creation_time
= avio_rb32(pb
);
898 avio_rb32(pb
); /* modification time */
900 mov_metadata_creation_time(&st
->metadata
, creation_time
);
902 sc
->time_scale
= avio_rb32(pb
);
903 st
->duration
= (version
== 1) ?
avio_rb64(pb
) : avio_rb32(pb
); /* duration */
905 lang
= avio_rb16(pb
); /* language */
906 if (ff_mov_lang_to_iso639(lang
, language
))
907 av_dict_set(&st
->metadata
, "language", language
, 0);
908 avio_rb16(pb
); /* quality */
913 static int mov_read_mvhd(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
915 time_t creation_time
;
916 int version
= avio_r8(pb
); /* version */
917 avio_rb24(pb
); /* flags */
920 creation_time
= avio_rb64(pb
);
923 creation_time
= avio_rb32(pb
);
924 avio_rb32(pb
); /* modification time */
926 mov_metadata_creation_time(&c
->fc
->metadata
, creation_time
);
927 c
->time_scale
= avio_rb32(pb
); /* time scale */
929 av_log(c
->fc
, AV_LOG_TRACE
, "time scale = %i\n", c
->time_scale
);
931 c
->duration
= (version
== 1) ?
avio_rb64(pb
) : avio_rb32(pb
); /* duration */
932 avio_rb32(pb
); /* preferred scale */
934 avio_rb16(pb
); /* preferred volume */
936 avio_skip(pb
, 10); /* reserved */
938 avio_skip(pb
, 36); /* display matrix */
940 avio_rb32(pb
); /* preview time */
941 avio_rb32(pb
); /* preview duration */
942 avio_rb32(pb
); /* poster time */
943 avio_rb32(pb
); /* selection time */
944 avio_rb32(pb
); /* selection duration */
945 avio_rb32(pb
); /* current time */
946 avio_rb32(pb
); /* next track ID */
951 static int mov_read_smi(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
956 if (c
->fc
->nb_streams
< 1)
958 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
960 if ((uint64_t)atom
.size
> (1<<30))
961 return AVERROR_INVALIDDATA
;
963 // currently SVQ3 decoder expect full STSD header - so let's fake it
964 // this should be fixed and just SMI header should be passed
965 av_free(st
->codec
->extradata
);
966 st
->codec
->extradata
= av_mallocz(atom
.size
+ 0x5a + FF_INPUT_BUFFER_PADDING_SIZE
);
967 if (!st
->codec
->extradata
)
968 return AVERROR(ENOMEM
);
969 st
->codec
->extradata_size
= 0x5a + atom
.size
;
970 memcpy(st
->codec
->extradata
, "SVQ3", 4); // fake
972 ret
= ffio_read_size(pb
, st
->codec
->extradata
+ 0x5a, atom
.size
);
976 av_log(c
->fc
, AV_LOG_TRACE
, "Reading SMI %"PRId64
" %s\n", atom
.size
, st
->codec
->extradata
+ 0x5a);
980 static int mov_read_enda(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
985 if (c
->fc
->nb_streams
< 1)
987 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
989 little_endian
= !!avio_rb16(pb
);
990 av_log(c
->fc
, AV_LOG_TRACE
, "enda %d\n", little_endian
);
991 if (little_endian
== 1) {
992 switch (st
->codec
->codec_id
) {
993 case AV_CODEC_ID_PCM_S24BE
:
994 st
->codec
->codec_id
= AV_CODEC_ID_PCM_S24LE
;
996 case AV_CODEC_ID_PCM_S32BE
:
997 st
->codec
->codec_id
= AV_CODEC_ID_PCM_S32LE
;
999 case AV_CODEC_ID_PCM_F32BE
:
1000 st
->codec
->codec_id
= AV_CODEC_ID_PCM_F32LE
;
1002 case AV_CODEC_ID_PCM_F64BE
:
1003 st
->codec
->codec_id
= AV_CODEC_ID_PCM_F64LE
;
1012 static int mov_read_colr(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1015 char color_parameter_type
[5] = { 0 };
1016 int color_primaries
, color_trc
, color_matrix
;
1019 if (c
->fc
->nb_streams
< 1)
1021 st
= c
->fc
->streams
[c
->fc
->nb_streams
- 1];
1023 ret
= ffio_read_size(pb
, color_parameter_type
, 4);
1026 if (strncmp(color_parameter_type
, "nclx", 4) &&
1027 strncmp(color_parameter_type
, "nclc", 4)) {
1028 av_log(c
->fc
, AV_LOG_WARNING
, "unsupported color_parameter_type %s\n",
1029 color_parameter_type
);
1033 color_primaries
= avio_rb16(pb
);
1034 color_trc
= avio_rb16(pb
);
1035 color_matrix
= avio_rb16(pb
);
1037 av_log(c
->fc
, AV_LOG_TRACE
,
1038 "%s: pri %"PRIu16
" trc %"PRIu16
" matrix %"PRIu16
"",
1039 color_parameter_type
, color_primaries
, color_trc
, color_matrix
);
1041 if (!strncmp(color_parameter_type
, "nclx", 4)) {
1042 uint8_t color_range
= avio_r8(pb
) >> 7;
1043 av_log(c
->fc
, AV_LOG_TRACE
, " full %"PRIu8
"", color_range
);
1045 st
->codec
->color_range
= AVCOL_RANGE_JPEG
;
1047 st
->codec
->color_range
= AVCOL_RANGE_MPEG
;
1048 /* 14496-12 references JPEG XR specs (rather than the more complete
1049 * 23001-8) so some adjusting is required */
1050 if (color_primaries
>= AVCOL_PRI_FILM
)
1051 color_primaries
= AVCOL_PRI_UNSPECIFIED
;
1052 if ((color_trc
>= AVCOL_TRC_LINEAR
&&
1053 color_trc
<= AVCOL_TRC_LOG_SQRT
) ||
1054 color_trc
>= AVCOL_TRC_BT2020_10
)
1055 color_trc
= AVCOL_TRC_UNSPECIFIED
;
1056 if (color_matrix
>= AVCOL_SPC_BT2020_NCL
)
1057 color_matrix
= AVCOL_SPC_UNSPECIFIED
;
1058 st
->codec
->color_primaries
= color_primaries
;
1059 st
->codec
->color_trc
= color_trc
;
1060 st
->codec
->colorspace
= color_matrix
;
1061 } else if (!strncmp(color_parameter_type
, "nclc", 4)) {
1062 /* color primaries, Table 4-4 */
1063 switch (color_primaries
) {
1064 case 1: st
->codec
->color_primaries
= AVCOL_PRI_BT709
; break;
1065 case 5: st
->codec
->color_primaries
= AVCOL_PRI_SMPTE170M
; break;
1066 case 6: st
->codec
->color_primaries
= AVCOL_PRI_SMPTE240M
; break;
1068 /* color transfer, Table 4-5 */
1069 switch (color_trc
) {
1070 case 1: st
->codec
->color_trc
= AVCOL_TRC_BT709
; break;
1071 case 7: st
->codec
->color_trc
= AVCOL_TRC_SMPTE240M
; break;
1073 /* color matrix, Table 4-6 */
1074 switch (color_matrix
) {
1075 case 1: st
->codec
->colorspace
= AVCOL_SPC_BT709
; break;
1076 case 6: st
->codec
->colorspace
= AVCOL_SPC_BT470BG
; break;
1077 case 7: st
->codec
->colorspace
= AVCOL_SPC_SMPTE240M
; break;
1080 av_log(c
->fc
, AV_LOG_TRACE
, "\n");
1085 static int mov_read_fiel(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1088 unsigned mov_field_order
;
1089 enum AVFieldOrder decoded_field_order
= AV_FIELD_UNKNOWN
;
1091 if (c
->fc
->nb_streams
< 1) // will happen with jp2 files
1093 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1095 return AVERROR_INVALIDDATA
;
1096 mov_field_order
= avio_rb16(pb
);
1097 if ((mov_field_order
& 0xFF00) == 0x0100)
1098 decoded_field_order
= AV_FIELD_PROGRESSIVE
;
1099 else if ((mov_field_order
& 0xFF00) == 0x0200) {
1100 switch (mov_field_order
& 0xFF) {
1101 case 0x01: decoded_field_order
= AV_FIELD_TT
;
1103 case 0x06: decoded_field_order
= AV_FIELD_BB
;
1105 case 0x09: decoded_field_order
= AV_FIELD_TB
;
1107 case 0x0E: decoded_field_order
= AV_FIELD_BT
;
1111 if (decoded_field_order
== AV_FIELD_UNKNOWN
&& mov_field_order
) {
1112 av_log(NULL
, AV_LOG_ERROR
, "Unknown MOV field order 0x%04x\n", mov_field_order
);
1114 st
->codec
->field_order
= decoded_field_order
;
1119 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
1120 static int mov_read_extradata(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1127 if (c
->fc
->nb_streams
< 1) // will happen with jp2 files
1129 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1130 size
= (uint64_t)st
->codec
->extradata_size
+ atom
.size
+ 8 + FF_INPUT_BUFFER_PADDING_SIZE
;
1131 if (size
> INT_MAX
|| (uint64_t)atom
.size
> INT_MAX
)
1132 return AVERROR_INVALIDDATA
;
1133 if ((err
= av_reallocp(&st
->codec
->extradata
, size
)) < 0) {
1134 st
->codec
->extradata_size
= 0;
1137 buf
= st
->codec
->extradata
+ st
->codec
->extradata_size
;
1138 st
->codec
->extradata_size
= size
- FF_INPUT_BUFFER_PADDING_SIZE
;
1139 AV_WB32( buf
, atom
.size
+ 8);
1140 AV_WL32( buf
+ 4, atom
.type
);
1142 err
= ffio_read_size(pb
, buf
+ 8, atom
.size
);
1149 static int mov_read_wave(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1154 if (c
->fc
->nb_streams
< 1)
1156 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1158 if ((uint64_t)atom
.size
> (1<<30))
1159 return AVERROR_INVALIDDATA
;
1161 if (st
->codec
->codec_id
== AV_CODEC_ID_QDM2
|| st
->codec
->codec_id
== AV_CODEC_ID_QDMC
) {
1162 // pass all frma atom to codec, needed at least for QDMC and QDM2
1163 av_free(st
->codec
->extradata
);
1164 st
->codec
->extradata
= av_mallocz(atom
.size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
1165 if (!st
->codec
->extradata
)
1166 return AVERROR(ENOMEM
);
1167 st
->codec
->extradata_size
= atom
.size
;
1169 ret
= ffio_read_size(pb
, st
->codec
->extradata
, atom
.size
);
1172 } else if (atom
.size
> 8) { /* to read frma, esds atoms */
1173 if ((ret
= mov_read_default(c
, pb
, atom
)) < 0)
1176 avio_skip(pb
, atom
.size
);
1181 * This function reads atom content and puts data in extradata without tag
1182 * nor size unlike mov_read_extradata.
1184 static int mov_read_glbl(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1189 if (c
->fc
->nb_streams
< 1)
1191 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1193 if ((uint64_t)atom
.size
> (1<<30))
1194 return AVERROR_INVALIDDATA
;
1196 if (atom
.size
>= 10) {
1197 // Broken files created by legacy versions of libavformat will
1198 // wrap a whole fiel atom inside of a glbl atom.
1199 unsigned size
= avio_rb32(pb
);
1200 unsigned type
= avio_rl32(pb
);
1201 avio_seek(pb
, -8, SEEK_CUR
);
1202 if (type
== MKTAG('f','i','e','l') && size
== atom
.size
)
1203 return mov_read_default(c
, pb
, atom
);
1205 av_free(st
->codec
->extradata
);
1206 st
->codec
->extradata
= av_mallocz(atom
.size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
1207 if (!st
->codec
->extradata
)
1208 return AVERROR(ENOMEM
);
1209 st
->codec
->extradata_size
= atom
.size
;
1211 ret
= ffio_read_size(pb
, st
->codec
->extradata
, atom
.size
);
1218 static int mov_read_dvc1(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1221 uint8_t profile_level
;
1224 if (c
->fc
->nb_streams
< 1)
1226 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1228 if (atom
.size
>= (1<<28) || atom
.size
< 7)
1229 return AVERROR_INVALIDDATA
;
1231 profile_level
= avio_r8(pb
);
1232 if ((profile_level
& 0xf0) != 0xc0)
1235 av_free(st
->codec
->extradata
);
1236 st
->codec
->extradata
= av_mallocz(atom
.size
- 7 + FF_INPUT_BUFFER_PADDING_SIZE
);
1237 if (!st
->codec
->extradata
)
1238 return AVERROR(ENOMEM
);
1239 st
->codec
->extradata_size
= atom
.size
- 7;
1240 avio_seek(pb
, 6, SEEK_CUR
);
1242 ret
= ffio_read_size(pb
, st
->codec
->extradata
, st
->codec
->extradata_size
);
1250 * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1251 * but can have extradata appended at the end after the 40 bytes belonging
1254 static int mov_read_strf(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1259 if (c
->fc
->nb_streams
< 1)
1261 if (atom
.size
<= 40)
1263 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1265 if ((uint64_t)atom
.size
> (1<<30))
1266 return AVERROR_INVALIDDATA
;
1268 av_free(st
->codec
->extradata
);
1269 st
->codec
->extradata
= av_mallocz(atom
.size
- 40 + FF_INPUT_BUFFER_PADDING_SIZE
);
1270 if (!st
->codec
->extradata
)
1271 return AVERROR(ENOMEM
);
1272 st
->codec
->extradata_size
= atom
.size
- 40;
1275 ret
= ffio_read_size(pb
, st
->codec
->extradata
, atom
.size
- 40);
1282 static int mov_read_stco(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1285 MOVStreamContext
*sc
;
1286 unsigned int i
, entries
;
1288 if (c
->fc
->nb_streams
< 1)
1290 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1293 avio_r8(pb
); /* version */
1294 avio_rb24(pb
); /* flags */
1296 entries
= avio_rb32(pb
);
1300 if (entries
>= UINT_MAX
/sizeof(int64_t))
1301 return AVERROR_INVALIDDATA
;
1303 sc
->chunk_offsets
= av_malloc(entries
* sizeof(int64_t));
1304 if (!sc
->chunk_offsets
)
1305 return AVERROR(ENOMEM
);
1306 sc
->chunk_count
= entries
;
1308 if (atom
.type
== MKTAG('s','t','c','o'))
1309 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++)
1310 sc
->chunk_offsets
[i
] = avio_rb32(pb
);
1311 else if (atom
.type
== MKTAG('c','o','6','4'))
1312 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++)
1313 sc
->chunk_offsets
[i
] = avio_rb64(pb
);
1315 return AVERROR_INVALIDDATA
;
1317 sc
->chunk_count
= i
;
1319 if (pb
->eof_reached
)
1326 * Compute codec id for 'lpcm' tag.
1327 * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1329 enum AVCodecID
ff_mov_get_lpcm_codec_id(int bps
, int flags
)
1336 return ff_get_pcm_codec_id(bps
, flags
& 1, flags
& 2, flags
& 4 ?
-1 : 0);
1339 static int mov_codec_id(AVStream
*st
, uint32_t format
)
1341 int id
= ff_codec_get_id(ff_codec_movaudio_tags
, format
);
1344 ((format
& 0xFFFF) == 'm' + ('s' << 8) ||
1345 (format
& 0xFFFF) == 'T' + ('S' << 8)))
1346 id
= ff_codec_get_id(ff_codec_wav_tags
, av_bswap32(format
) & 0xFFFF);
1348 if (st
->codec
->codec_type
!= AVMEDIA_TYPE_VIDEO
&& id
> 0) {
1349 st
->codec
->codec_type
= AVMEDIA_TYPE_AUDIO
;
1350 } else if (st
->codec
->codec_type
!= AVMEDIA_TYPE_AUDIO
&&
1351 /* skip old asf mpeg4 tag */
1352 format
&& format
!= MKTAG('m','p','4','s')) {
1353 id
= ff_codec_get_id(ff_codec_movvideo_tags
, format
);
1355 id
= ff_codec_get_id(ff_codec_bmp_tags
, format
);
1357 st
->codec
->codec_type
= AVMEDIA_TYPE_VIDEO
;
1358 else if (st
->codec
->codec_type
== AVMEDIA_TYPE_DATA
) {
1359 id
= ff_codec_get_id(ff_codec_movsubtitle_tags
, format
);
1361 st
->codec
->codec_type
= AVMEDIA_TYPE_SUBTITLE
;
1365 st
->codec
->codec_tag
= format
;
1370 static void mov_parse_stsd_video(MOVContext
*c
, AVIOContext
*pb
,
1371 AVStream
*st
, MOVStreamContext
*sc
)
1373 uint8_t codec_name
[32];
1374 unsigned int color_depth
, len
, j
;
1375 int color_greyscale
;
1378 avio_rb16(pb
); /* version */
1379 avio_rb16(pb
); /* revision level */
1380 avio_rb32(pb
); /* vendor */
1381 avio_rb32(pb
); /* temporal quality */
1382 avio_rb32(pb
); /* spatial quality */
1384 st
->codec
->width
= avio_rb16(pb
); /* width */
1385 st
->codec
->height
= avio_rb16(pb
); /* height */
1387 avio_rb32(pb
); /* horiz resolution */
1388 avio_rb32(pb
); /* vert resolution */
1389 avio_rb32(pb
); /* data size, always 0 */
1390 avio_rb16(pb
); /* frames per samples */
1392 len
= avio_r8(pb
); /* codec name, pascal string */
1395 mov_read_mac_string(c
, pb
, len
, codec_name
, sizeof(codec_name
));
1397 avio_skip(pb
, 31 - len
);
1400 av_dict_set(&st
->metadata
, "encoder", codec_name
, 0);
1402 /* codec_tag YV12 triggers an UV swap in rawdec.c */
1403 if (!memcmp(codec_name
, "Planar Y'CbCr 8-bit 4:2:0", 25))
1404 st
->codec
->codec_tag
= MKTAG('I', '4', '2', '0');
1405 /* Flash Media Server uses tag H263 with Sorenson Spark */
1406 if (st
->codec
->codec_tag
== MKTAG('H','2','6','3') &&
1407 !memcmp(codec_name
, "Sorenson H263", 13))
1408 st
->codec
->codec_id
= AV_CODEC_ID_FLV1
;
1410 st
->codec
->bits_per_coded_sample
= avio_rb16(pb
); /* depth */
1411 color_table_id
= avio_rb16(pb
); /* colortable id */
1412 av_log(c
->fc
, AV_LOG_TRACE
, "depth %d, ctab id %d\n",
1413 st
->codec
->bits_per_coded_sample
, color_table_id
);
1414 /* figure out the palette situation */
1415 color_depth
= st
->codec
->bits_per_coded_sample
& 0x1F;
1416 color_greyscale
= st
->codec
->bits_per_coded_sample
& 0x20;
1418 /* if the depth is 2, 4, or 8 bpp, file is palettized */
1419 if ((color_depth
== 2) || (color_depth
== 4) || (color_depth
== 8)) {
1420 /* for palette traversal */
1421 unsigned int color_start
, color_count
, color_end
;
1422 unsigned char r
, g
, b
;
1424 if (color_greyscale
) {
1425 int color_index
, color_dec
;
1426 /* compute the greyscale palette */
1427 st
->codec
->bits_per_coded_sample
= color_depth
;
1428 color_count
= 1 << color_depth
;
1430 color_dec
= 256 / (color_count
- 1);
1431 for (j
= 0; j
< color_count
; j
++) {
1432 r
= g
= b
= color_index
;
1433 sc
->palette
[j
] = (r
<< 16) | (g
<< 8) | (b
);
1434 color_index
-= color_dec
;
1435 if (color_index
< 0)
1438 } else if (color_table_id
) {
1439 const uint8_t *color_table
;
1440 /* if flag bit 3 is set, use the default palette */
1441 color_count
= 1 << color_depth
;
1442 if (color_depth
== 2)
1443 color_table
= ff_qt_default_palette_4
;
1444 else if (color_depth
== 4)
1445 color_table
= ff_qt_default_palette_16
;
1447 color_table
= ff_qt_default_palette_256
;
1449 for (j
= 0; j
< color_count
; j
++) {
1450 r
= color_table
[j
* 3 + 0];
1451 g
= color_table
[j
* 3 + 1];
1452 b
= color_table
[j
* 3 + 2];
1453 sc
->palette
[j
] = (r
<< 16) | (g
<< 8) | (b
);
1456 /* load the palette from the file */
1457 color_start
= avio_rb32(pb
);
1458 color_count
= avio_rb16(pb
);
1459 color_end
= avio_rb16(pb
);
1460 if ((color_start
<= 255) && (color_end
<= 255)) {
1461 for (j
= color_start
; j
<= color_end
; j
++) {
1462 /* each R, G, or B component is 16 bits;
1463 * only use the top 8 bits; skip alpha bytes
1473 sc
->palette
[j
] = (r
<< 16) | (g
<< 8) | (b
);
1477 sc
->has_palette
= 1;
1481 static void mov_parse_stsd_audio(MOVContext
*c
, AVIOContext
*pb
,
1482 AVStream
*st
, MOVStreamContext
*sc
)
1484 int bits_per_sample
, flags
;
1485 uint16_t version
= avio_rb16(pb
);
1487 avio_rb16(pb
); /* revision level */
1488 avio_rb32(pb
); /* vendor */
1490 st
->codec
->channels
= avio_rb16(pb
); /* channel count */
1491 st
->codec
->bits_per_coded_sample
= avio_rb16(pb
); /* sample size */
1492 av_log(c
->fc
, AV_LOG_TRACE
, "audio channels %d\n", st
->codec
->channels
);
1494 sc
->audio_cid
= avio_rb16(pb
);
1495 avio_rb16(pb
); /* packet size = 0 */
1497 st
->codec
->sample_rate
= ((avio_rb32(pb
) >> 16));
1499 // Read QT version 1 fields. In version 0 these do not exist.
1500 av_log(c
->fc
, AV_LOG_TRACE
, "version =%d, isom =%d\n", version
, c
->isom
);
1503 sc
->samples_per_frame
= avio_rb32(pb
);
1504 avio_rb32(pb
); /* bytes per packet */
1505 sc
->bytes_per_frame
= avio_rb32(pb
);
1506 avio_rb32(pb
); /* bytes per sample */
1507 } else if (version
== 2) {
1508 avio_rb32(pb
); /* sizeof struct only */
1509 st
->codec
->sample_rate
= av_int2double(avio_rb64(pb
));
1510 st
->codec
->channels
= avio_rb32(pb
);
1511 avio_rb32(pb
); /* always 0x7F000000 */
1512 st
->codec
->bits_per_coded_sample
= avio_rb32(pb
);
1514 flags
= avio_rb32(pb
); /* lpcm format specific flag */
1515 sc
->bytes_per_frame
= avio_rb32(pb
);
1516 sc
->samples_per_frame
= avio_rb32(pb
);
1517 if (st
->codec
->codec_tag
== MKTAG('l','p','c','m'))
1518 st
->codec
->codec_id
=
1519 ff_mov_get_lpcm_codec_id(st
->codec
->bits_per_coded_sample
,
1524 switch (st
->codec
->codec_id
) {
1525 case AV_CODEC_ID_PCM_S8
:
1526 case AV_CODEC_ID_PCM_U8
:
1527 if (st
->codec
->bits_per_coded_sample
== 16)
1528 st
->codec
->codec_id
= AV_CODEC_ID_PCM_S16BE
;
1530 case AV_CODEC_ID_PCM_S16LE
:
1531 case AV_CODEC_ID_PCM_S16BE
:
1532 if (st
->codec
->bits_per_coded_sample
== 8)
1533 st
->codec
->codec_id
= AV_CODEC_ID_PCM_S8
;
1534 else if (st
->codec
->bits_per_coded_sample
== 24)
1535 st
->codec
->codec_id
=
1536 st
->codec
->codec_id
== AV_CODEC_ID_PCM_S16BE ?
1537 AV_CODEC_ID_PCM_S24BE
: AV_CODEC_ID_PCM_S24LE
;
1539 /* set values for old format before stsd version 1 appeared */
1540 case AV_CODEC_ID_MACE3
:
1541 sc
->samples_per_frame
= 6;
1542 sc
->bytes_per_frame
= 2 * st
->codec
->channels
;
1544 case AV_CODEC_ID_MACE6
:
1545 sc
->samples_per_frame
= 6;
1546 sc
->bytes_per_frame
= 1 * st
->codec
->channels
;
1548 case AV_CODEC_ID_ADPCM_IMA_QT
:
1549 sc
->samples_per_frame
= 64;
1550 sc
->bytes_per_frame
= 34 * st
->codec
->channels
;
1552 case AV_CODEC_ID_GSM
:
1553 sc
->samples_per_frame
= 160;
1554 sc
->bytes_per_frame
= 33;
1560 bits_per_sample
= av_get_bits_per_sample(st
->codec
->codec_id
);
1561 if (bits_per_sample
) {
1562 st
->codec
->bits_per_coded_sample
= bits_per_sample
;
1563 sc
->sample_size
= (bits_per_sample
>> 3) * st
->codec
->channels
;
1567 static void mov_parse_stsd_subtitle(MOVContext
*c
, AVIOContext
*pb
,
1568 AVStream
*st
, MOVStreamContext
*sc
,
1571 // ttxt stsd contains display flags, justification, background
1572 // color, fonts, and default styles, so fake an atom to read it
1573 MOVAtom fake_atom
= { .size
= size
};
1574 // mp4s contains a regular esds atom
1575 if (st
->codec
->codec_tag
!= AV_RL32("mp4s"))
1576 mov_read_glbl(c
, pb
, fake_atom
);
1577 st
->codec
->width
= sc
->width
;
1578 st
->codec
->height
= sc
->height
;
1581 static uint32_t yuv_to_rgba(uint32_t ycbcr
)
1586 y
= (ycbcr
>> 16) & 0xFF;
1587 cr
= (ycbcr
>> 8) & 0xFF;
1590 b
= av_clip_uint8(1.164 * (y
- 16) + 2.018 * (cb
- 128));
1591 g
= av_clip_uint8(1.164 * (y
- 16) - 0.813 * (cr
- 128) - 0.391 * (cb
- 128));
1592 r
= av_clip_uint8(1.164 * (y
- 16) + 1.596 * (cr
- 128));
1594 return (r
<< 16) | (g
<< 8) | b
;
1597 static int mov_rewrite_dvd_sub_extradata(AVStream
*st
)
1599 char buf
[256] = {0};
1600 uint8_t *src
= st
->codec
->extradata
;
1603 if (st
->codec
->extradata_size
!= 64)
1606 if (st
->codec
->width
> 0 && st
->codec
->height
> 0)
1607 snprintf(buf
, sizeof(buf
), "size: %dx%d\n",
1608 st
->codec
->width
, st
->codec
->height
);
1609 av_strlcat(buf
, "palette: ", sizeof(buf
));
1611 for (i
= 0; i
< 16; i
++) {
1612 uint32_t yuv
= AV_RB32(src
+ i
* 4);
1613 uint32_t rgba
= yuv_to_rgba(yuv
);
1615 av_strlcatf(buf
, sizeof(buf
), "%06"PRIx32
"%s", rgba
, i
!= 15 ?
", " : "");
1618 if (av_strlcat(buf
, "\n", sizeof(buf
)) >= sizeof(buf
))
1621 av_freep(&st
->codec
->extradata
);
1622 st
->codec
->extradata_size
= 0;
1623 st
->codec
->extradata
= av_mallocz(strlen(buf
) + FF_INPUT_BUFFER_PADDING_SIZE
);
1624 if (!st
->codec
->extradata
)
1625 return AVERROR(ENOMEM
);
1626 st
->codec
->extradata_size
= strlen(buf
);
1627 memcpy(st
->codec
->extradata
, buf
, st
->codec
->extradata_size
);
1632 static int mov_parse_stsd_data(MOVContext
*c
, AVIOContext
*pb
,
1633 AVStream
*st
, MOVStreamContext
*sc
,
1638 if (st
->codec
->codec_tag
== MKTAG('t','m','c','d')) {
1639 st
->codec
->extradata_size
= size
;
1640 st
->codec
->extradata
= av_malloc(size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
1641 if (!st
->codec
->extradata
)
1642 return AVERROR(ENOMEM
);
1643 ret
= ffio_read_size(pb
, st
->codec
->extradata
, size
);
1647 /* other codec type, just skip (rtp, mp4s ...) */
1648 avio_skip(pb
, size
);
1653 static int mov_finalize_stsd_codec(MOVContext
*c
, AVIOContext
*pb
,
1654 AVStream
*st
, MOVStreamContext
*sc
)
1656 if (st
->codec
->codec_type
== AVMEDIA_TYPE_AUDIO
&&
1657 !st
->codec
->sample_rate
&& sc
->time_scale
> 1)
1658 st
->codec
->sample_rate
= sc
->time_scale
;
1660 /* special codec parameters handling */
1661 switch (st
->codec
->codec_id
) {
1662 #if CONFIG_DV_DEMUXER
1663 case AV_CODEC_ID_DVAUDIO
:
1664 c
->dv_fctx
= avformat_alloc_context();
1666 av_log(c
->fc
, AV_LOG_ERROR
, "dv demux context alloc error\n");
1667 return AVERROR(ENOMEM
);
1669 c
->dv_demux
= avpriv_dv_init_demux(c
->dv_fctx
);
1671 av_log(c
->fc
, AV_LOG_ERROR
, "dv demux context init error\n");
1672 return AVERROR(ENOMEM
);
1674 sc
->dv_audio_container
= 1;
1675 st
->codec
->codec_id
= AV_CODEC_ID_PCM_S16LE
;
1678 /* no ifdef since parameters are always those */
1679 case AV_CODEC_ID_QCELP
:
1680 st
->codec
->channels
= 1;
1681 // force sample rate for qcelp when not stored in mov
1682 if (st
->codec
->codec_tag
!= MKTAG('Q','c','l','p'))
1683 st
->codec
->sample_rate
= 8000;
1685 case AV_CODEC_ID_AMR_NB
:
1686 st
->codec
->channels
= 1;
1687 /* force sample rate for amr, stsd in 3gp does not store sample rate */
1688 st
->codec
->sample_rate
= 8000;
1690 case AV_CODEC_ID_AMR_WB
:
1691 st
->codec
->channels
= 1;
1692 st
->codec
->sample_rate
= 16000;
1694 case AV_CODEC_ID_MP2
:
1695 case AV_CODEC_ID_MP3
:
1696 /* force type after stsd for m1a hdlr */
1697 st
->codec
->codec_type
= AVMEDIA_TYPE_AUDIO
;
1698 st
->need_parsing
= AVSTREAM_PARSE_FULL
;
1700 case AV_CODEC_ID_GSM
:
1701 case AV_CODEC_ID_ADPCM_MS
:
1702 case AV_CODEC_ID_ADPCM_IMA_WAV
:
1703 case AV_CODEC_ID_ILBC
:
1704 st
->codec
->block_align
= sc
->bytes_per_frame
;
1706 case AV_CODEC_ID_ALAC
:
1707 if (st
->codec
->extradata_size
== 36) {
1708 st
->codec
->channels
= AV_RB8 (st
->codec
->extradata
+ 21);
1709 st
->codec
->sample_rate
= AV_RB32(st
->codec
->extradata
+ 32);
1712 case AV_CODEC_ID_VC1
:
1713 st
->need_parsing
= AVSTREAM_PARSE_FULL
;
1721 static int mov_skip_multiple_stsd(MOVContext
*c
, AVIOContext
*pb
,
1722 int codec_tag
, int format
,
1725 int video_codec_id
= ff_codec_get_id(ff_codec_movvideo_tags
, format
);
1728 (codec_tag
== AV_RL32("avc1") ||
1729 codec_tag
== AV_RL32("hvc1") ||
1730 codec_tag
== AV_RL32("hev1") ||
1731 (codec_tag
!= format
&&
1732 (c
->fc
->video_codec_id ? video_codec_id
!= c
->fc
->video_codec_id
1733 : codec_tag
!= MKTAG('j','p','e','g'))))) {
1734 /* Multiple fourcc, we skip JPEG. This is not correct, we should
1735 * export it as a separate AVStream but this needs a few changes
1736 * in the MOV demuxer, patch welcome. */
1738 av_log(c
->fc
, AV_LOG_WARNING
, "multiple fourcc not supported\n");
1739 avio_skip(pb
, size
);
1746 int ff_mov_read_stsd_entries(MOVContext
*c
, AVIOContext
*pb
, int entries
)
1749 MOVStreamContext
*sc
;
1750 int pseudo_stream_id
;
1752 if (c
->fc
->nb_streams
< 1)
1754 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1757 for (pseudo_stream_id
= 0;
1758 pseudo_stream_id
< entries
&& !pb
->eof_reached
;
1759 pseudo_stream_id
++) {
1760 //Parsing Sample description table
1762 int ret
, dref_id
= 1;
1763 MOVAtom a
= { AV_RL32("stsd") };
1764 int64_t start_pos
= avio_tell(pb
);
1765 uint32_t size
= avio_rb32(pb
); /* size */
1766 uint32_t format
= avio_rl32(pb
); /* data format */
1769 avio_rb32(pb
); /* reserved */
1770 avio_rb16(pb
); /* reserved */
1771 dref_id
= avio_rb16(pb
);
1773 av_log(c
->fc
, AV_LOG_ERROR
, "invalid size %"PRIu32
" in stsd\n", size
);
1774 return AVERROR_INVALIDDATA
;
1777 if (mov_skip_multiple_stsd(c
, pb
, st
->codec
->codec_tag
, format
,
1778 size
- (avio_tell(pb
) - start_pos
)))
1781 sc
->pseudo_stream_id
= st
->codec
->codec_tag ?
-1 : pseudo_stream_id
;
1782 sc
->dref_id
= dref_id
;
1784 id
= mov_codec_id(st
, format
);
1786 av_log(c
->fc
, AV_LOG_TRACE
, "size=%"PRIu32
" 4CC= %"PRIu8
"%"PRIu8
"%"PRIu8
"%"PRIu8
" codec_type=%d\n", size
,
1787 (format
>> 0) & 0xff, (format
>> 8) & 0xff, (format
>> 16) & 0xff,
1788 (format
>> 24) & 0xff, st
->codec
->codec_type
);
1790 if (st
->codec
->codec_type
==AVMEDIA_TYPE_VIDEO
) {
1791 st
->codec
->codec_id
= id
;
1792 mov_parse_stsd_video(c
, pb
, st
, sc
);
1793 } else if (st
->codec
->codec_type
==AVMEDIA_TYPE_AUDIO
) {
1794 st
->codec
->codec_id
= id
;
1795 mov_parse_stsd_audio(c
, pb
, st
, sc
);
1796 } else if (st
->codec
->codec_type
==AVMEDIA_TYPE_SUBTITLE
){
1797 st
->codec
->codec_id
= id
;
1798 mov_parse_stsd_subtitle(c
, pb
, st
, sc
,
1799 size
- (avio_tell(pb
) - start_pos
));
1801 ret
= mov_parse_stsd_data(c
, pb
, st
, sc
,
1802 size
- (avio_tell(pb
) - start_pos
));
1806 /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
1807 a
.size
= size
- (avio_tell(pb
) - start_pos
);
1809 if ((ret
= mov_read_default(c
, pb
, a
)) < 0)
1811 } else if (a
.size
> 0)
1812 avio_skip(pb
, a
.size
);
1815 if (pb
->eof_reached
)
1818 return mov_finalize_stsd_codec(c
, pb
, st
, sc
);
1821 static int mov_read_stsd(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1825 avio_r8(pb
); /* version */
1826 avio_rb24(pb
); /* flags */
1827 entries
= avio_rb32(pb
);
1829 return ff_mov_read_stsd_entries(c
, pb
, entries
);
1832 static int mov_read_stsc(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1835 MOVStreamContext
*sc
;
1836 unsigned int i
, entries
;
1838 if (c
->fc
->nb_streams
< 1)
1840 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1843 avio_r8(pb
); /* version */
1844 avio_rb24(pb
); /* flags */
1846 entries
= avio_rb32(pb
);
1848 av_log(c
->fc
, AV_LOG_TRACE
, "track[%i].stsc.entries = %i\n", c
->fc
->nb_streams
-1, entries
);
1852 if (entries
>= UINT_MAX
/ sizeof(*sc
->stsc_data
))
1853 return AVERROR_INVALIDDATA
;
1854 sc
->stsc_data
= av_malloc(entries
* sizeof(*sc
->stsc_data
));
1856 return AVERROR(ENOMEM
);
1858 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
1859 sc
->stsc_data
[i
].first
= avio_rb32(pb
);
1860 sc
->stsc_data
[i
].count
= avio_rb32(pb
);
1861 sc
->stsc_data
[i
].id
= avio_rb32(pb
);
1866 if (pb
->eof_reached
)
1872 static int mov_read_stps(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1875 MOVStreamContext
*sc
;
1876 unsigned i
, entries
;
1878 if (c
->fc
->nb_streams
< 1)
1880 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1883 avio_rb32(pb
); // version + flags
1885 entries
= avio_rb32(pb
);
1886 if (entries
>= UINT_MAX
/ sizeof(*sc
->stps_data
))
1887 return AVERROR_INVALIDDATA
;
1888 sc
->stps_data
= av_malloc(entries
* sizeof(*sc
->stps_data
));
1890 return AVERROR(ENOMEM
);
1892 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
1893 sc
->stps_data
[i
] = avio_rb32(pb
);
1894 //av_log(c->fc, AV_LOG_TRACE, "stps %d\n", sc->stps_data[i]);
1899 if (pb
->eof_reached
)
1905 static int mov_read_stss(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1908 MOVStreamContext
*sc
;
1909 unsigned int i
, entries
;
1911 if (c
->fc
->nb_streams
< 1)
1913 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1916 avio_r8(pb
); /* version */
1917 avio_rb24(pb
); /* flags */
1919 entries
= avio_rb32(pb
);
1921 av_log(c
->fc
, AV_LOG_TRACE
, "keyframe_count = %d\n", entries
);
1925 sc
->keyframe_absent
= 1;
1928 if (entries
>= UINT_MAX
/ sizeof(int))
1929 return AVERROR_INVALIDDATA
;
1930 av_freep(&sc
->keyframes
);
1931 sc
->keyframes
= av_malloc(entries
* sizeof(int));
1933 return AVERROR(ENOMEM
);
1935 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
1936 sc
->keyframes
[i
] = avio_rb32(pb
);
1937 //av_log(c->fc, AV_LOG_TRACE, "keyframes[]=%d\n", sc->keyframes[i]);
1940 sc
->keyframe_count
= i
;
1942 if (pb
->eof_reached
)
1948 static int mov_read_stsz(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
1951 MOVStreamContext
*sc
;
1952 unsigned int i
, entries
, sample_size
, field_size
, num_bytes
;
1957 if (c
->fc
->nb_streams
< 1)
1959 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1962 avio_r8(pb
); /* version */
1963 avio_rb24(pb
); /* flags */
1965 if (atom
.type
== MKTAG('s','t','s','z')) {
1966 sample_size
= avio_rb32(pb
);
1967 if (!sc
->sample_size
) /* do not overwrite value computed in stsd */
1968 sc
->sample_size
= sample_size
;
1972 avio_rb24(pb
); /* reserved */
1973 field_size
= avio_r8(pb
);
1975 entries
= avio_rb32(pb
);
1977 av_log(c
->fc
, AV_LOG_TRACE
, "sample_size = %d sample_count = %d\n", sc
->sample_size
, entries
);
1979 sc
->sample_count
= entries
;
1983 if (field_size
!= 4 && field_size
!= 8 && field_size
!= 16 && field_size
!= 32) {
1984 av_log(c
->fc
, AV_LOG_ERROR
, "Invalid sample field size %d\n", field_size
);
1985 return AVERROR_INVALIDDATA
;
1990 if (entries
>= UINT_MAX
/ sizeof(int) || entries
>= (UINT_MAX
- 4) / field_size
)
1991 return AVERROR_INVALIDDATA
;
1992 sc
->sample_sizes
= av_malloc(entries
* sizeof(int));
1993 if (!sc
->sample_sizes
)
1994 return AVERROR(ENOMEM
);
1996 num_bytes
= (entries
*field_size
+4)>>3;
1998 buf
= av_malloc(num_bytes
+FF_INPUT_BUFFER_PADDING_SIZE
);
2000 av_freep(&sc
->sample_sizes
);
2001 return AVERROR(ENOMEM
);
2004 ret
= ffio_read_size(pb
, buf
, num_bytes
);
2006 av_freep(&sc
->sample_sizes
);
2011 init_get_bits(&gb
, buf
, 8*num_bytes
);
2013 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
2014 sc
->sample_sizes
[i
] = get_bits_long(&gb
, field_size
);
2015 sc
->data_size
+= sc
->sample_sizes
[i
];
2018 sc
->sample_count
= i
;
2022 if (pb
->eof_reached
)
2028 static int mov_read_stts(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2031 MOVStreamContext
*sc
;
2032 unsigned int i
, entries
;
2034 int64_t total_sample_count
=0;
2036 if (c
->fc
->nb_streams
< 1)
2038 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
2041 avio_r8(pb
); /* version */
2042 avio_rb24(pb
); /* flags */
2043 entries
= avio_rb32(pb
);
2045 av_log(c
->fc
, AV_LOG_TRACE
, "track[%i].stts.entries = %i\n",
2046 c
->fc
->nb_streams
-1, entries
);
2050 if (entries
>= UINT_MAX
/ sizeof(*sc
->stts_data
))
2051 return AVERROR(EINVAL
);
2053 av_free(sc
->stts_data
);
2054 sc
->stts_data
= av_malloc(entries
* sizeof(*sc
->stts_data
));
2056 return AVERROR(ENOMEM
);
2058 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
2059 int sample_duration
;
2062 sample_count
=avio_rb32(pb
);
2063 sample_duration
= avio_rb32(pb
);
2064 if (sample_count
< 0) {
2065 av_log(c
->fc
, AV_LOG_ERROR
, "Invalid sample_count=%d\n", sample_count
);
2066 return AVERROR_INVALIDDATA
;
2068 sc
->stts_data
[i
].count
= sample_count
;
2069 sc
->stts_data
[i
].duration
= sample_duration
;
2071 av_log(c
->fc
, AV_LOG_TRACE
, "sample_count=%d, sample_duration=%d\n",
2072 sample_count
, sample_duration
);
2074 duration
+=(int64_t)sample_duration
*sample_count
;
2075 total_sample_count
+=sample_count
;
2080 if (pb
->eof_reached
)
2083 st
->nb_frames
= total_sample_count
;
2085 st
->duration
= duration
;
2086 sc
->track_end
= duration
;
2090 static int mov_read_ctts(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2093 MOVStreamContext
*sc
;
2094 unsigned int i
, entries
;
2096 if (c
->fc
->nb_streams
< 1)
2098 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
2101 avio_r8(pb
); /* version */
2102 avio_rb24(pb
); /* flags */
2103 entries
= avio_rb32(pb
);
2105 av_log(c
->fc
, AV_LOG_TRACE
, "track[%i].ctts.entries = %i\n", c
->fc
->nb_streams
-1, entries
);
2107 av_freep(&sc
->ctts_data
);
2111 if (entries
>= UINT_MAX
/ sizeof(*sc
->ctts_data
))
2112 return AVERROR_INVALIDDATA
;
2113 sc
->ctts_data
= av_realloc(NULL
, entries
* sizeof(*sc
->ctts_data
));
2115 return AVERROR(ENOMEM
);
2117 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
2118 int count
=avio_rb32(pb
);
2119 int duration
=avio_rb32(pb
);
2121 sc
->ctts_data
[i
].count
= count
;
2122 sc
->ctts_data
[i
].duration
= duration
;
2124 sc
->dts_shift
= FFMAX(sc
->dts_shift
, -duration
);
2129 if (pb
->eof_reached
)
2132 av_log(c
->fc
, AV_LOG_TRACE
, "dts shift %d\n", sc
->dts_shift
);
2137 static int mov_read_sbgp(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2140 MOVStreamContext
*sc
;
2141 unsigned int i
, entries
;
2143 uint32_t grouping_type
;
2145 if (c
->fc
->nb_streams
< 1)
2147 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
2150 version
= avio_r8(pb
); /* version */
2151 avio_rb24(pb
); /* flags */
2152 grouping_type
= avio_rl32(pb
);
2153 if (grouping_type
!= MKTAG( 'r','a','p',' '))
2154 return 0; /* only support 'rap ' grouping */
2156 avio_rb32(pb
); /* grouping_type_parameter */
2158 entries
= avio_rb32(pb
);
2161 if (entries
>= UINT_MAX
/ sizeof(*sc
->rap_group
))
2162 return AVERROR_INVALIDDATA
;
2163 sc
->rap_group
= av_malloc(entries
* sizeof(*sc
->rap_group
));
2165 return AVERROR(ENOMEM
);
2167 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
2168 sc
->rap_group
[i
].count
= avio_rb32(pb
); /* sample_count */
2169 sc
->rap_group
[i
].index
= avio_rb32(pb
); /* group_description_index */
2172 sc
->rap_group_count
= i
;
2174 return pb
->eof_reached ? AVERROR_EOF
: 0;
2177 static void mov_build_index(MOVContext
*mov
, AVStream
*st
)
2179 MOVStreamContext
*sc
= st
->priv_data
;
2180 int64_t current_offset
;
2181 int64_t current_dts
= 0;
2182 unsigned int stts_index
= 0;
2183 unsigned int stsc_index
= 0;
2184 unsigned int stss_index
= 0;
2185 unsigned int stps_index
= 0;
2187 uint64_t stream_size
= 0;
2189 /* adjust first dts according to edit list */
2190 if (sc
->time_offset
&& mov
->time_scale
> 0) {
2191 if (sc
->time_offset
< 0)
2192 sc
->time_offset
= av_rescale(sc
->time_offset
, sc
->time_scale
, mov
->time_scale
);
2193 current_dts
= -sc
->time_offset
;
2194 if (sc
->ctts_data
&& sc
->stts_data
&& sc
->stts_data
[0].duration
&&
2195 sc
->ctts_data
[0].duration
/ sc
->stts_data
[0].duration
> 16) {
2196 /* more than 16 frames delay, dts are likely wrong
2197 this happens with files created by iMovie */
2199 st
->codec
->has_b_frames
= 1;
2203 /* only use old uncompressed audio chunk demuxing when stts specifies it */
2204 if (!(st
->codec
->codec_type
== AVMEDIA_TYPE_AUDIO
&&
2205 sc
->stts_count
== 1 && sc
->stts_data
[0].duration
== 1)) {
2206 unsigned int current_sample
= 0;
2207 unsigned int stts_sample
= 0;
2208 unsigned int sample_size
;
2209 unsigned int distance
= 0;
2210 unsigned int rap_group_index
= 0;
2211 unsigned int rap_group_sample
= 0;
2212 int rap_group_present
= sc
->rap_group_count
&& sc
->rap_group
;
2213 int key_off
= (sc
->keyframes
&& sc
->keyframes
[0] > 0) || (sc
->stps_data
&& sc
->stps_data
[0] > 0);
2215 current_dts
-= sc
->dts_shift
;
2217 if (!sc
->sample_count
)
2219 if (sc
->sample_count
>= UINT_MAX
/ sizeof(*st
->index_entries
) - st
->nb_index_entries
)
2221 if (av_reallocp_array(&st
->index_entries
,
2222 st
->nb_index_entries
+ sc
->sample_count
,
2223 sizeof(*st
->index_entries
)) < 0) {
2224 st
->nb_index_entries
= 0;
2227 st
->index_entries_allocated_size
= (st
->nb_index_entries
+ sc
->sample_count
) * sizeof(*st
->index_entries
);
2229 for (i
= 0; i
< sc
->chunk_count
; i
++) {
2230 current_offset
= sc
->chunk_offsets
[i
];
2231 while (stsc_index
+ 1 < sc
->stsc_count
&&
2232 i
+ 1 == sc
->stsc_data
[stsc_index
+ 1].first
)
2234 for (j
= 0; j
< sc
->stsc_data
[stsc_index
].count
; j
++) {
2236 if (current_sample
>= sc
->sample_count
) {
2237 av_log(mov
->fc
, AV_LOG_ERROR
, "wrong sample count\n");
2241 if (!sc
->keyframe_absent
&& (!sc
->keyframe_count
|| current_sample
+key_off
== sc
->keyframes
[stss_index
])) {
2243 if (stss_index
+ 1 < sc
->keyframe_count
)
2245 } else if (sc
->stps_count
&& current_sample
+key_off
== sc
->stps_data
[stps_index
]) {
2247 if (stps_index
+ 1 < sc
->stps_count
)
2250 if (rap_group_present
&& rap_group_index
< sc
->rap_group_count
) {
2251 if (sc
->rap_group
[rap_group_index
].index
> 0)
2253 if (++rap_group_sample
== sc
->rap_group
[rap_group_index
].count
) {
2254 rap_group_sample
= 0;
2260 sample_size
= sc
->sample_size
> 0 ? sc
->sample_size
: sc
->sample_sizes
[current_sample
];
2261 if (sc
->pseudo_stream_id
== -1 ||
2262 sc
->stsc_data
[stsc_index
].id
- 1 == sc
->pseudo_stream_id
) {
2263 AVIndexEntry
*e
= &st
->index_entries
[st
->nb_index_entries
++];
2264 e
->pos
= current_offset
;
2265 e
->timestamp
= current_dts
;
2266 e
->size
= sample_size
;
2267 e
->min_distance
= distance
;
2268 e
->flags
= keyframe ? AVINDEX_KEYFRAME
: 0;
2269 av_log(mov
->fc
, AV_LOG_TRACE
, "AVIndex stream %d, sample %d, offset %"PRIx64
", dts %"PRId64
", "
2270 "size %d, distance %d, keyframe %d\n", st
->index
, current_sample
,
2271 current_offset
, current_dts
, sample_size
, distance
, keyframe
);
2274 current_offset
+= sample_size
;
2275 stream_size
+= sample_size
;
2276 current_dts
+= sc
->stts_data
[stts_index
].duration
;
2280 if (stts_index
+ 1 < sc
->stts_count
&& stts_sample
== sc
->stts_data
[stts_index
].count
) {
2286 if (st
->duration
> 0)
2287 st
->codec
->bit_rate
= stream_size
*8*sc
->time_scale
/st
->duration
;
2289 unsigned chunk_samples
, total
= 0;
2291 // compute total chunk count
2292 for (i
= 0; i
< sc
->stsc_count
; i
++) {
2293 unsigned count
, chunk_count
;
2295 chunk_samples
= sc
->stsc_data
[i
].count
;
2296 if (i
!= sc
->stsc_count
- 1 &&
2297 sc
->samples_per_frame
&& chunk_samples
% sc
->samples_per_frame
) {
2298 av_log(mov
->fc
, AV_LOG_ERROR
, "error unaligned chunk\n");
2302 if (sc
->samples_per_frame
>= 160) { // gsm
2303 count
= chunk_samples
/ sc
->samples_per_frame
;
2304 } else if (sc
->samples_per_frame
> 1) {
2305 unsigned samples
= (1024/sc
->samples_per_frame
)*sc
->samples_per_frame
;
2306 count
= (chunk_samples
+samples
-1) / samples
;
2308 count
= (chunk_samples
+1023) / 1024;
2311 if (i
< sc
->stsc_count
- 1)
2312 chunk_count
= sc
->stsc_data
[i
+1].first
- sc
->stsc_data
[i
].first
;
2314 chunk_count
= sc
->chunk_count
- (sc
->stsc_data
[i
].first
- 1);
2315 total
+= chunk_count
* count
;
2318 av_log(mov
->fc
, AV_LOG_TRACE
, "chunk count %d\n", total
);
2319 if (total
>= UINT_MAX
/ sizeof(*st
->index_entries
) - st
->nb_index_entries
)
2321 if (av_reallocp_array(&st
->index_entries
,
2322 st
->nb_index_entries
+ total
,
2323 sizeof(*st
->index_entries
)) < 0) {
2324 st
->nb_index_entries
= 0;
2327 st
->index_entries_allocated_size
= (st
->nb_index_entries
+ total
) * sizeof(*st
->index_entries
);
2330 for (i
= 0; i
< sc
->chunk_count
; i
++) {
2331 current_offset
= sc
->chunk_offsets
[i
];
2332 if (stsc_index
+ 1 < sc
->stsc_count
&&
2333 i
+ 1 == sc
->stsc_data
[stsc_index
+ 1].first
)
2335 chunk_samples
= sc
->stsc_data
[stsc_index
].count
;
2337 while (chunk_samples
> 0) {
2339 unsigned size
, samples
;
2341 if (sc
->samples_per_frame
> 1 && !sc
->bytes_per_frame
) {
2342 avpriv_request_sample(mov
->fc
,
2343 "Zero bytes per frame, but %d samples per frame",
2344 sc
->samples_per_frame
);
2348 if (sc
->samples_per_frame
>= 160) { // gsm
2349 samples
= sc
->samples_per_frame
;
2350 size
= sc
->bytes_per_frame
;
2352 if (sc
->samples_per_frame
> 1) {
2353 samples
= FFMIN((1024 / sc
->samples_per_frame
)*
2354 sc
->samples_per_frame
, chunk_samples
);
2355 size
= (samples
/ sc
->samples_per_frame
) * sc
->bytes_per_frame
;
2357 samples
= FFMIN(1024, chunk_samples
);
2358 size
= samples
* sc
->sample_size
;
2362 if (st
->nb_index_entries
>= total
) {
2363 av_log(mov
->fc
, AV_LOG_ERROR
, "wrong chunk count %d\n", total
);
2366 e
= &st
->index_entries
[st
->nb_index_entries
++];
2367 e
->pos
= current_offset
;
2368 e
->timestamp
= current_dts
;
2370 e
->min_distance
= 0;
2371 e
->flags
= AVINDEX_KEYFRAME
;
2372 av_log(mov
->fc
, AV_LOG_TRACE
, "AVIndex stream %d, chunk %d, offset %"PRIx64
", dts %"PRId64
", "
2373 "size %d, duration %d\n", st
->index
, i
, current_offset
, current_dts
,
2376 current_offset
+= size
;
2377 current_dts
+= samples
;
2378 chunk_samples
-= samples
;
2384 static int mov_open_dref(AVIOContext
**pb
, char *src
, MOVDref
*ref
,
2385 AVIOInterruptCB
*int_cb
)
2387 /* try relative path, we do not try the absolute because it can leak information about our
2388 system to an attacker */
2389 if (ref
->nlvl_to
> 0 && ref
->nlvl_from
> 0 && ref
->path
[0] != '/') {
2390 char filename
[1024];
2394 /* find a source dir */
2395 src_path
= strrchr(src
, '/');
2401 /* find a next level down to target */
2402 for (i
= 0, l
= strlen(ref
->path
) - 1; l
>= 0; l
--)
2403 if (ref
->path
[l
] == '/') {
2404 if (i
== ref
->nlvl_to
- 1)
2410 /* compose filename if next level down to target was found */
2411 if (i
== ref
->nlvl_to
- 1 && src_path
- src
< sizeof(filename
)) {
2412 memcpy(filename
, src
, src_path
- src
);
2413 filename
[src_path
- src
] = 0;
2415 for (i
= 1; i
< ref
->nlvl_from
; i
++)
2416 av_strlcat(filename
, "../", 1024);
2418 av_strlcat(filename
, ref
->path
+ l
+ 1, 1024);
2420 if (!avio_open2(pb
, filename
, AVIO_FLAG_READ
, int_cb
, NULL
))
2425 return AVERROR(ENOENT
);
2428 static int mov_read_trak(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2431 MOVStreamContext
*sc
;
2434 st
= avformat_new_stream(c
->fc
, NULL
);
2435 if (!st
) return AVERROR(ENOMEM
);
2436 st
->id
= c
->fc
->nb_streams
;
2437 sc
= av_mallocz(sizeof(MOVStreamContext
));
2438 if (!sc
) return AVERROR(ENOMEM
);
2441 st
->codec
->codec_type
= AVMEDIA_TYPE_DATA
;
2442 sc
->ffindex
= st
->index
;
2444 if ((ret
= mov_read_default(c
, pb
, atom
)) < 0)
2448 if (sc
->chunk_count
&& (!sc
->stts_count
|| !sc
->stsc_count
||
2449 (!sc
->sample_size
&& !sc
->sample_count
))) {
2450 av_log(c
->fc
, AV_LOG_ERROR
, "stream %d, missing mandatory atoms, broken header\n",
2455 if (sc
->time_scale
<= 0) {
2456 av_log(c
->fc
, AV_LOG_WARNING
, "stream %d, timescale not set\n", st
->index
);
2457 sc
->time_scale
= c
->time_scale
;
2458 if (sc
->time_scale
<= 0)
2462 avpriv_set_pts_info(st
, 64, 1, sc
->time_scale
);
2464 mov_build_index(c
, st
);
2466 if (sc
->dref_id
-1 < sc
->drefs_count
&& sc
->drefs
[sc
->dref_id
-1].path
) {
2467 MOVDref
*dref
= &sc
->drefs
[sc
->dref_id
- 1];
2468 if (mov_open_dref(&sc
->pb
, c
->fc
->filename
, dref
, &c
->fc
->interrupt_callback
) < 0)
2469 av_log(c
->fc
, AV_LOG_ERROR
,
2470 "stream %d, error opening alias: path='%s', dir='%s', "
2471 "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2472 st
->index
, dref
->path
, dref
->dir
, dref
->filename
,
2473 dref
->volume
, dref
->nlvl_from
, dref
->nlvl_to
);
2477 if (st
->codec
->codec_type
== AVMEDIA_TYPE_VIDEO
) {
2478 if (!st
->sample_aspect_ratio
.num
&&
2479 (st
->codec
->width
!= sc
->width
|| st
->codec
->height
!= sc
->height
)) {
2480 st
->sample_aspect_ratio
= av_d2q(((double)st
->codec
->height
* sc
->width
) /
2481 ((double)st
->codec
->width
* sc
->height
), INT_MAX
);
2485 // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
2486 if (!st
->codec
->extradata_size
&& st
->codec
->codec_id
== AV_CODEC_ID_H264
&&
2487 TAG_IS_AVCI(st
->codec
->codec_tag
)) {
2488 ret
= ff_generate_avci_extradata(st
);
2493 switch (st
->codec
->codec_id
) {
2494 #if CONFIG_H261_DECODER
2495 case AV_CODEC_ID_H261
:
2497 #if CONFIG_H263_DECODER
2498 case AV_CODEC_ID_H263
:
2500 #if CONFIG_MPEG4_DECODER
2501 case AV_CODEC_ID_MPEG4
:
2503 st
->codec
->width
= 0; /* let decoder init width/height */
2504 st
->codec
->height
= 0;
2508 /* Do not need those anymore. */
2509 av_freep(&sc
->chunk_offsets
);
2510 av_freep(&sc
->stsc_data
);
2511 av_freep(&sc
->sample_sizes
);
2512 av_freep(&sc
->keyframes
);
2513 av_freep(&sc
->stts_data
);
2514 av_freep(&sc
->stps_data
);
2515 av_freep(&sc
->rap_group
);
2520 static int mov_read_ilst(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2523 c
->itunes_metadata
= 1;
2524 ret
= mov_read_default(c
, pb
, atom
);
2525 c
->itunes_metadata
= 0;
2529 static int mov_read_replaygain(MOVContext
*c
, AVIOContext
*pb
, int size
)
2531 int64_t end
= avio_tell(pb
) + size
;
2532 uint8_t *key
= NULL
, *val
= NULL
;
2535 for (i
= 0; i
< 2; i
++) {
2540 if (end
- avio_tell(pb
) <= 12)
2543 len
= avio_rb32(pb
);
2544 tag
= avio_rl32(pb
);
2545 avio_skip(pb
, 4); // flags
2547 if (len
< 12 || len
- 12 > end
- avio_tell(pb
))
2551 if (tag
== MKTAG('n', 'a', 'm', 'e'))
2553 else if (tag
== MKTAG('d', 'a', 't', 'a') && len
> 4) {
2560 *p
= av_malloc(len
+ 1);
2563 ret
= ffio_read_size(pb
, *p
, len
);
2572 av_dict_set(&c
->fc
->metadata
, key
, val
,
2573 AV_DICT_DONT_STRDUP_KEY
| AV_DICT_DONT_STRDUP_VAL
);
2577 avio_seek(pb
, end
, SEEK_SET
);
2583 static int mov_read_custom(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2585 int64_t end
= avio_tell(pb
) + atom
.size
;
2591 len
= avio_rb32(pb
);
2592 tag
= avio_rl32(pb
);
2594 if (len
> atom
.size
)
2597 if (tag
== MKTAG('m', 'e', 'a', 'n') && len
> 12) {
2598 uint8_t domain
[128];
2601 avio_skip(pb
, 4); // flags
2604 domain_len
= avio_get_str(pb
, len
, domain
, sizeof(domain
));
2605 avio_skip(pb
, len
- domain_len
);
2606 if (!strcmp(domain
, "org.hydrogenaudio.replaygain"))
2607 return mov_read_replaygain(c
, pb
, end
- avio_tell(pb
));
2611 av_log(c
->fc
, AV_LOG_VERBOSE
,
2612 "Unhandled or malformed custom metadata of size %"PRId64
"\n", atom
.size
);
2616 static int mov_read_meta(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2618 while (atom
.size
> 8) {
2619 uint32_t tag
= avio_rl32(pb
);
2621 if (tag
== MKTAG('h','d','l','r')) {
2622 avio_seek(pb
, -8, SEEK_CUR
);
2624 return mov_read_default(c
, pb
, atom
);
2630 static int mov_read_tkhd(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2635 int64_t disp_transform
[2];
2636 int display_matrix
[3][3];
2638 MOVStreamContext
*sc
;
2642 if (c
->fc
->nb_streams
< 1)
2644 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
2647 version
= avio_r8(pb
);
2648 flags
= avio_rb24(pb
);
2649 st
->disposition
|= (flags
& MOV_TKHD_FLAG_ENABLED
) ? AV_DISPOSITION_DEFAULT
: 0;
2655 avio_rb32(pb
); /* creation time */
2656 avio_rb32(pb
); /* modification time */
2658 st
->id
= (int)avio_rb32(pb
); /* track id (NOT 0 !)*/
2659 avio_rb32(pb
); /* reserved */
2661 /* highlevel (considering edits) duration in movie timebase */
2662 (version
== 1) ?
avio_rb64(pb
) : avio_rb32(pb
);
2663 avio_rb32(pb
); /* reserved */
2664 avio_rb32(pb
); /* reserved */
2666 avio_rb16(pb
); /* layer */
2667 avio_rb16(pb
); /* alternate group */
2668 avio_rb16(pb
); /* volume */
2669 avio_rb16(pb
); /* reserved */
2671 //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2672 // they're kept in fixed point format through all calculations
2673 // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
2674 // side data, but the scale factor is not needed to calculate aspect ratio
2675 for (i
= 0; i
< 3; i
++) {
2676 display_matrix
[i
][0] = avio_rb32(pb
); // 16.16 fixed point
2677 display_matrix
[i
][1] = avio_rb32(pb
); // 16.16 fixed point
2678 display_matrix
[i
][2] = avio_rb32(pb
); // 2.30 fixed point
2681 width
= avio_rb32(pb
); // 16.16 fixed point track width
2682 height
= avio_rb32(pb
); // 16.16 fixed point track height
2683 sc
->width
= width
>> 16;
2684 sc
->height
= height
>> 16;
2686 // save the matrix when it is not the default identity
2687 if (display_matrix
[0][0] != (1 << 16) ||
2688 display_matrix
[1][1] != (1 << 16) ||
2689 display_matrix
[2][2] != (1 << 30) ||
2690 display_matrix
[0][1] || display_matrix
[0][2] ||
2691 display_matrix
[1][0] || display_matrix
[1][2] ||
2692 display_matrix
[2][0] || display_matrix
[2][1]) {
2695 av_freep(&sc
->display_matrix
);
2696 sc
->display_matrix
= av_malloc(sizeof(int32_t) * 9);
2697 if (!sc
->display_matrix
)
2698 return AVERROR(ENOMEM
);
2700 for (i
= 0; i
< 3; i
++)
2701 for (j
= 0; j
< 3; j
++)
2702 sc
->display_matrix
[i
* 3 + j
] = display_matrix
[i
][j
];
2705 // transform the display width/height according to the matrix
2706 // skip this when the display matrix is the identity one
2707 // to keep the same scale, use [width height 1<<16]
2708 if (width
&& height
&& sc
->display_matrix
) {
2709 for (i
= 0; i
< 2; i
++)
2711 (int64_t) width
* display_matrix
[0][i
] +
2712 (int64_t) height
* display_matrix
[1][i
] +
2713 ((int64_t) display_matrix
[2][i
] << 16);
2715 //sample aspect ratio is new width/height divided by old width/height
2716 if (disp_transform
[0] > 0 && disp_transform
[1] > 0)
2717 st
->sample_aspect_ratio
= av_d2q(
2718 ((double) disp_transform
[0] * height
) /
2719 ((double) disp_transform
[1] * width
), INT_MAX
);
2724 static int mov_read_tfhd(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2726 MOVFragment
*frag
= &c
->fragment
;
2727 MOVTrackExt
*trex
= NULL
;
2728 int flags
, track_id
, i
;
2730 avio_r8(pb
); /* version */
2731 flags
= avio_rb24(pb
);
2733 track_id
= avio_rb32(pb
);
2735 return AVERROR_INVALIDDATA
;
2736 frag
->track_id
= track_id
;
2737 for (i
= 0; i
< c
->trex_count
; i
++)
2738 if (c
->trex_data
[i
].track_id
== frag
->track_id
) {
2739 trex
= &c
->trex_data
[i
];
2743 av_log(c
->fc
, AV_LOG_ERROR
, "could not find corresponding trex\n");
2744 return AVERROR_INVALIDDATA
;
2747 frag
->base_data_offset
= flags
& MOV_TFHD_BASE_DATA_OFFSET ?
2748 avio_rb64(pb
) : flags
& MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
2749 frag
->moof_offset
: frag
->implicit_offset
;
2750 frag
->stsd_id
= flags
& MOV_TFHD_STSD_ID ?
avio_rb32(pb
) : trex
->stsd_id
;
2752 frag
->duration
= flags
& MOV_TFHD_DEFAULT_DURATION ?
2753 avio_rb32(pb
) : trex
->duration
;
2754 frag
->size
= flags
& MOV_TFHD_DEFAULT_SIZE ?
2755 avio_rb32(pb
) : trex
->size
;
2756 frag
->flags
= flags
& MOV_TFHD_DEFAULT_FLAGS ?
2757 avio_rb32(pb
) : trex
->flags
;
2758 av_log(c
->fc
, AV_LOG_TRACE
, "frag flags 0x%x\n", frag
->flags
);
2762 static int mov_read_chap(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2764 c
->chapter_track
= avio_rb32(pb
);
2768 static int mov_read_trex(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2773 if ((uint64_t)c
->trex_count
+1 >= UINT_MAX
/ sizeof(*c
->trex_data
))
2774 return AVERROR_INVALIDDATA
;
2775 if ((err
= av_reallocp_array(&c
->trex_data
, c
->trex_count
+ 1,
2776 sizeof(*c
->trex_data
))) < 0) {
2780 trex
= &c
->trex_data
[c
->trex_count
++];
2781 avio_r8(pb
); /* version */
2782 avio_rb24(pb
); /* flags */
2783 trex
->track_id
= avio_rb32(pb
);
2784 trex
->stsd_id
= avio_rb32(pb
);
2785 trex
->duration
= avio_rb32(pb
);
2786 trex
->size
= avio_rb32(pb
);
2787 trex
->flags
= avio_rb32(pb
);
2791 static int mov_read_tfdt(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2793 MOVFragment
*frag
= &c
->fragment
;
2794 AVStream
*st
= NULL
;
2795 MOVStreamContext
*sc
;
2798 for (i
= 0; i
< c
->fc
->nb_streams
; i
++) {
2799 if (c
->fc
->streams
[i
]->id
== frag
->track_id
) {
2800 st
= c
->fc
->streams
[i
];
2805 av_log(c
->fc
, AV_LOG_ERROR
, "could not find corresponding track id %d\n", frag
->track_id
);
2806 return AVERROR_INVALIDDATA
;
2809 if (sc
->pseudo_stream_id
+ 1 != frag
->stsd_id
)
2811 version
= avio_r8(pb
);
2812 avio_rb24(pb
); /* flags */
2814 sc
->track_end
= avio_rb64(pb
);
2816 sc
->track_end
= avio_rb32(pb
);
2821 static int mov_read_trun(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2823 MOVFragment
*frag
= &c
->fragment
;
2824 AVStream
*st
= NULL
;
2825 MOVStreamContext
*sc
;
2829 int data_offset
= 0;
2830 unsigned entries
, first_sample_flags
= frag
->flags
;
2831 int flags
, distance
, i
, found_keyframe
= 0, err
;
2833 for (i
= 0; i
< c
->fc
->nb_streams
; i
++) {
2834 if (c
->fc
->streams
[i
]->id
== frag
->track_id
) {
2835 st
= c
->fc
->streams
[i
];
2840 av_log(c
->fc
, AV_LOG_ERROR
, "could not find corresponding track id %d\n", frag
->track_id
);
2841 return AVERROR_INVALIDDATA
;
2844 if (sc
->pseudo_stream_id
+1 != frag
->stsd_id
)
2846 avio_r8(pb
); /* version */
2847 flags
= avio_rb24(pb
);
2848 entries
= avio_rb32(pb
);
2849 av_log(c
->fc
, AV_LOG_TRACE
, "flags 0x%x entries %d\n", flags
, entries
);
2851 /* Always assume the presence of composition time offsets.
2852 * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
2853 * 1) in the initial movie, there are no samples.
2854 * 2) in the first movie fragment, there is only one sample without composition time offset.
2855 * 3) in the subsequent movie fragments, there are samples with composition time offset. */
2856 if (!sc
->ctts_count
&& sc
->sample_count
)
2858 /* Complement ctts table if moov atom doesn't have ctts atom. */
2859 ctts_data
= av_realloc(NULL
, sizeof(*sc
->ctts_data
));
2861 return AVERROR(ENOMEM
);
2862 sc
->ctts_data
= ctts_data
;
2863 sc
->ctts_data
[sc
->ctts_count
].count
= sc
->sample_count
;
2864 sc
->ctts_data
[sc
->ctts_count
].duration
= 0;
2867 if ((uint64_t)entries
+sc
->ctts_count
>= UINT_MAX
/sizeof(*sc
->ctts_data
))
2868 return AVERROR_INVALIDDATA
;
2869 if ((err
= av_reallocp_array(&sc
->ctts_data
, entries
+ sc
->ctts_count
,
2870 sizeof(*sc
->ctts_data
))) < 0) {
2874 if (flags
& MOV_TRUN_DATA_OFFSET
) data_offset
= avio_rb32(pb
);
2875 if (flags
& MOV_TRUN_FIRST_SAMPLE_FLAGS
) first_sample_flags
= avio_rb32(pb
);
2876 dts
= sc
->track_end
- sc
->time_offset
;
2877 offset
= frag
->base_data_offset
+ data_offset
;
2879 av_log(c
->fc
, AV_LOG_TRACE
, "first sample flags 0x%x\n", first_sample_flags
);
2880 for (i
= 0; i
< entries
&& !pb
->eof_reached
; i
++) {
2881 unsigned sample_size
= frag
->size
;
2882 int sample_flags
= i ? frag
->flags
: first_sample_flags
;
2883 unsigned sample_duration
= frag
->duration
;
2886 if (flags
& MOV_TRUN_SAMPLE_DURATION
) sample_duration
= avio_rb32(pb
);
2887 if (flags
& MOV_TRUN_SAMPLE_SIZE
) sample_size
= avio_rb32(pb
);
2888 if (flags
& MOV_TRUN_SAMPLE_FLAGS
) sample_flags
= avio_rb32(pb
);
2889 sc
->ctts_data
[sc
->ctts_count
].count
= 1;
2890 sc
->ctts_data
[sc
->ctts_count
].duration
= (flags
& MOV_TRUN_SAMPLE_CTS
) ?
2893 if (st
->codec
->codec_type
== AVMEDIA_TYPE_AUDIO
)
2895 else if (!found_keyframe
)
2896 keyframe
= found_keyframe
=
2897 !(sample_flags
& (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC
|
2898 MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES
));
2901 av_add_index_entry(st
, offset
, dts
, sample_size
, distance
,
2902 keyframe ? AVINDEX_KEYFRAME
: 0);
2903 av_log(c
->fc
, AV_LOG_TRACE
, "AVIndex stream %d, sample %d, offset %"PRIx64
", dts %"PRId64
", "
2904 "size %d, distance %d, keyframe %d\n", st
->index
, sc
->sample_count
+i
,
2905 offset
, dts
, sample_size
, distance
, keyframe
);
2907 dts
+= sample_duration
;
2908 offset
+= sample_size
;
2909 sc
->data_size
+= sample_size
;
2912 if (pb
->eof_reached
)
2915 frag
->implicit_offset
= offset
;
2916 st
->duration
= sc
->track_end
= dts
+ sc
->time_offset
;
2920 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
2921 /* like the files created with Adobe Premiere 5.0, for samples see */
2922 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
2923 static int mov_read_wide(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2928 return 0; /* continue */
2929 if (avio_rb32(pb
) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
2930 avio_skip(pb
, atom
.size
- 4);
2933 atom
.type
= avio_rl32(pb
);
2935 if (atom
.type
!= MKTAG('m','d','a','t')) {
2936 avio_skip(pb
, atom
.size
);
2939 err
= mov_read_mdat(c
, pb
, atom
);
2943 static int mov_read_cmov(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2948 uint8_t *moov_data
; /* uncompressed data */
2949 long cmov_len
, moov_len
;
2952 avio_rb32(pb
); /* dcom atom */
2953 if (avio_rl32(pb
) != MKTAG('d','c','o','m'))
2954 return AVERROR_INVALIDDATA
;
2955 if (avio_rl32(pb
) != MKTAG('z','l','i','b')) {
2956 av_log(c
->fc
, AV_LOG_ERROR
, "unknown compression for cmov atom !");
2957 return AVERROR_INVALIDDATA
;
2959 avio_rb32(pb
); /* cmvd atom */
2960 if (avio_rl32(pb
) != MKTAG('c','m','v','d'))
2961 return AVERROR_INVALIDDATA
;
2962 moov_len
= avio_rb32(pb
); /* uncompressed size */
2963 cmov_len
= atom
.size
- 6 * 4;
2965 cmov_data
= av_malloc(cmov_len
);
2967 return AVERROR(ENOMEM
);
2968 moov_data
= av_malloc(moov_len
);
2971 return AVERROR(ENOMEM
);
2973 ret
= ffio_read_size(pb
, cmov_data
, cmov_len
);
2975 goto free_and_return
;
2977 if (uncompress (moov_data
, (uLongf
*) &moov_len
, (const Bytef
*)cmov_data
, cmov_len
) != Z_OK
)
2978 goto free_and_return
;
2979 if (ffio_init_context(&ctx
, moov_data
, moov_len
, 0, NULL
, NULL
, NULL
, NULL
) != 0)
2980 goto free_and_return
;
2981 atom
.type
= MKTAG('m','o','o','v');
2982 atom
.size
= moov_len
;
2983 ret
= mov_read_default(c
, &ctx
, atom
);
2989 av_log(c
->fc
, AV_LOG_ERROR
, "this file requires zlib support compiled in\n");
2990 return AVERROR(ENOSYS
);
2994 /* edit list atom */
2995 static int mov_read_elst(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
2997 MOVStreamContext
*sc
;
2998 int i
, edit_count
, version
;
3000 if (c
->fc
->nb_streams
< 1)
3002 sc
= c
->fc
->streams
[c
->fc
->nb_streams
-1]->priv_data
;
3004 version
= avio_r8(pb
); /* version */
3005 avio_rb24(pb
); /* flags */
3006 edit_count
= avio_rb32(pb
); /* entries */
3008 if ((uint64_t)edit_count
*12+8 > atom
.size
)
3009 return AVERROR_INVALIDDATA
;
3011 for (i
=0; i
<edit_count
; i
++){
3015 duration
= avio_rb64(pb
);
3016 time
= avio_rb64(pb
);
3018 duration
= avio_rb32(pb
); /* segment duration */
3019 time
= (int32_t)avio_rb32(pb
); /* media time */
3021 avio_rb32(pb
); /* Media rate */
3022 if (i
== 0 && time
>= -1) {
3023 sc
->time_offset
= time
!= -1 ? time
: -duration
;
3028 av_log(c
->fc
, AV_LOG_WARNING
, "multiple edit list entries, "
3029 "a/v desync might occur, patch welcome\n");
3031 av_log(c
->fc
, AV_LOG_TRACE
, "track[%i].edit_count = %i\n", c
->fc
->nb_streams
-1, edit_count
);
3035 static const MOVParseTableEntry mov_default_parse_table
[] = {
3036 { MKTAG('a','v','s','s'), mov_read_extradata
},
3037 { MKTAG('c','h','p','l'), mov_read_chpl
},
3038 { MKTAG('c','o','6','4'), mov_read_stco
},
3039 { MKTAG('c','o','l','r'), mov_read_colr
},
3040 { MKTAG('c','t','t','s'), mov_read_ctts
}, /* composition time to sample */
3041 { MKTAG('d','i','n','f'), mov_read_default
},
3042 { MKTAG('d','r','e','f'), mov_read_dref
},
3043 { MKTAG('e','d','t','s'), mov_read_default
},
3044 { MKTAG('e','l','s','t'), mov_read_elst
},
3045 { MKTAG('e','n','d','a'), mov_read_enda
},
3046 { MKTAG('f','i','e','l'), mov_read_fiel
},
3047 { MKTAG('f','t','y','p'), mov_read_ftyp
},
3048 { MKTAG('g','l','b','l'), mov_read_glbl
},
3049 { MKTAG('h','d','l','r'), mov_read_hdlr
},
3050 { MKTAG('i','l','s','t'), mov_read_ilst
},
3051 { MKTAG('j','p','2','h'), mov_read_extradata
},
3052 { MKTAG('m','d','a','t'), mov_read_mdat
},
3053 { MKTAG('m','d','h','d'), mov_read_mdhd
},
3054 { MKTAG('m','d','i','a'), mov_read_default
},
3055 { MKTAG('m','e','t','a'), mov_read_meta
},
3056 { MKTAG('m','i','n','f'), mov_read_default
},
3057 { MKTAG('m','o','o','f'), mov_read_moof
},
3058 { MKTAG('m','o','o','v'), mov_read_moov
},
3059 { MKTAG('m','v','e','x'), mov_read_default
},
3060 { MKTAG('m','v','h','d'), mov_read_mvhd
},
3061 { MKTAG('S','M','I',' '), mov_read_smi
}, /* Sorenson extension ??? */
3062 { MKTAG('a','l','a','c'), mov_read_extradata
}, /* alac specific atom */
3063 { MKTAG('a','v','c','C'), mov_read_glbl
},
3064 { MKTAG('p','a','s','p'), mov_read_pasp
},
3065 { MKTAG('s','t','b','l'), mov_read_default
},
3066 { MKTAG('s','t','c','o'), mov_read_stco
},
3067 { MKTAG('s','t','p','s'), mov_read_stps
},
3068 { MKTAG('s','t','r','f'), mov_read_strf
},
3069 { MKTAG('s','t','s','c'), mov_read_stsc
},
3070 { MKTAG('s','t','s','d'), mov_read_stsd
}, /* sample description */
3071 { MKTAG('s','t','s','s'), mov_read_stss
}, /* sync sample */
3072 { MKTAG('s','t','s','z'), mov_read_stsz
}, /* sample size */
3073 { MKTAG('s','t','t','s'), mov_read_stts
},
3074 { MKTAG('s','t','z','2'), mov_read_stsz
}, /* compact sample size */
3075 { MKTAG('t','k','h','d'), mov_read_tkhd
}, /* track header */
3076 { MKTAG('t','f','d','t'), mov_read_tfdt
},
3077 { MKTAG('t','f','h','d'), mov_read_tfhd
}, /* track fragment header */
3078 { MKTAG('t','r','a','k'), mov_read_trak
},
3079 { MKTAG('t','r','a','f'), mov_read_default
},
3080 { MKTAG('t','r','e','f'), mov_read_default
},
3081 { MKTAG('c','h','a','p'), mov_read_chap
},
3082 { MKTAG('t','r','e','x'), mov_read_trex
},
3083 { MKTAG('t','r','u','n'), mov_read_trun
},
3084 { MKTAG('u','d','t','a'), mov_read_default
},
3085 { MKTAG('w','a','v','e'), mov_read_wave
},
3086 { MKTAG('e','s','d','s'), mov_read_esds
},
3087 { MKTAG('d','a','c','3'), mov_read_dac3
}, /* AC-3 info */
3088 { MKTAG('d','e','c','3'), mov_read_dec3
}, /* EAC-3 info */
3089 { MKTAG('w','i','d','e'), mov_read_wide
}, /* place holder */
3090 { MKTAG('w','f','e','x'), mov_read_wfex
},
3091 { MKTAG('c','m','o','v'), mov_read_cmov
},
3092 { MKTAG('c','h','a','n'), mov_read_chan
}, /* channel layout */
3093 { MKTAG('d','v','c','1'), mov_read_dvc1
},
3094 { MKTAG('s','b','g','p'), mov_read_sbgp
},
3095 { MKTAG('h','v','c','C'), mov_read_glbl
},
3096 { MKTAG('-','-','-','-'), mov_read_custom
},
3100 static int mov_read_default(MOVContext
*c
, AVIOContext
*pb
, MOVAtom atom
)
3102 int64_t total_size
= 0;
3107 atom
.size
= INT64_MAX
;
3108 while (total_size
+ 8 < atom
.size
&& !pb
->eof_reached
) {
3109 int (*parse
)(MOVContext
*, AVIOContext
*, MOVAtom
) = NULL
;
3112 if (atom
.size
>= 8) {
3113 a
.size
= avio_rb32(pb
);
3114 a
.type
= avio_rl32(pb
);
3116 av_log(c
->fc
, AV_LOG_TRACE
, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64
" %"PRId64
" %"PRId64
"\n",
3117 a
.type
, (char*)&a
.type
, (char*)&atom
.type
, a
.size
, total_size
, atom
.size
);
3119 if (a
.size
== 1) { /* 64 bit extended size */
3120 a
.size
= avio_rb64(pb
) - 8;
3124 a
.size
= atom
.size
- total_size
;
3131 a
.size
= FFMIN(a
.size
, atom
.size
- total_size
);
3133 for (i
= 0; mov_default_parse_table
[i
].type
; i
++)
3134 if (mov_default_parse_table
[i
].type
== a
.type
) {
3135 parse
= mov_default_parse_table
[i
].parse
;
3139 // container is user data
3140 if (!parse
&& (atom
.type
== MKTAG('u','d','t','a') ||
3141 atom
.type
== MKTAG('i','l','s','t')))
3142 parse
= mov_read_udta_string
;
3144 if (!parse
) { /* skip leaf atoms data */
3145 avio_skip(pb
, a
.size
);
3147 int64_t start_pos
= avio_tell(pb
);
3149 int err
= parse(c
, pb
, a
);
3152 if (c
->found_moov
&& c
->found_mdat
&&
3153 ((!pb
->seekable
|| c
->fc
->flags
& AVFMT_FLAG_IGNIDX
) ||
3154 start_pos
+ a
.size
== avio_size(pb
))) {
3155 if (!pb
->seekable
|| c
->fc
->flags
& AVFMT_FLAG_IGNIDX
)
3156 c
->next_root_atom
= start_pos
+ a
.size
;
3159 left
= a
.size
- avio_tell(pb
) + start_pos
;
3160 if (left
> 0) /* skip garbage at atom end */
3161 avio_skip(pb
, left
);
3162 else if (left
< 0) {
3163 av_log(c
->fc
, AV_LOG_WARNING
,
3164 "overread end of atom '%.4s' by %"PRId64
" bytes\n",
3165 (char*)&a
.type
, -left
);
3166 avio_seek(pb
, left
, SEEK_CUR
);
3170 total_size
+= a
.size
;
3173 if (total_size
< atom
.size
&& atom
.size
< 0x7ffff)
3174 avio_skip(pb
, atom
.size
- total_size
);
3179 static int mov_probe(AVProbeData
*p
)
3181 unsigned int offset
;
3185 /* check file header */
3188 /* ignore invalid offset */
3189 if ((offset
+ 8) > (unsigned int)p
->buf_size
)
3191 tag
= AV_RL32(p
->buf
+ offset
+ 4);
3193 /* check for obvious tags */
3194 case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
3195 case MKTAG('m','o','o','v'):
3196 case MKTAG('m','d','a','t'):
3197 case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
3198 case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
3199 case MKTAG('f','t','y','p'):
3200 return AVPROBE_SCORE_MAX
;
3201 /* those are more common words, so rate then a bit less */
3202 case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
3203 case MKTAG('w','i','d','e'):
3204 case MKTAG('f','r','e','e'):
3205 case MKTAG('j','u','n','k'):
3206 case MKTAG('p','i','c','t'):
3207 return AVPROBE_SCORE_MAX
- 5;
3208 case MKTAG(0x82,0x82,0x7f,0x7d):
3209 case MKTAG('s','k','i','p'):
3210 case MKTAG('u','u','i','d'):
3211 case MKTAG('p','r','f','l'):
3212 offset
= AV_RB32(p
->buf
+offset
) + offset
;
3213 /* if we only find those cause probedata is too small at least rate them */
3214 score
= AVPROBE_SCORE_EXTENSION
;
3217 /* unrecognized tag */
3223 // must be done after parsing all trak because there's no order requirement
3224 static void mov_read_chapters(AVFormatContext
*s
)
3226 MOVContext
*mov
= s
->priv_data
;
3227 AVStream
*st
= NULL
;
3228 MOVStreamContext
*sc
;
3232 for (i
= 0; i
< s
->nb_streams
; i
++)
3233 if (s
->streams
[i
]->id
== mov
->chapter_track
) {
3238 av_log(s
, AV_LOG_ERROR
, "Referenced QT chapter track not found\n");
3242 st
->discard
= AVDISCARD_ALL
;
3244 cur_pos
= avio_tell(sc
->pb
);
3246 for (i
= 0; i
< st
->nb_index_entries
; i
++) {
3247 AVIndexEntry
*sample
= &st
->index_entries
[i
];
3248 int64_t end
= i
+1 < st
->nb_index_entries ? st
->index_entries
[i
+1].timestamp
: st
->duration
;
3253 if (avio_seek(sc
->pb
, sample
->pos
, SEEK_SET
) != sample
->pos
) {
3254 av_log(s
, AV_LOG_ERROR
, "Chapter %d not found in file\n", i
);
3258 // the first two bytes are the length of the title
3259 len
= avio_rb16(sc
->pb
);
3260 if (len
> sample
->size
-2)
3262 title_len
= 2*len
+ 1;
3263 if (!(title
= av_mallocz(title_len
)))
3266 // The samples could theoretically be in any encoding if there's an encd
3267 // atom following, but in practice are only utf-8 or utf-16, distinguished
3268 // instead by the presence of a BOM
3272 ch
= avio_rb16(sc
->pb
);
3274 avio_get_str16be(sc
->pb
, len
, title
, title_len
);
3275 else if (ch
== 0xfffe)
3276 avio_get_str16le(sc
->pb
, len
, title
, title_len
);
3279 if (len
== 1 || len
== 2)
3282 avio_get_str(sc
->pb
, len
- 2, title
+ 2, title_len
- 2);
3286 avpriv_new_chapter(s
, i
, st
->time_base
, sample
->timestamp
, end
, title
);
3290 avio_seek(sc
->pb
, cur_pos
, SEEK_SET
);
3293 static int mov_read_close(AVFormatContext
*s
)
3295 MOVContext
*mov
= s
->priv_data
;
3298 for (i
= 0; i
< s
->nb_streams
; i
++) {
3299 AVStream
*st
= s
->streams
[i
];
3300 MOVStreamContext
*sc
= st
->priv_data
;
3302 av_freep(&sc
->ctts_data
);
3303 for (j
= 0; j
< sc
->drefs_count
; j
++) {
3304 av_freep(&sc
->drefs
[j
].path
);
3305 av_freep(&sc
->drefs
[j
].dir
);
3307 av_freep(&sc
->drefs
);
3308 if (sc
->pb
&& sc
->pb
!= s
->pb
)
3311 av_freep(&sc
->chunk_offsets
);
3312 av_freep(&sc
->stsc_data
);
3313 av_freep(&sc
->sample_sizes
);
3314 av_freep(&sc
->keyframes
);
3315 av_freep(&sc
->stts_data
);
3316 av_freep(&sc
->stps_data
);
3317 av_freep(&sc
->rap_group
);
3318 av_freep(&sc
->display_matrix
);
3321 if (mov
->dv_demux
) {
3322 avformat_free_context(mov
->dv_fctx
);
3323 mov
->dv_fctx
= NULL
;
3326 av_freep(&mov
->trex_data
);
3331 static int mov_read_header(AVFormatContext
*s
)
3333 MOVContext
*mov
= s
->priv_data
;
3334 AVIOContext
*pb
= s
->pb
;