3 * Copyright (c) 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "libavutil/intreadwrite.h"
31 #include "libavcodec/mpeg4audio.h"
32 #include "libavcodec/mpegaudiodata.h"
39 * First version by Francois Revol revol@free.fr
40 * Seek function by Gael Chardon gael.dev@4now.net
42 * Features and limitations:
43 * - reads most of the QT files I have (at least the structure),
44 * Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html
45 * - the code is quite ugly... maybe I won't do it recursive next time :-)
47 * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/
48 * when coding this :) (it's a writer anyway)
50 * Reference documents:
51 * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt
53 * http://developer.apple.com/documentation/QuickTime/QTFF/
54 * http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf
55 * QuickTime is a trademark of Apple (AFAIK :))
58 #include "qtpalette.h"
64 /* the QuickTime file format is quite convoluted...
65 * it has lots of index tables, each indexing something in another one...
66 * Here we just use what is needed to read the chunks
83 int64_t size
; /* total size (excluding the size and type fields) */
86 struct MOVParseTableEntry
;
90 uint64_t base_data_offset
;
106 typedef struct MOVStreamContext
{
108 int ffindex
; /* the ffmpeg stream id */
110 unsigned int chunk_count
;
111 int64_t *chunk_offsets
;
112 unsigned int stts_count
;
114 unsigned int ctts_count
;
116 unsigned int edit_count
; /* number of 'edit' (elst atom) */
117 unsigned int sample_to_chunk_sz
;
118 MOVStsc
*sample_to_chunk
;
119 int sample_to_ctime_index
;
120 int sample_to_ctime_sample
;
121 unsigned int sample_size
;
122 unsigned int sample_count
;
124 unsigned int keyframe_count
;
129 unsigned int bytes_per_frame
;
130 unsigned int samples_per_frame
;
131 int dv_audio_container
;
132 int pseudo_stream_id
; ///< -1 means demux all ids
133 int16_t audio_cid
; ///< stsd audio compression id
134 unsigned drefs_count
;
137 int wrong_dts
; ///< dts are wrong due to negative ctts
138 int width
; ///< tkhd width
139 int height
; ///< tkhd height
142 typedef struct MOVContext
{
145 int64_t duration
; /* duration of the longest track */
146 int found_moov
; /* when both 'moov' and 'mdat' sections has been found */
147 int found_mdat
; /* we suppose we have enough data to read the file */
148 AVPaletteControl palette_control
;
149 DVDemuxContext
*dv_demux
;
150 AVFormatContext
*dv_fctx
;
151 int isom
; /* 1 if file is ISO Media (mp4/3gp) */
152 MOVFragment fragment
; ///< current fragment in moof atom
153 MOVTrackExt
*trex_data
;
155 int itunes_metadata
; ///< metadata are itunes style
159 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */
161 /* those functions parse an atom */
163 0: continue to parse next atom
164 <0: error occurred, exit
166 /* links atom IDs to parse functions */
167 typedef struct MOVParseTableEntry
{
169 int (*parse
)(MOVContext
*ctx
, ByteIOContext
*pb
, MOVAtom atom
);
170 } MOVParseTableEntry
;
172 static const MOVParseTableEntry mov_default_parse_table
[];
174 static int mov_read_default(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
176 int64_t total_size
= 0;
181 a
.offset
= atom
.offset
;
184 atom
.size
= INT64_MAX
;
185 while(((total_size
+ 8) < atom
.size
) && !url_feof(pb
) && !err
) {
189 a
.size
= get_be32(pb
);
190 a
.type
= get_le32(pb
);
194 dprintf(c
->fc
, "type: %08x %.4s sz: %"PRIx64
" %"PRIx64
" %"PRIx64
"\n",
195 a
.type
, (char*)&a
.type
, a
.size
, atom
.size
, total_size
);
196 if (a
.size
== 1) { /* 64 bit extended size */
197 a
.size
= get_be64(pb
) - 8;
202 a
.size
= atom
.size
- total_size
;
209 a
.size
= FFMIN(a
.size
, atom
.size
- total_size
);
211 for (i
= 0; mov_default_parse_table
[i
].type
!= 0
212 && mov_default_parse_table
[i
].type
!= a
.type
; i
++)
215 if (mov_default_parse_table
[i
].type
== 0) { /* skip leaf atoms data */
216 url_fskip(pb
, a
.size
);
218 int64_t start_pos
= url_ftell(pb
);
220 err
= mov_default_parse_table
[i
].parse(c
, pb
, a
);
221 if (url_is_streamed(pb
) && c
->found_moov
&& c
->found_mdat
)
223 left
= a
.size
- url_ftell(pb
) + start_pos
;
224 if (left
> 0) /* skip garbage at atom end */
229 total_size
+= a
.size
;
232 if (!err
&& total_size
< atom
.size
&& atom
.size
< 0x7ffff)
233 url_fskip(pb
, atom
.size
- total_size
);
238 static int mov_read_dref(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
240 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
241 MOVStreamContext
*sc
= st
->priv_data
;
244 get_be32(pb
); // version + flags
245 entries
= get_be32(pb
);
246 if (entries
>= UINT_MAX
/ sizeof(*sc
->drefs
))
248 sc
->drefs_count
= entries
;
249 sc
->drefs
= av_mallocz(entries
* sizeof(*sc
->drefs
));
251 for (i
= 0; i
< sc
->drefs_count
; i
++) {
252 MOVDref
*dref
= &sc
->drefs
[i
];
253 uint32_t size
= get_be32(pb
);
254 int64_t next
= url_ftell(pb
) + size
- 4;
256 dref
->type
= get_le32(pb
);
257 get_be32(pb
); // version + flags
258 dprintf(c
->fc
, "type %.4s size %d\n", (char*)&dref
->type
, size
);
260 if (dref
->type
== MKTAG('a','l','i','s') && size
> 150) {
261 /* macintosh alias record */
262 uint16_t volume_len
, len
;
268 volume_len
= get_byte(pb
);
269 volume_len
= FFMIN(volume_len
, 27);
270 get_buffer(pb
, volume
, 27);
271 volume
[volume_len
] = 0;
272 av_log(c
->fc
, AV_LOG_DEBUG
, "volume %s, len %d\n", volume
, volume_len
);
276 for (type
= 0; type
!= -1 && url_ftell(pb
) < next
; ) {
279 av_log(c
->fc
, AV_LOG_DEBUG
, "type %d, len %d\n", type
, len
);
282 if (type
== 2) { // absolute path
284 dref
->path
= av_mallocz(len
+1);
286 return AVERROR(ENOMEM
);
287 get_buffer(pb
, dref
->path
, len
);
288 if (len
> volume_len
&& !strncmp(dref
->path
, volume
, volume_len
)) {
290 memmove(dref
->path
, dref
->path
+volume_len
, len
);
293 for (j
= 0; j
< len
; j
++)
294 if (dref
->path
[j
] == ':')
296 av_log(c
->fc
, AV_LOG_DEBUG
, "path %s\n", dref
->path
);
301 url_fseek(pb
, next
, SEEK_SET
);
306 static int mov_read_hdlr(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
308 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
312 get_byte(pb
); /* version */
313 get_be24(pb
); /* flags */
316 ctype
= get_le32(pb
);
317 type
= get_le32(pb
); /* component subtype */
319 dprintf(c
->fc
, "ctype= %c%c%c%c (0x%08x)\n", *((char *)&ctype
), ((char *)&ctype
)[1],
320 ((char *)&ctype
)[2], ((char *)&ctype
)[3], (int) ctype
);
321 dprintf(c
->fc
, "stype= %c%c%c%c\n",
322 *((char *)&type
), ((char *)&type
)[1], ((char *)&type
)[2], ((char *)&type
)[3]);
325 if (type
== MKTAG('v','i','d','e'))
326 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
327 else if(type
== MKTAG('s','o','u','n'))
328 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
329 else if(type
== MKTAG('m','1','a',' '))
330 st
->codec
->codec_id
= CODEC_ID_MP2
;
331 else if(type
== MKTAG('s','u','b','p')) {
332 st
->codec
->codec_type
= CODEC_TYPE_SUBTITLE
;
334 get_be32(pb
); /* component manufacture */
335 get_be32(pb
); /* component flags */
336 get_be32(pb
); /* component flags mask */
339 return 0; /* nothing left to read */
341 url_fskip(pb
, atom
.size
- (url_ftell(pb
) - atom
.offset
));
345 static int mp4_read_descr_len(ByteIOContext
*pb
)
350 int c
= get_byte(pb
);
351 len
= (len
<< 7) | (c
& 0x7f);
358 static int mp4_read_descr(MOVContext
*c
, ByteIOContext
*pb
, int *tag
)
362 len
= mp4_read_descr_len(pb
);
363 dprintf(c
->fc
, "MPEG4 description: tag=0x%02x len=%d\n", *tag
, len
);
367 #define MP4ESDescrTag 0x03
368 #define MP4DecConfigDescrTag 0x04
369 #define MP4DecSpecificDescrTag 0x05
371 static const AVCodecTag mp4_audio_types
[] = {
372 { CODEC_ID_MP3ON4
, 29 }, /* old mp3on4 draft */
373 { CODEC_ID_MP3ON4
, 32 }, /* layer 1 */
374 { CODEC_ID_MP3ON4
, 33 }, /* layer 2 */
375 { CODEC_ID_MP3ON4
, 34 }, /* layer 3 */
376 { CODEC_ID_NONE
, 0 },
379 static int mov_read_esds(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
381 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
384 get_be32(pb
); /* version + flags */
385 len
= mp4_read_descr(c
, pb
, &tag
);
386 if (tag
== MP4ESDescrTag
) {
387 get_be16(pb
); /* ID */
388 get_byte(pb
); /* priority */
390 get_be16(pb
); /* ID */
392 len
= mp4_read_descr(c
, pb
, &tag
);
393 if (tag
== MP4DecConfigDescrTag
) {
394 int object_type_id
= get_byte(pb
);
395 get_byte(pb
); /* stream type */
396 get_be24(pb
); /* buffer size db */
397 get_be32(pb
); /* max bitrate */
398 get_be32(pb
); /* avg bitrate */
400 st
->codec
->codec_id
= codec_get_id(ff_mp4_obj_type
, object_type_id
);
401 dprintf(c
->fc
, "esds object type id %d\n", object_type_id
);
402 len
= mp4_read_descr(c
, pb
, &tag
);
403 if (tag
== MP4DecSpecificDescrTag
) {
404 dprintf(c
->fc
, "Specific MPEG4 header len=%d\n", len
);
405 if((uint64_t)len
> (1<<30))
407 st
->codec
->extradata
= av_mallocz(len
+ FF_INPUT_BUFFER_PADDING_SIZE
);
408 if (!st
->codec
->extradata
)
409 return AVERROR(ENOMEM
);
410 get_buffer(pb
, st
->codec
->extradata
, len
);
411 st
->codec
->extradata_size
= len
;
412 if (st
->codec
->codec_id
== CODEC_ID_AAC
) {
413 MPEG4AudioConfig cfg
;
414 ff_mpeg4audio_get_config(&cfg
, st
->codec
->extradata
,
415 st
->codec
->extradata_size
);
416 if (cfg
.chan_config
> 7)
418 st
->codec
->channels
= ff_mpeg4audio_channels
[cfg
.chan_config
];
419 if (cfg
.object_type
== 29 && cfg
.sampling_index
< 3) // old mp3on4
420 st
->codec
->sample_rate
= ff_mpa_freq_tab
[cfg
.sampling_index
];
422 st
->codec
->sample_rate
= cfg
.sample_rate
; // ext sample rate ?
423 dprintf(c
->fc
, "mp4a config channels %d obj %d ext obj %d "
424 "sample rate %d ext sample rate %d\n", st
->codec
->channels
,
425 cfg
.object_type
, cfg
.ext_object_type
,
426 cfg
.sample_rate
, cfg
.ext_sample_rate
);
427 if (!(st
->codec
->codec_id
= codec_get_id(mp4_audio_types
,
429 st
->codec
->codec_id
= CODEC_ID_AAC
;
436 static int mov_read_pasp(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
438 const int num
= get_be32(pb
);
439 const int den
= get_be32(pb
);
440 AVStream
* const st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
442 if ((st
->sample_aspect_ratio
.den
!= 1 || st
->sample_aspect_ratio
.num
) && // default
443 (den
!= st
->sample_aspect_ratio
.den
|| num
!= st
->sample_aspect_ratio
.num
))
444 av_log(c
->fc
, AV_LOG_WARNING
,
445 "sample aspect ratio already set to %d:%d, overriding by 'pasp' atom\n",
446 st
->sample_aspect_ratio
.num
, st
->sample_aspect_ratio
.den
);
447 st
->sample_aspect_ratio
.num
= num
;
448 st
->sample_aspect_ratio
.den
= den
;
453 /* this atom contains actual media data */
454 static int mov_read_mdat(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
456 if(atom
.size
== 0) /* wrong one (MP4) */
459 return 0; /* now go for moov */
462 static int mov_read_ftyp(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
464 uint32_t type
= get_le32(pb
);
466 if (type
!= MKTAG('q','t',' ',' '))
468 av_log(c
->fc
, AV_LOG_DEBUG
, "ISO: File Type Major Brand: %.4s\n",(char *)&type
);
469 get_be32(pb
); /* minor version */
470 url_fskip(pb
, atom
.size
- 8);
474 /* this atom should contain all header atoms */
475 static int mov_read_moov(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
477 if (mov_read_default(c
, pb
, atom
) < 0)
479 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
480 /* so we don't parse the whole file if over a network */
482 return 0; /* now go for mdat */
485 static int mov_read_moof(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
487 c
->fragment
.moof_offset
= url_ftell(pb
) - 8;
488 dprintf(c
->fc
, "moof offset %llx\n", c
->fragment
.moof_offset
);
489 return mov_read_default(c
, pb
, atom
);
492 static int mov_read_mdhd(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
494 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
495 MOVStreamContext
*sc
= st
->priv_data
;
496 int version
= get_byte(pb
);
500 return -1; /* unsupported */
502 get_be24(pb
); /* flags */
507 get_be32(pb
); /* creation time */
508 get_be32(pb
); /* modification time */
511 sc
->time_scale
= get_be32(pb
);
512 st
->duration
= (version
== 1) ?
get_be64(pb
) : get_be32(pb
); /* duration */
514 lang
= get_be16(pb
); /* language */
515 ff_mov_lang_to_iso639(lang
, st
->language
);
516 get_be16(pb
); /* quality */
521 static int mov_read_mvhd(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
523 int version
= get_byte(pb
); /* version */
524 get_be24(pb
); /* flags */
530 get_be32(pb
); /* creation time */
531 get_be32(pb
); /* modification time */
533 c
->time_scale
= get_be32(pb
); /* time scale */
535 dprintf(c
->fc
, "time scale = %i\n", c
->time_scale
);
537 c
->duration
= (version
== 1) ?
get_be64(pb
) : get_be32(pb
); /* duration */
538 get_be32(pb
); /* preferred scale */
540 get_be16(pb
); /* preferred volume */
542 url_fskip(pb
, 10); /* reserved */
544 url_fskip(pb
, 36); /* display matrix */
546 get_be32(pb
); /* preview time */
547 get_be32(pb
); /* preview duration */
548 get_be32(pb
); /* poster time */
549 get_be32(pb
); /* selection time */
550 get_be32(pb
); /* selection duration */
551 get_be32(pb
); /* current time */
552 get_be32(pb
); /* next track ID */
557 static int mov_read_smi(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
559 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
561 if((uint64_t)atom
.size
> (1<<30))
564 // currently SVQ3 decoder expect full STSD header - so let's fake it
565 // this should be fixed and just SMI header should be passed
566 av_free(st
->codec
->extradata
);
567 st
->codec
->extradata
= av_mallocz(atom
.size
+ 0x5a + FF_INPUT_BUFFER_PADDING_SIZE
);
568 if (!st
->codec
->extradata
)
569 return AVERROR(ENOMEM
);
570 st
->codec
->extradata_size
= 0x5a + atom
.size
;
571 memcpy(st
->codec
->extradata
, "SVQ3", 4); // fake
572 get_buffer(pb
, st
->codec
->extradata
+ 0x5a, atom
.size
);
573 dprintf(c
->fc
, "Reading SMI %"PRId64
" %s\n", atom
.size
, st
->codec
->extradata
+ 0x5a);
577 static int mov_read_enda(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
579 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
580 int little_endian
= get_be16(pb
);
582 dprintf(c
->fc
, "enda %d\n", little_endian
);
583 if (little_endian
== 1) {
584 switch (st
->codec
->codec_id
) {
585 case CODEC_ID_PCM_S24BE
:
586 st
->codec
->codec_id
= CODEC_ID_PCM_S24LE
;
588 case CODEC_ID_PCM_S32BE
:
589 st
->codec
->codec_id
= CODEC_ID_PCM_S32LE
;
591 case CODEC_ID_PCM_F32BE
:
592 st
->codec
->codec_id
= CODEC_ID_PCM_F32LE
;
594 case CODEC_ID_PCM_F64BE
:
595 st
->codec
->codec_id
= CODEC_ID_PCM_F64LE
;
604 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
605 static int mov_read_extradata(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
611 if (c
->fc
->nb_streams
< 1) // will happen with jp2 files
613 st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
614 size
= (uint64_t)st
->codec
->extradata_size
+ atom
.size
+ 8 + FF_INPUT_BUFFER_PADDING_SIZE
;
615 if(size
> INT_MAX
|| (uint64_t)atom
.size
> INT_MAX
)
617 buf
= av_realloc(st
->codec
->extradata
, size
);
620 st
->codec
->extradata
= buf
;
621 buf
+= st
->codec
->extradata_size
;
622 st
->codec
->extradata_size
= size
- FF_INPUT_BUFFER_PADDING_SIZE
;
623 AV_WB32( buf
, atom
.size
+ 8);
624 AV_WL32( buf
+ 4, atom
.type
);
625 get_buffer(pb
, buf
+ 8, atom
.size
);
629 static int mov_read_wave(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
631 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
633 if((uint64_t)atom
.size
> (1<<30))
636 if (st
->codec
->codec_id
== CODEC_ID_QDM2
) {
637 // pass all frma atom to codec, needed at least for QDM2
638 av_free(st
->codec
->extradata
);
639 st
->codec
->extradata
= av_mallocz(atom
.size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
640 if (!st
->codec
->extradata
)
641 return AVERROR(ENOMEM
);
642 st
->codec
->extradata_size
= atom
.size
;
643 get_buffer(pb
, st
->codec
->extradata
, atom
.size
);
644 } else if (atom
.size
> 8) { /* to read frma, esds atoms */
645 if (mov_read_default(c
, pb
, atom
) < 0)
648 url_fskip(pb
, atom
.size
);
653 * This function reads atom content and puts data in extradata without tag
654 * nor size unlike mov_read_extradata.
656 static int mov_read_glbl(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
658 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
660 if((uint64_t)atom
.size
> (1<<30))
663 av_free(st
->codec
->extradata
);
664 st
->codec
->extradata
= av_mallocz(atom
.size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
665 if (!st
->codec
->extradata
)
666 return AVERROR(ENOMEM
);
667 st
->codec
->extradata_size
= atom
.size
;
668 get_buffer(pb
, st
->codec
->extradata
, atom
.size
);
672 static int mov_read_stco(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
674 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
675 MOVStreamContext
*sc
= st
->priv_data
;
676 unsigned int i
, entries
;
678 get_byte(pb
); /* version */
679 get_be24(pb
); /* flags */
681 entries
= get_be32(pb
);
683 if(entries
>= UINT_MAX
/sizeof(int64_t))
686 sc
->chunk_count
= entries
;
687 sc
->chunk_offsets
= av_malloc(entries
* sizeof(int64_t));
688 if (!sc
->chunk_offsets
)
690 if (atom
.type
== MKTAG('s','t','c','o'))
691 for(i
=0; i
<entries
; i
++)
692 sc
->chunk_offsets
[i
] = get_be32(pb
);
693 else if (atom
.type
== MKTAG('c','o','6','4'))
694 for(i
=0; i
<entries
; i
++)
695 sc
->chunk_offsets
[i
] = get_be64(pb
);
703 * Compute codec id for 'lpcm' tag.
704 * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
706 static enum CodecID
mov_get_lpcm_codec_id(int bps
, int flags
)
708 if (flags
& 1) { // floating point
709 if (flags
& 2) { // big endian
710 if (bps
== 32) return CODEC_ID_PCM_F32BE
;
711 else if (bps
== 64) return CODEC_ID_PCM_F64BE
;
713 if (bps
== 32) return CODEC_ID_PCM_F32LE
;
714 else if (bps
== 64) return CODEC_ID_PCM_F64LE
;
720 if (flags
& 4) return CODEC_ID_PCM_S8
;
721 else return CODEC_ID_PCM_U8
;
722 else if (bps
== 16) return CODEC_ID_PCM_S16BE
;
723 else if (bps
== 24) return CODEC_ID_PCM_S24BE
;
724 else if (bps
== 32) return CODEC_ID_PCM_S32BE
;
727 if (flags
& 4) return CODEC_ID_PCM_S8
;
728 else return CODEC_ID_PCM_U8
;
729 else if (bps
== 16) return CODEC_ID_PCM_S16LE
;
730 else if (bps
== 24) return CODEC_ID_PCM_S24LE
;
731 else if (bps
== 32) return CODEC_ID_PCM_S32LE
;
734 return CODEC_ID_NONE
;
737 static int mov_read_stsd(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
739 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
740 MOVStreamContext
*sc
= st
->priv_data
;
741 int j
, entries
, pseudo_stream_id
;
743 get_byte(pb
); /* version */
744 get_be24(pb
); /* flags */
746 entries
= get_be32(pb
);
748 for(pseudo_stream_id
=0; pseudo_stream_id
<entries
; pseudo_stream_id
++) {
749 //Parsing Sample description table
752 MOVAtom a
= { 0, 0, 0 };
753 int64_t start_pos
= url_ftell(pb
);
754 int size
= get_be32(pb
); /* size */
755 uint32_t format
= get_le32(pb
); /* data format */
757 get_be32(pb
); /* reserved */
758 get_be16(pb
); /* reserved */
759 dref_id
= get_be16(pb
);
761 if (st
->codec
->codec_tag
&&
762 st
->codec
->codec_tag
!= format
&&
763 (c
->fc
->video_codec_id ?
codec_get_id(codec_movvideo_tags
, format
) != c
->fc
->video_codec_id
764 : st
->codec
->codec_tag
!= MKTAG('j','p','e','g'))
766 /* Multiple fourcc, we skip JPEG. This is not correct, we should
767 * export it as a separate AVStream but this needs a few changes
768 * in the MOV demuxer, patch welcome. */
769 av_log(c
->fc
, AV_LOG_WARNING
, "multiple fourcc not supported\n");
770 url_fskip(pb
, size
- (url_ftell(pb
) - start_pos
));
773 sc
->pseudo_stream_id
= st
->codec
->codec_tag ?
-1 : pseudo_stream_id
;
774 sc
->dref_id
= dref_id
;
776 st
->codec
->codec_tag
= format
;
777 id
= codec_get_id(codec_movaudio_tags
, format
);
778 if (id
<=0 && (format
&0xFFFF) == 'm'+('s'<<8))
779 id
= codec_get_id(codec_wav_tags
, bswap_32(format
)&0xFFFF);
781 if (st
->codec
->codec_type
!= CODEC_TYPE_VIDEO
&& id
> 0) {
782 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
783 } else if (st
->codec
->codec_type
!= CODEC_TYPE_AUDIO
&& /* do not overwrite codec type */
784 format
&& format
!= MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */
785 id
= codec_get_id(codec_movvideo_tags
, format
);
787 id
= codec_get_id(codec_bmp_tags
, format
);
789 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
790 else if(st
->codec
->codec_type
== CODEC_TYPE_DATA
){
791 id
= codec_get_id(ff_codec_movsubtitle_tags
, format
);
793 st
->codec
->codec_type
= CODEC_TYPE_SUBTITLE
;
797 dprintf(c
->fc
, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size
,
798 (format
>> 0) & 0xff, (format
>> 8) & 0xff, (format
>> 16) & 0xff,
799 (format
>> 24) & 0xff, st
->codec
->codec_type
);
801 if(st
->codec
->codec_type
==CODEC_TYPE_VIDEO
) {
802 uint8_t codec_name
[32];
803 unsigned int color_depth
;
806 st
->codec
->codec_id
= id
;
807 get_be16(pb
); /* version */
808 get_be16(pb
); /* revision level */
809 get_be32(pb
); /* vendor */
810 get_be32(pb
); /* temporal quality */
811 get_be32(pb
); /* spatial quality */
813 st
->codec
->width
= get_be16(pb
); /* width */
814 st
->codec
->height
= get_be16(pb
); /* height */
816 get_be32(pb
); /* horiz resolution */
817 get_be32(pb
); /* vert resolution */
818 get_be32(pb
); /* data size, always 0 */
819 get_be16(pb
); /* frames per samples */
821 get_buffer(pb
, codec_name
, 32); /* codec name, pascal string */
822 if (codec_name
[0] <= 31) {
823 memcpy(st
->codec
->codec_name
, &codec_name
[1],codec_name
[0]);
824 st
->codec
->codec_name
[codec_name
[0]] = 0;
827 st
->codec
->bits_per_coded_sample
= get_be16(pb
); /* depth */
828 st
->codec
->color_table_id
= get_be16(pb
); /* colortable id */
829 dprintf(c
->fc
, "depth %d, ctab id %d\n",
830 st
->codec
->bits_per_coded_sample
, st
->codec
->color_table_id
);
831 /* figure out the palette situation */
832 color_depth
= st
->codec
->bits_per_coded_sample
& 0x1F;
833 color_greyscale
= st
->codec
->bits_per_coded_sample
& 0x20;
835 /* if the depth is 2, 4, or 8 bpp, file is palettized */
836 if ((color_depth
== 2) || (color_depth
== 4) ||
837 (color_depth
== 8)) {
838 /* for palette traversal */
839 unsigned int color_start
, color_count
, color_end
;
840 unsigned char r
, g
, b
;
842 if (color_greyscale
) {
843 int color_index
, color_dec
;
844 /* compute the greyscale palette */
845 st
->codec
->bits_per_coded_sample
= color_depth
;
846 color_count
= 1 << color_depth
;
848 color_dec
= 256 / (color_count
- 1);
849 for (j
= 0; j
< color_count
; j
++) {
850 r
= g
= b
= color_index
;
851 c
->palette_control
.palette
[j
] =
852 (r
<< 16) | (g
<< 8) | (b
);
853 color_index
-= color_dec
;
857 } else if (st
->codec
->color_table_id
) {
858 const uint8_t *color_table
;
859 /* if flag bit 3 is set, use the default palette */
860 color_count
= 1 << color_depth
;
861 if (color_depth
== 2)
862 color_table
= ff_qt_default_palette_4
;
863 else if (color_depth
== 4)
864 color_table
= ff_qt_default_palette_16
;
866 color_table
= ff_qt_default_palette_256
;
868 for (j
= 0; j
< color_count
; j
++) {
869 r
= color_table
[j
* 4 + 0];
870 g
= color_table
[j
* 4 + 1];
871 b
= color_table
[j
* 4 + 2];
872 c
->palette_control
.palette
[j
] =
873 (r
<< 16) | (g
<< 8) | (b
);
876 /* load the palette from the file */
877 color_start
= get_be32(pb
);
878 color_count
= get_be16(pb
);
879 color_end
= get_be16(pb
);
880 if ((color_start
<= 255) &&
881 (color_end
<= 255)) {
882 for (j
= color_start
; j
<= color_end
; j
++) {
883 /* each R, G, or B component is 16 bits;
884 * only use the top 8 bits; skip alpha bytes
894 c
->palette_control
.palette
[j
] =
895 (r
<< 16) | (g
<< 8) | (b
);
899 st
->codec
->palctrl
= &c
->palette_control
;
900 st
->codec
->palctrl
->palette_changed
= 1;
902 st
->codec
->palctrl
= NULL
;
903 } else if(st
->codec
->codec_type
==CODEC_TYPE_AUDIO
) {
904 int bits_per_sample
, flags
;
905 uint16_t version
= get_be16(pb
);
907 st
->codec
->codec_id
= id
;
908 get_be16(pb
); /* revision level */
909 get_be32(pb
); /* vendor */
911 st
->codec
->channels
= get_be16(pb
); /* channel count */
912 dprintf(c
->fc
, "audio channels %d\n", st
->codec
->channels
);
913 st
->codec
->bits_per_coded_sample
= get_be16(pb
); /* sample size */
915 sc
->audio_cid
= get_be16(pb
);
916 get_be16(pb
); /* packet size = 0 */
918 st
->codec
->sample_rate
= ((get_be32(pb
) >> 16));
920 //Read QT version 1 fields. In version 0 these do not exist.
921 dprintf(c
->fc
, "version =%d, isom =%d\n",version
,c
->isom
);
924 sc
->samples_per_frame
= get_be32(pb
);
925 get_be32(pb
); /* bytes per packet */
926 sc
->bytes_per_frame
= get_be32(pb
);
927 get_be32(pb
); /* bytes per sample */
928 } else if(version
==2) {
929 get_be32(pb
); /* sizeof struct only */
930 st
->codec
->sample_rate
= av_int2dbl(get_be64(pb
)); /* float 64 */
931 st
->codec
->channels
= get_be32(pb
);
932 get_be32(pb
); /* always 0x7F000000 */
933 st
->codec
->bits_per_coded_sample
= get_be32(pb
); /* bits per channel if sound is uncompressed */
934 flags
= get_be32(pb
); /* lcpm format specific flag */
935 sc
->bytes_per_frame
= get_be32(pb
); /* bytes per audio packet if constant */
936 sc
->samples_per_frame
= get_be32(pb
); /* lpcm frames per audio packet if constant */
937 if (format
== MKTAG('l','p','c','m'))
938 st
->codec
->codec_id
= mov_get_lpcm_codec_id(st
->codec
->bits_per_coded_sample
, flags
);
942 switch (st
->codec
->codec_id
) {
943 case CODEC_ID_PCM_S8
:
944 case CODEC_ID_PCM_U8
:
945 if (st
->codec
->bits_per_coded_sample
== 16)
946 st
->codec
->codec_id
= CODEC_ID_PCM_S16BE
;
948 case CODEC_ID_PCM_S16LE
:
949 case CODEC_ID_PCM_S16BE
:
950 if (st
->codec
->bits_per_coded_sample
== 8)
951 st
->codec
->codec_id
= CODEC_ID_PCM_S8
;
952 else if (st
->codec
->bits_per_coded_sample
== 24)
953 st
->codec
->codec_id
=
954 st
->codec
->codec_id
== CODEC_ID_PCM_S16BE ?
955 CODEC_ID_PCM_S24BE
: CODEC_ID_PCM_S24LE
;
957 /* set values for old format before stsd version 1 appeared */
959 sc
->samples_per_frame
= 6;
960 sc
->bytes_per_frame
= 2*st
->codec
->channels
;
963 sc
->samples_per_frame
= 6;
964 sc
->bytes_per_frame
= 1*st
->codec
->channels
;
966 case CODEC_ID_ADPCM_IMA_QT
:
967 sc
->samples_per_frame
= 64;
968 sc
->bytes_per_frame
= 34*st
->codec
->channels
;
971 sc
->samples_per_frame
= 160;
972 sc
->bytes_per_frame
= 33;
978 bits_per_sample
= av_get_bits_per_sample(st
->codec
->codec_id
);
979 if (bits_per_sample
) {
980 st
->codec
->bits_per_coded_sample
= bits_per_sample
;
981 sc
->sample_size
= (bits_per_sample
>> 3) * st
->codec
->channels
;
983 } else if(st
->codec
->codec_type
==CODEC_TYPE_SUBTITLE
){
984 // ttxt stsd contains display flags, justification, background
985 // color, fonts, and default styles, so fake an atom to read it
986 MOVAtom fake_atom
= { .size
= size
- (url_ftell(pb
) - start_pos
) };
987 mov_read_glbl(c
, pb
, fake_atom
);
988 st
->codec
->codec_id
= id
;
989 st
->codec
->width
= sc
->width
;
990 st
->codec
->height
= sc
->height
;
992 /* other codec type, just skip (rtp, mp4s, tmcd ...) */
993 url_fskip(pb
, size
- (url_ftell(pb
) - start_pos
));
995 /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
996 a
.size
= size
- (url_ftell(pb
) - start_pos
);
998 if (mov_read_default(c
, pb
, a
) < 0)
1000 } else if (a
.size
> 0)
1001 url_fskip(pb
, a
.size
);
1004 if(st
->codec
->codec_type
==CODEC_TYPE_AUDIO
&& st
->codec
->sample_rate
==0 && sc
->time_scale
>1)
1005 st
->codec
->sample_rate
= sc
->time_scale
;
1007 /* special codec parameters handling */
1008 switch (st
->codec
->codec_id
) {
1009 #if CONFIG_DV_DEMUXER
1010 case CODEC_ID_DVAUDIO
:
1011 c
->dv_fctx
= av_alloc_format_context();
1012 c
->dv_demux
= dv_init_demux(c
->dv_fctx
);
1014 av_log(c
->fc
, AV_LOG_ERROR
, "dv demux context init error\n");
1017 sc
->dv_audio_container
= 1;
1018 st
->codec
->codec_id
= CODEC_ID_PCM_S16LE
;
1021 /* no ifdef since parameters are always those */
1022 case CODEC_ID_QCELP
:
1023 st
->codec
->frame_size
= 160;
1024 st
->codec
->channels
= 1; /* really needed */
1026 case CODEC_ID_AMR_NB
:
1027 case CODEC_ID_AMR_WB
:
1028 st
->codec
->frame_size
= sc
->samples_per_frame
;
1029 st
->codec
->channels
= 1; /* really needed */
1030 /* force sample rate for amr, stsd in 3gp does not store sample rate */
1031 if (st
->codec
->codec_id
== CODEC_ID_AMR_NB
)
1032 st
->codec
->sample_rate
= 8000;
1033 else if (st
->codec
->codec_id
== CODEC_ID_AMR_WB
)
1034 st
->codec
->sample_rate
= 16000;
1038 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
; /* force type after stsd for m1a hdlr */
1039 st
->need_parsing
= AVSTREAM_PARSE_FULL
;
1042 case CODEC_ID_ADPCM_MS
:
1043 case CODEC_ID_ADPCM_IMA_WAV
:
1044 st
->codec
->block_align
= sc
->bytes_per_frame
;
1047 if (st
->codec
->extradata_size
== 36) {
1048 st
->codec
->frame_size
= AV_RB32(st
->codec
->extradata
+12);
1049 st
->codec
->channels
= AV_RB8 (st
->codec
->extradata
+21);
1059 static int mov_read_stsc(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1061 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1062 MOVStreamContext
*sc
= st
->priv_data
;
1063 unsigned int i
, entries
;
1065 get_byte(pb
); /* version */
1066 get_be24(pb
); /* flags */
1068 entries
= get_be32(pb
);
1070 if(entries
>= UINT_MAX
/ sizeof(*sc
->sample_to_chunk
))
1073 dprintf(c
->fc
, "track[%i].stsc.entries = %i\n", c
->fc
->nb_streams
-1, entries
);
1075 sc
->sample_to_chunk_sz
= entries
;
1076 sc
->sample_to_chunk
= av_malloc(entries
* sizeof(*sc
->sample_to_chunk
));
1077 if (!sc
->sample_to_chunk
)
1079 for(i
=0; i
<entries
; i
++) {
1080 sc
->sample_to_chunk
[i
].first
= get_be32(pb
);
1081 sc
->sample_to_chunk
[i
].count
= get_be32(pb
);
1082 sc
->sample_to_chunk
[i
].id
= get_be32(pb
);
1087 static int mov_read_stss(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1089 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1090 MOVStreamContext
*sc
= st
->priv_data
;
1091 unsigned int i
, entries
;
1093 get_byte(pb
); /* version */
1094 get_be24(pb
); /* flags */
1096 entries
= get_be32(pb
);
1098 if(entries
>= UINT_MAX
/ sizeof(int))
1101 sc
->keyframe_count
= entries
;
1103 dprintf(c
->fc
, "keyframe_count = %d\n", sc
->keyframe_count
);
1105 sc
->keyframes
= av_malloc(entries
* sizeof(int));
1108 for(i
=0; i
<entries
; i
++) {
1109 sc
->keyframes
[i
] = get_be32(pb
);
1110 //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1115 static int mov_read_stsz(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1117 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1118 MOVStreamContext
*sc
= st
->priv_data
;
1119 unsigned int i
, entries
, sample_size
;
1121 get_byte(pb
); /* version */
1122 get_be24(pb
); /* flags */
1124 sample_size
= get_be32(pb
);
1125 if (!sc
->sample_size
) /* do not overwrite value computed in stsd */
1126 sc
->sample_size
= sample_size
;
1127 entries
= get_be32(pb
);
1128 if(entries
>= UINT_MAX
/ sizeof(int))
1131 sc
->sample_count
= entries
;
1135 dprintf(c
->fc
, "sample_size = %d sample_count = %d\n", sc
->sample_size
, sc
->sample_count
);
1137 sc
->sample_sizes
= av_malloc(entries
* sizeof(int));
1138 if (!sc
->sample_sizes
)
1140 for(i
=0; i
<entries
; i
++)
1141 sc
->sample_sizes
[i
] = get_be32(pb
);
1145 static int mov_read_stts(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1147 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1148 MOVStreamContext
*sc
= st
->priv_data
;
1149 unsigned int i
, entries
;
1151 int64_t total_sample_count
=0;
1153 get_byte(pb
); /* version */
1154 get_be24(pb
); /* flags */
1155 entries
= get_be32(pb
);
1156 if(entries
>= UINT_MAX
/ sizeof(*sc
->stts_data
))
1159 sc
->stts_count
= entries
;
1160 sc
->stts_data
= av_malloc(entries
* sizeof(*sc
->stts_data
));
1163 dprintf(c
->fc
, "track[%i].stts.entries = %i\n", c
->fc
->nb_streams
-1, entries
);
1167 for(i
=0; i
<entries
; i
++) {
1168 int sample_duration
;
1171 sample_count
=get_be32(pb
);
1172 sample_duration
= get_be32(pb
);
1173 sc
->stts_data
[i
].count
= sample_count
;
1174 sc
->stts_data
[i
].duration
= sample_duration
;
1176 sc
->time_rate
= av_gcd(sc
->time_rate
, sample_duration
);
1178 dprintf(c
->fc
, "sample_count=%d, sample_duration=%d\n",sample_count
,sample_duration
);
1180 duration
+=(int64_t)sample_duration
*sample_count
;
1181 total_sample_count
+=sample_count
;
1184 st
->nb_frames
= total_sample_count
;
1186 st
->duration
= duration
;
1190 static int mov_read_ctts(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1192 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1193 MOVStreamContext
*sc
= st
->priv_data
;
1194 unsigned int i
, entries
;
1196 get_byte(pb
); /* version */
1197 get_be24(pb
); /* flags */
1198 entries
= get_be32(pb
);
1199 if(entries
>= UINT_MAX
/ sizeof(*sc
->ctts_data
))
1202 sc
->ctts_count
= entries
;
1203 sc
->ctts_data
= av_malloc(entries
* sizeof(*sc
->ctts_data
));
1206 dprintf(c
->fc
, "track[%i].ctts.entries = %i\n", c
->fc
->nb_streams
-1, entries
);
1208 for(i
=0; i
<entries
; i
++) {
1209 int count
=get_be32(pb
);
1210 int duration
=get_be32(pb
);
1214 st
->codec
->has_b_frames
= 1;
1216 sc
->ctts_data
[i
].count
= count
;
1217 sc
->ctts_data
[i
].duration
= duration
;
1219 sc
->time_rate
= av_gcd(sc
->time_rate
, FFABS(duration
));
1224 static void mov_build_index(MOVContext
*mov
, AVStream
*st
)
1226 MOVStreamContext
*sc
= st
->priv_data
;
1227 int64_t current_offset
;
1228 int64_t current_dts
= 0;
1229 unsigned int stts_index
= 0;
1230 unsigned int stsc_index
= 0;
1231 unsigned int stss_index
= 0;
1234 /* only use old uncompressed audio chunk demuxing when stts specifies it */
1235 if (!(st
->codec
->codec_type
== CODEC_TYPE_AUDIO
&&
1236 sc
->stts_count
== 1 && sc
->stts_data
[0].duration
== 1)) {
1237 unsigned int current_sample
= 0;
1238 unsigned int stts_sample
= 0;
1239 unsigned int keyframe
, sample_size
;
1240 unsigned int distance
= 0;
1241 int key_off
= sc
->keyframes
&& sc
->keyframes
[0] == 1;
1243 st
->nb_frames
= sc
->sample_count
;
1244 for (i
= 0; i
< sc
->chunk_count
; i
++) {
1245 current_offset
= sc
->chunk_offsets
[i
];
1246 if (stsc_index
+ 1 < sc
->sample_to_chunk_sz
&&
1247 i
+ 1 == sc
->sample_to_chunk
[stsc_index
+ 1].first
)
1249 for (j
= 0; j
< sc
->sample_to_chunk
[stsc_index
].count
; j
++) {
1250 if (current_sample
>= sc
->sample_count
) {
1251 av_log(mov
->fc
, AV_LOG_ERROR
, "wrong sample count\n");
1254 keyframe
= !sc
->keyframe_count
|| current_sample
+key_off
== sc
->keyframes
[stss_index
];
1257 if (stss_index
+ 1 < sc
->keyframe_count
)
1260 sample_size
= sc
->sample_size
> 0 ? sc
->sample_size
: sc
->sample_sizes
[current_sample
];
1261 if(sc
->pseudo_stream_id
== -1 ||
1262 sc
->sample_to_chunk
[stsc_index
].id
- 1 == sc
->pseudo_stream_id
) {
1263 av_add_index_entry(st
, current_offset
, current_dts
, sample_size
, distance
,
1264 keyframe ? AVINDEX_KEYFRAME
: 0);
1265 dprintf(mov
->fc
, "AVIndex stream %d, sample %d, offset %"PRIx64
", dts %"PRId64
", "
1266 "size %d, distance %d, keyframe %d\n", st
->index
, current_sample
,
1267 current_offset
, current_dts
, sample_size
, distance
, keyframe
);
1269 current_offset
+= sample_size
;
1270 assert(sc
->stts_data
[stts_index
].duration
% sc
->time_rate
== 0);
1271 current_dts
+= sc
->stts_data
[stts_index
].duration
/ sc
->time_rate
;
1275 if (stts_index
+ 1 < sc
->stts_count
&& stts_sample
== sc
->stts_data
[stts_index
].count
) {
1281 } else { /* read whole chunk */
1282 unsigned int chunk_samples
, chunk_size
, chunk_duration
;
1283 unsigned int frames
= 1;
1284 for (i
= 0; i
< sc
->chunk_count
; i
++) {
1285 current_offset
= sc
->chunk_offsets
[i
];
1286 if (stsc_index
+ 1 < sc
->sample_to_chunk_sz
&&
1287 i
+ 1 == sc
->sample_to_chunk
[stsc_index
+ 1].first
)
1289 chunk_samples
= sc
->sample_to_chunk
[stsc_index
].count
;
1290 /* get chunk size, beware of alaw/ulaw/mace */
1291 if (sc
->samples_per_frame
> 0 &&
1292 (chunk_samples
* sc
->bytes_per_frame
% sc
->samples_per_frame
== 0)) {
1293 if (sc
->samples_per_frame
< 160)
1294 chunk_size
= chunk_samples
* sc
->bytes_per_frame
/ sc
->samples_per_frame
;
1296 chunk_size
= sc
->bytes_per_frame
;
1297 frames
= chunk_samples
/ sc
->samples_per_frame
;
1298 chunk_samples
= sc
->samples_per_frame
;
1301 chunk_size
= chunk_samples
* sc
->sample_size
;
1302 for (j
= 0; j
< frames
; j
++) {
1303 av_add_index_entry(st
, current_offset
, current_dts
, chunk_size
, 0, AVINDEX_KEYFRAME
);
1304 /* get chunk duration */
1306 while (chunk_samples
> 0) {
1307 if (chunk_samples
< sc
->stts_data
[stts_index
].count
) {
1308 chunk_duration
+= sc
->stts_data
[stts_index
].duration
* chunk_samples
;
1309 sc
->stts_data
[stts_index
].count
-= chunk_samples
;
1312 chunk_duration
+= sc
->stts_data
[stts_index
].duration
* chunk_samples
;
1313 chunk_samples
-= sc
->stts_data
[stts_index
].count
;
1314 if (stts_index
+ 1 < sc
->stts_count
)
1318 current_offset
+= sc
->bytes_per_frame
;
1319 dprintf(mov
->fc
, "AVIndex stream %d, chunk %d, offset %"PRIx64
", dts %"PRId64
", "
1320 "size %d, duration %d\n", st
->index
, i
, current_offset
, current_dts
,
1321 chunk_size
, chunk_duration
);
1322 assert(chunk_duration
% sc
->time_rate
== 0);
1323 current_dts
+= chunk_duration
/ sc
->time_rate
;
1328 /* adjust sample count to avindex entries */
1329 sc
->sample_count
= st
->nb_index_entries
;
1332 static int mov_read_trak(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1335 MOVStreamContext
*sc
;
1338 st
= av_new_stream(c
->fc
, c
->fc
->nb_streams
);
1339 if (!st
) return AVERROR(ENOMEM
);
1340 sc
= av_mallocz(sizeof(MOVStreamContext
));
1341 if (!sc
) return AVERROR(ENOMEM
);
1344 st
->codec
->codec_type
= CODEC_TYPE_DATA
;
1345 st
->start_time
= 0; /* XXX: check */
1346 sc
->ffindex
= st
->index
;
1348 if ((ret
= mov_read_default(c
, pb
, atom
)) < 0)
1352 if(sc
->chunk_count
&& (!sc
->stts_count
|| !sc
->sample_to_chunk_sz
||
1353 (!sc
->sample_size
&& !sc
->sample_count
))){
1354 av_log(c
->fc
, AV_LOG_ERROR
, "stream %d, missing mandatory atoms, broken header\n",
1356 sc
->sample_count
= 0; //ignore track
1362 sc
->time_scale
= c
->time_scale
;
1363 av_set_pts_info(st
, 64, sc
->time_rate
, sc
->time_scale
);
1365 if (st
->codec
->codec_type
== CODEC_TYPE_AUDIO
&&
1366 !st
->codec
->frame_size
&& sc
->stts_count
== 1)
1367 st
->codec
->frame_size
= av_rescale(sc
->time_rate
, st
->codec
->sample_rate
, sc
->time_scale
);
1369 if(st
->duration
!= AV_NOPTS_VALUE
){
1370 assert(st
->duration
% sc
->time_rate
== 0);
1371 st
->duration
/= sc
->time_rate
;
1374 mov_build_index(c
, st
);
1376 if (sc
->dref_id
-1 < sc
->drefs_count
&& sc
->drefs
[sc
->dref_id
-1].path
) {
1377 if (url_fopen(&sc
->pb
, sc
->drefs
[sc
->dref_id
-1].path
, URL_RDONLY
) < 0)
1378 av_log(c
->fc
, AV_LOG_ERROR
, "stream %d, error opening file %s: %s\n",
1379 st
->index
, sc
->drefs
[sc
->dref_id
-1].path
, strerror(errno
));
1383 switch (st
->codec
->codec_id
) {
1384 #if CONFIG_H261_DECODER
1387 #if CONFIG_H263_DECODER
1390 #if CONFIG_MPEG4_DECODER
1391 case CODEC_ID_MPEG4
:
1393 st
->codec
->width
= 0; /* let decoder init width/height */
1394 st
->codec
->height
= 0;
1398 /* Do not need those anymore. */
1399 av_freep(&sc
->chunk_offsets
);
1400 av_freep(&sc
->sample_to_chunk
);
1401 av_freep(&sc
->sample_sizes
);
1402 av_freep(&sc
->keyframes
);
1403 av_freep(&sc
->stts_data
);
1408 static int mov_read_ilst(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1411 c
->itunes_metadata
= 1;
1412 ret
= mov_read_default(c
, pb
, atom
);
1413 c
->itunes_metadata
= 0;
1417 static int mov_read_meta(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1419 url_fskip(pb
, 4); // version + flags
1421 return mov_read_default(c
, pb
, atom
);
1424 static int mov_read_trkn(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1426 get_be32(pb
); // type
1427 get_be32(pb
); // unknown
1428 c
->fc
->track
= get_be32(pb
);
1429 dprintf(c
->fc
, "%.4s %d\n", (char*)&atom
.type
, c
->fc
->track
);
1433 static int mov_read_udta_string(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1439 if (c
->itunes_metadata
) {
1440 int data_size
= get_be32(pb
);
1441 int tag
= get_le32(pb
);
1442 if (tag
== MKTAG('d','a','t','a')) {
1443 get_be32(pb
); // type
1444 get_be32(pb
); // unknown
1445 str_size
= data_size
- 16;
1448 str_size
= get_be16(pb
); // string length
1449 get_be16(pb
); // language
1451 switch (atom
.type
) {
1452 case MKTAG(0xa9,'n','a','m'):
1453 str
= c
->fc
->title
; size
= sizeof(c
->fc
->title
); break;
1454 case MKTAG(0xa9,'A','R','T'):
1455 case MKTAG(0xa9,'w','r','t'):
1456 str
= c
->fc
->author
; size
= sizeof(c
->fc
->author
); break;
1457 case MKTAG(0xa9,'c','p','y'):
1458 str
= c
->fc
->copyright
; size
= sizeof(c
->fc
->copyright
); break;
1459 case MKTAG(0xa9,'c','m','t'):
1460 case MKTAG(0xa9,'i','n','f'):
1461 str
= c
->fc
->comment
; size
= sizeof(c
->fc
->comment
); break;
1462 case MKTAG(0xa9,'a','l','b'):
1463 str
= c
->fc
->album
; size
= sizeof(c
->fc
->album
); break;
1467 get_buffer(pb
, str
, FFMIN(size
, str_size
));
1468 dprintf(c
->fc
, "%.4s %s\n", (char*)&atom
.type
, str
);
1472 static int mov_read_tkhd(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1477 int64_t disp_transform
[2];
1478 int display_matrix
[3][2];
1479 AVStream
*st
= c
->fc
->streams
[c
->fc
->nb_streams
-1];
1480 MOVStreamContext
*sc
= st
->priv_data
;
1481 int version
= get_byte(pb
);
1483 get_be24(pb
); /* flags */
1485 MOV_TRACK_ENABLED 0x0001
1486 MOV_TRACK_IN_MOVIE 0x0002
1487 MOV_TRACK_IN_PREVIEW 0x0004
1488 MOV_TRACK_IN_POSTER 0x0008
1495 get_be32(pb
); /* creation time */
1496 get_be32(pb
); /* modification time */
1498 st
->id
= (int)get_be32(pb
); /* track id (NOT 0 !)*/
1499 get_be32(pb
); /* reserved */
1500 st
->start_time
= 0; /* check */
1501 /* highlevel (considering edits) duration in movie timebase */
1502 (version
== 1) ?
get_be64(pb
) : get_be32(pb
);
1503 get_be32(pb
); /* reserved */
1504 get_be32(pb
); /* reserved */
1506 get_be16(pb
); /* layer */
1507 get_be16(pb
); /* alternate group */
1508 get_be16(pb
); /* volume */
1509 get_be16(pb
); /* reserved */
1511 //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
1512 // they're kept in fixed point format through all calculations
1513 // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
1514 for (i
= 0; i
< 3; i
++) {
1515 display_matrix
[i
][0] = get_be32(pb
); // 16.16 fixed point
1516 display_matrix
[i
][1] = get_be32(pb
); // 16.16 fixed point
1517 get_be32(pb
); // 2.30 fixed point (not used)
1520 width
= get_be32(pb
); // 16.16 fixed point track width
1521 height
= get_be32(pb
); // 16.16 fixed point track height
1522 sc
->width
= width
>> 16;
1523 sc
->height
= height
>> 16;
1525 //transform the display width/height according to the matrix
1526 // skip this if the display matrix is the default identity matrix
1527 // to keep the same scale, use [width height 1<<16]
1528 if (width
&& height
&&
1529 (display_matrix
[0][0] != 65536 || display_matrix
[0][1] ||
1530 display_matrix
[1][0] || display_matrix
[1][1] != 65536 ||
1531 display_matrix
[2][0] || display_matrix
[2][1])) {
1532 for (i
= 0; i
< 2; i
++)
1534 (int64_t) width
* display_matrix
[0][i
] +
1535 (int64_t) height
* display_matrix
[1][i
] +
1536 ((int64_t) display_matrix
[2][i
] << 16);
1538 //sample aspect ratio is new width/height divided by old width/height
1539 st
->sample_aspect_ratio
= av_d2q(
1540 ((double) disp_transform
[0] * height
) /
1541 ((double) disp_transform
[1] * width
), INT_MAX
);
1546 static int mov_read_tfhd(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1548 MOVFragment
*frag
= &c
->fragment
;
1549 MOVTrackExt
*trex
= NULL
;
1550 int flags
, track_id
, i
;
1552 get_byte(pb
); /* version */
1553 flags
= get_be24(pb
);
1555 track_id
= get_be32(pb
);
1556 if (!track_id
|| track_id
> c
->fc
->nb_streams
)
1558 frag
->track_id
= track_id
;
1559 for (i
= 0; i
< c
->trex_count
; i
++)
1560 if (c
->trex_data
[i
].track_id
== frag
->track_id
) {
1561 trex
= &c
->trex_data
[i
];
1565 av_log(c
->fc
, AV_LOG_ERROR
, "could not find corresponding trex\n");
1569 if (flags
& 0x01) frag
->base_data_offset
= get_be64(pb
);
1570 else frag
->base_data_offset
= frag
->moof_offset
;
1571 if (flags
& 0x02) frag
->stsd_id
= get_be32(pb
);
1572 else frag
->stsd_id
= trex
->stsd_id
;
1574 frag
->duration
= flags
& 0x08 ?
get_be32(pb
) : trex
->duration
;
1575 frag
->size
= flags
& 0x10 ?
get_be32(pb
) : trex
->size
;
1576 frag
->flags
= flags
& 0x20 ?
get_be32(pb
) : trex
->flags
;
1577 dprintf(c
->fc
, "frag flags 0x%x\n", frag
->flags
);
1581 static int mov_read_trex(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1585 if ((uint64_t)c
->trex_count
+1 >= UINT_MAX
/ sizeof(*c
->trex_data
))
1587 c
->trex_data
= av_realloc(c
->trex_data
, (c
->trex_count
+1)*sizeof(*c
->trex_data
));
1589 return AVERROR(ENOMEM
);
1590 trex
= &c
->trex_data
[c
->trex_count
++];
1591 get_byte(pb
); /* version */
1592 get_be24(pb
); /* flags */
1593 trex
->track_id
= get_be32(pb
);
1594 trex
->stsd_id
= get_be32(pb
);
1595 trex
->duration
= get_be32(pb
);
1596 trex
->size
= get_be32(pb
);
1597 trex
->flags
= get_be32(pb
);
1601 static int mov_read_trun(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1603 MOVFragment
*frag
= &c
->fragment
;
1605 MOVStreamContext
*sc
;
1608 int data_offset
= 0;
1609 unsigned entries
, first_sample_flags
= frag
->flags
;
1610 int flags
, distance
, i
;
1612 if (!frag
->track_id
|| frag
->track_id
> c
->fc
->nb_streams
)
1614 st
= c
->fc
->streams
[frag
->track_id
-1];
1616 if (sc
->pseudo_stream_id
+1 != frag
->stsd_id
)
1618 get_byte(pb
); /* version */
1619 flags
= get_be24(pb
);
1620 entries
= get_be32(pb
);
1621 dprintf(c
->fc
, "flags 0x%x entries %d\n", flags
, entries
);
1622 if (flags
& 0x001) data_offset
= get_be32(pb
);
1623 if (flags
& 0x004) first_sample_flags
= get_be32(pb
);
1624 if (flags
& 0x800) {
1625 if ((uint64_t)entries
+sc
->ctts_count
>= UINT_MAX
/sizeof(*sc
->ctts_data
))
1627 sc
->ctts_data
= av_realloc(sc
->ctts_data
,
1628 (entries
+sc
->ctts_count
)*sizeof(*sc
->ctts_data
));
1630 return AVERROR(ENOMEM
);
1633 offset
= frag
->base_data_offset
+ data_offset
;
1635 dprintf(c
->fc
, "first sample flags 0x%x\n", first_sample_flags
);
1636 for (i
= 0; i
< entries
; i
++) {
1637 unsigned sample_size
= frag
->size
;
1638 int sample_flags
= i ? frag
->flags
: first_sample_flags
;
1639 unsigned sample_duration
= frag
->duration
;
1642 if (flags
& 0x100) sample_duration
= get_be32(pb
);
1643 if (flags
& 0x200) sample_size
= get_be32(pb
);
1644 if (flags
& 0x400) sample_flags
= get_be32(pb
);
1645 if (flags
& 0x800) {
1646 sc
->ctts_data
[sc
->ctts_count
].count
= 1;
1647 sc
->ctts_data
[sc
->ctts_count
].duration
= get_be32(pb
);
1650 if ((keyframe
= st
->codec
->codec_type
== CODEC_TYPE_AUDIO
||
1651 (flags
& 0x004 && !i
&& !sample_flags
) || sample_flags
& 0x2000000))
1653 av_add_index_entry(st
, offset
, dts
, sample_size
, distance
,
1654 keyframe ? AVINDEX_KEYFRAME
: 0);
1655 dprintf(c
->fc
, "AVIndex stream %d, sample %d, offset %"PRIx64
", dts %"PRId64
", "
1656 "size %d, distance %d, keyframe %d\n", st
->index
, sc
->sample_count
+i
,
1657 offset
, dts
, sample_size
, distance
, keyframe
);
1659 assert(sample_duration
% sc
->time_rate
== 0);
1660 dts
+= sample_duration
/ sc
->time_rate
;
1661 offset
+= sample_size
;
1663 frag
->moof_offset
= offset
;
1664 sc
->sample_count
= st
->nb_index_entries
;
1669 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
1670 /* like the files created with Adobe Premiere 5.0, for samples see */
1671 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
1672 static int mov_read_wide(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1677 return 0; /* continue */
1678 if (get_be32(pb
) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
1679 url_fskip(pb
, atom
.size
- 4);
1682 atom
.type
= get_le32(pb
);
1685 if (atom
.type
!= MKTAG('m','d','a','t')) {
1686 url_fskip(pb
, atom
.size
);
1689 err
= mov_read_mdat(c
, pb
, atom
);
1693 static int mov_read_cmov(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1698 uint8_t *moov_data
; /* uncompressed data */
1699 long cmov_len
, moov_len
;
1702 get_be32(pb
); /* dcom atom */
1703 if (get_le32(pb
) != MKTAG('d','c','o','m'))
1705 if (get_le32(pb
) != MKTAG('z','l','i','b')) {
1706 av_log(NULL
, AV_LOG_ERROR
, "unknown compression for cmov atom !");
1709 get_be32(pb
); /* cmvd atom */
1710 if (get_le32(pb
) != MKTAG('c','m','v','d'))
1712 moov_len
= get_be32(pb
); /* uncompressed size */
1713 cmov_len
= atom
.size
- 6 * 4;
1715 cmov_data
= av_malloc(cmov_len
);
1718 moov_data
= av_malloc(moov_len
);
1723 get_buffer(pb
, cmov_data
, cmov_len
);
1724 if(uncompress (moov_data
, (uLongf
*) &moov_len
, (const Bytef
*)cmov_data
, cmov_len
) != Z_OK
)
1725 goto free_and_return
;
1726 if(init_put_byte(&ctx
, moov_data
, moov_len
, 0, NULL
, NULL
, NULL
, NULL
) != 0)
1727 goto free_and_return
;
1728 atom
.type
= MKTAG('m','o','o','v');
1730 atom
.size
= moov_len
;
1732 // { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
1734 ret
= mov_read_default(c
, &ctx
, atom
);
1740 av_log(c
->fc
, AV_LOG_ERROR
, "this file requires zlib support compiled in\n");
1745 /* edit list atom */
1746 static int mov_read_elst(MOVContext
*c
, ByteIOContext
*pb
, MOVAtom atom
)
1748 MOVStreamContext
*sc
= c
->fc
->streams
[c
->fc
->nb_streams
-1]->priv_data
;
1751 get_byte(pb
); /* version */
1752 get_be24(pb
); /* flags */
1753 edit_count
= sc
->edit_count
= get_be32(pb
); /* entries */
1755 for(i
=0; i
<edit_count
; i
++){
1757 get_be32(pb
); /* Track duration */
1758 time
= get_be32(pb
); /* Media time */
1759 get_be32(pb
); /* Media rate */
1761 av_log(c
->fc
, AV_LOG_WARNING
, "edit list not starting at 0, "
1762 "a/v desync might occur, patch welcome\n");
1764 dprintf(c
->fc
, "track[%i].edit_count = %i\n", c
->fc
->nb_streams
-1, sc
->edit_count
);
1768 static const MOVParseTableEntry mov_default_parse_table
[] = {
1769 { MKTAG('a','v','s','s'), mov_read_extradata
},
1770 { MKTAG('c','o','6','4'), mov_read_stco
},
1771 { MKTAG('c','t','t','s'), mov_read_ctts
}, /* composition time to sample */
1772 { MKTAG('d','i','n','f'), mov_read_default
},
1773 { MKTAG('d','r','e','f'), mov_read_dref
},
1774 { MKTAG('e','d','t','s'), mov_read_default
},
1775 { MKTAG('e','l','s','t'), mov_read_elst
},
1776 { MKTAG('e','n','d','a'), mov_read_enda
},
1777 { MKTAG('f','i','e','l'), mov_read_extradata
},
1778 { MKTAG('f','t','y','p'), mov_read_ftyp
},
1779 { MKTAG('g','l','b','l'), mov_read_glbl
},
1780 { MKTAG('h','d','l','r'), mov_read_hdlr
},
1781 { MKTAG('i','l','s','t'), mov_read_ilst
},
1782 { MKTAG('j','p','2','h'), mov_read_extradata
},
1783 { MKTAG('m','d','a','t'), mov_read_mdat
},
1784 { MKTAG('m','d','h','d'), mov_read_mdhd
},
1785 { MKTAG('m','d','i','a'), mov_read_default
},
1786 { MKTAG('m','e','t','a'), mov_read_meta
},
1787 { MKTAG('m','i','n','f'), mov_read_default
},
1788 { MKTAG('m','o','o','f'), mov_read_moof
},
1789 { MKTAG('m','o','o','v'), mov_read_moov
},
1790 { MKTAG('m','v','e','x'), mov_read_default
},
1791 { MKTAG('m','v','h','d'), mov_read_mvhd
},
1792 { MKTAG('S','M','I',' '), mov_read_smi
}, /* Sorenson extension ??? */
1793 { MKTAG('a','l','a','c'), mov_read_extradata
}, /* alac specific atom */
1794 { MKTAG('a','v','c','C'), mov_read_glbl
},
1795 { MKTAG('p','a','s','p'), mov_read_pasp
},
1796 { MKTAG('s','t','b','l'), mov_read_default
},
1797 { MKTAG('s','t','c','o'), mov_read_stco
},
1798 { MKTAG('s','t','s','c'), mov_read_stsc
},
1799 { MKTAG('s','t','s','d'), mov_read_stsd
}, /* sample description */
1800 { MKTAG('s','t','s','s'), mov_read_stss
}, /* sync sample */
1801 { MKTAG('s','t','s','z'), mov_read_stsz
}, /* sample size */
1802 { MKTAG('s','t','t','s'), mov_read_stts
},
1803 { MKTAG('t','k','h','d'), mov_read_tkhd
}, /* track header */
1804 { MKTAG('t','f','h','d'), mov_read_tfhd
}, /* track fragment header */
1805 { MKTAG('t','r','a','k'), mov_read_trak
},
1806 { MKTAG('t','r','a','f'), mov_read_default
},
1807 { MKTAG('t','r','e','x'), mov_read_trex
},
1808 { MKTAG('t','r','k','n'), mov_read_trkn
},
1809 { MKTAG('t','r','u','n'), mov_read_trun
},
1810 { MKTAG('u','d','t','a'), mov_read_default
},
1811 { MKTAG('w','a','v','e'), mov_read_wave
},
1812 { MKTAG('e','s','d','s'), mov_read_esds
},
1813 { MKTAG('w','i','d','e'), mov_read_wide
}, /* place holder */
1814 { MKTAG('c','m','o','v'), mov_read_cmov
},
1815 { MKTAG(0xa9,'n','a','m'), mov_read_udta_string
},
1816 { MKTAG(0xa9,'w','r','t'), mov_read_udta_string
},
1817 { MKTAG(0xa9,'c','p','y'), mov_read_udta_string
},
1818 { MKTAG(0xa9,'i','n','f'), mov_read_udta_string
},
1819 { MKTAG(0xa9,'i','n','f'), mov_read_udta_string
},
1820 { MKTAG(0xa9,'A','R','T'), mov_read_udta_string
},
1821 { MKTAG(0xa9,'a','l','b'), mov_read_udta_string
},
1822 { MKTAG(0xa9,'c','m','t'), mov_read_udta_string
},
1826 static int mov_probe(AVProbeData
*p
)
1828 unsigned int offset
;
1832 /* check file header */
1835 /* ignore invalid offset */
1836 if ((offset
+ 8) > (unsigned int)p
->buf_size
)
1838 tag
= AV_RL32(p
->buf
+ offset
+ 4);
1840 /* check for obvious tags */
1841 case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
1842 case MKTAG('m','o','o','v'):
1843 case MKTAG('m','d','a','t'):
1844 case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
1845 case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
1846 case MKTAG('f','t','y','p'):
1847 return AVPROBE_SCORE_MAX
;
1848 /* those are more common words, so rate then a bit less */
1849 case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
1850 case MKTAG('w','i','d','e'):
1851 case MKTAG('f','r','e','e'):
1852 case MKTAG('j','u','n','k'):
1853 case MKTAG('p','i','c','t'):
1854 return AVPROBE_SCORE_MAX
- 5;
1855 case MKTAG(0x82,0x82,0x7f,0x7d):
1856 case MKTAG('s','k','i','p'):
1857 case MKTAG('u','u','i','d'):
1858 case MKTAG('p','r','f','l'):
1859 offset
= AV_RB32(p
->buf
+offset
) + offset
;
1860 /* if we only find those cause probedata is too small at least rate them */
1861 score
= AVPROBE_SCORE_MAX
- 50;
1864 /* unrecognized tag */
1871 static int mov_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
1873 MOVContext
*mov
= s
->priv_data
;
1874 ByteIOContext
*pb
= s
->pb
;
1876 MOVAtom atom
= { 0, 0, 0 };
1879 /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
1880 if(!url_is_streamed(pb
))
1881 atom
.size
= url_fsize(pb
);
1883 atom
.size
= INT64_MAX
;
1885 /* check MOV header */
1886 if ((err
= mov_read_default(mov
, pb
, atom
)) < 0) {
1887 av_log(s
, AV_LOG_ERROR
, "error reading header: %d\n", err
);
1890 if (!mov
->found_moov
) {
1891 av_log(s
, AV_LOG_ERROR
, "moov atom not found\n");
1894 dprintf(mov
->fc
, "on_parse_exit_offset=%lld\n", url_ftell(pb
));
1899 static int mov_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
1901 MOVContext
*mov
= s
->priv_data
;
1902 MOVStreamContext
*sc
= 0;
1903 AVIndexEntry
*sample
= 0;
1904 int64_t best_dts
= INT64_MAX
;
1907 for (i
= 0; i
< s
->nb_streams
; i
++) {
1908 AVStream
*st
= s
->streams
[i
];
1909 MOVStreamContext
*msc
= st
->priv_data
;
1910 if (st
->discard
!= AVDISCARD_ALL
&& msc
->pb
&& msc
->current_sample
< msc
->sample_count
) {
1911 AVIndexEntry
*current_sample
= &st
->index_entries
[msc
->current_sample
];
1912 int64_t dts
= av_rescale(current_sample
->timestamp
* (int64_t)msc
->time_rate
,
1913 AV_TIME_BASE
, msc
->time_scale
);
1914 dprintf(s
, "stream %d, sample %d, dts %"PRId64
"\n", i
, msc
->current_sample
, dts
);
1915 if (!sample
|| (url_is_streamed(s
->pb
) && current_sample
->pos
< sample
->pos
) ||
1916 (!url_is_streamed(s
->pb
) &&
1917 ((msc
->pb
!= s
->pb
&& dts
< best_dts
) || (msc
->pb
== s
->pb
&&
1918 ((FFABS(best_dts
- dts
) <= AV_TIME_BASE
&& current_sample
->pos
< sample
->pos
) ||
1919 (FFABS(best_dts
- dts
) > AV_TIME_BASE
&& dts
< best_dts
)))))) {
1920 sample
= current_sample
;
1927 mov
->found_mdat
= 0;
1928 if (!url_is_streamed(s
->pb
) ||
1929 mov_read_default(mov
, s
->pb
, (MOVAtom
){ 0, 0, INT64_MAX
}) < 0 ||
1932 dprintf(s
, "read fragments, offset 0x%llx\n", url_ftell(s
->pb
));
1935 /* must be done just before reading, to avoid infinite loop on sample */
1936 sc
->current_sample
++;
1937 if (url_fseek(sc
->pb
, sample
->pos
, SEEK_SET
) != sample
->pos
) {
1938 av_log(mov
->fc
, AV_LOG_ERROR
, "stream %d, offset 0x%"PRIx64
": partial file\n",
1939 sc
->ffindex
, sample
->pos
);
1942 av_get_packet(sc
->pb
, pkt
, sample
->size
);
1943 #if CONFIG_DV_DEMUXER
1944 if (mov
->dv_demux
&& sc
->dv_audio_container
) {
1945 dv_produce_packet(mov
->dv_demux
, pkt
, pkt
->data
, pkt
->size
);
1948 if (dv_get_packet(mov
->dv_demux
, pkt
) < 0)
1952 pkt
->stream_index
= sc
->ffindex
;
1953 pkt
->dts
= sample
->timestamp
;
1954 if (sc
->ctts_data
) {
1955 assert(sc
->ctts_data
[sc
->sample_to_ctime_index
].duration
% sc
->time_rate
== 0);
1956 pkt
->pts
= pkt
->dts
+ sc
->ctts_data
[sc
->sample_to_ctime_index
].duration
/ sc
->time_rate
;
1957 /* update ctts context */
1958 sc
->sample_to_ctime_sample
++;
1959 if (sc
->sample_to_ctime_index
< sc
->ctts_count
&&
1960 sc
->ctts_data
[sc
->sample_to_ctime_index
].count
== sc
->sample_to_ctime_sample
) {
1961 sc
->sample_to_ctime_index
++;
1962 sc
->sample_to_ctime_sample
= 0;
1965 pkt
->dts
= AV_NOPTS_VALUE
;
1967 AVStream
*st
= s
->streams
[sc
->ffindex
];
1968 int64_t next_dts
= (sc
->current_sample
< sc
->sample_count
) ?
1969 st
->index_entries
[sc
->current_sample
].timestamp
: st
->duration
;
1970 pkt
->duration
= next_dts
- pkt
->dts
;
1971 pkt
->pts
= pkt
->dts
;
1973 pkt
->flags
|= sample
->flags
& AVINDEX_KEYFRAME ? PKT_FLAG_KEY
: 0;
1974 pkt
->pos
= sample
->pos
;
1975 dprintf(s
, "stream %d, pts %"PRId64
", dts %"PRId64
", pos 0x%"PRIx64
", duration %d\n",
1976 pkt
->stream_index
, pkt
->pts
, pkt
->dts
, pkt
->pos
, pkt
->duration
);
1980 static int mov_seek_stream(AVStream
*st
, int64_t timestamp
, int flags
)
1982 MOVStreamContext
*sc
= st
->priv_data
;
1983 int sample
, time_sample
;
1986 sample
= av_index_search_timestamp(st
, timestamp
, flags
);
1987 dprintf(st
->codec
, "stream %d, timestamp %"PRId64
", sample %d\n", st
->index
, timestamp
, sample
);
1988 if (sample
< 0) /* not sure what to do */
1990 sc
->current_sample
= sample
;
1991 dprintf(st
->codec
, "stream %d, found sample %d\n", st
->index
, sc
->current_sample
);
1992 /* adjust ctts index */
1993 if (sc
->ctts_data
) {
1995 for (i
= 0; i
< sc
->ctts_count
; i
++) {
1996 int next
= time_sample
+ sc
->ctts_data
[i
].count
;
1997 if (next
> sc
->current_sample
) {
1998 sc
->sample_to_ctime_index
= i
;
1999 sc
->sample_to_ctime_sample
= sc
->current_sample
- time_sample
;
2008 static int mov_read_seek(AVFormatContext
*s
, int stream_index
, int64_t sample_time
, int flags
)
2011 int64_t seek_timestamp
, timestamp
;
2015 if (stream_index
>= s
->nb_streams
)
2018 st
= s
->streams
[stream_index
];
2019 sample
= mov_seek_stream(st
, sample_time
, flags
);
2023 /* adjust seek timestamp to found sample timestamp */
2024 seek_timestamp
= st
->index_entries
[sample
].timestamp
;
2026 for (i
= 0; i
< s
->nb_streams
; i
++) {
2028 if (stream_index
== i
|| st
->discard
== AVDISCARD_ALL
)
2031 timestamp
= av_rescale_q(seek_timestamp
, s
->streams
[stream_index
]->time_base
, st
->time_base
);
2032 mov_seek_stream(st
, timestamp
, flags
);
2037 static int mov_read_close(AVFormatContext
*s
)
2040 MOVContext
*mov
= s
->priv_data
;
2041 for(i
=0; i
<s
->nb_streams
; i
++) {
2042 MOVStreamContext
*sc
= s
->streams
[i
]->priv_data
;
2043 av_freep(&sc
->ctts_data
);
2044 for (j
=0; j
<sc
->drefs_count
; j
++)
2045 av_freep(&sc
->drefs
[j
].path
);
2046 av_freep(&sc
->drefs
);
2047 if (sc
->pb
&& sc
->pb
!= s
->pb
)
2051 for(i
=0; i
<mov
->dv_fctx
->nb_streams
; i
++){
2052 av_freep(&mov
->dv_fctx
->streams
[i
]->codec
);
2053 av_freep(&mov
->dv_fctx
->streams
[i
]);
2055 av_freep(&mov
->dv_fctx
);
2056 av_freep(&mov
->dv_demux
);
2058 av_freep(&mov
->trex_data
);
2062 AVInputFormat mov_demuxer
= {
2063 "mov,mp4,m4a,3gp,3g2,mj2",
2064 NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),