2 * Matroska file demuxer (no muxer yet)
3 * Copyright (c) 2003-2004 The ffmpeg Project
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
24 * Matroska file demuxer
25 * by Ronald Bultje <rbultje@ronald.bitfreak.net>
26 * with a little help from Moritz Bunkus <moritz@bunkus.org>
27 * Specs available on the matroska project page:
28 * http://www.matroska.org/.
32 /* For codec_get_bmp_id and codec_get_wav_id. */
34 #include "intfloat_readwrite.h"
36 /* EBML version supported */
37 #define EBML_VERSION 1
39 /* top-level master-IDs */
40 #define EBML_ID_HEADER 0x1A45DFA3
42 /* IDs in the HEADER master */
43 #define EBML_ID_EBMLVERSION 0x4286
44 #define EBML_ID_EBMLREADVERSION 0x42F7
45 #define EBML_ID_EBMLMAXIDLENGTH 0x42F2
46 #define EBML_ID_EBMLMAXSIZELENGTH 0x42F3
47 #define EBML_ID_DOCTYPE 0x4282
48 #define EBML_ID_DOCTYPEVERSION 0x4287
49 #define EBML_ID_DOCTYPEREADVERSION 0x4285
51 /* general EBML types */
52 #define EBML_ID_VOID 0xEC
55 * Matroska element IDs. max. 32-bit.
58 /* toplevel segment */
59 #define MATROSKA_ID_SEGMENT 0x18538067
61 /* matroska top-level master IDs */
62 #define MATROSKA_ID_INFO 0x1549A966
63 #define MATROSKA_ID_TRACKS 0x1654AE6B
64 #define MATROSKA_ID_CUES 0x1C53BB6B
65 #define MATROSKA_ID_TAGS 0x1254C367
66 #define MATROSKA_ID_SEEKHEAD 0x114D9B74
67 #define MATROSKA_ID_CLUSTER 0x1F43B675
69 /* IDs in the info master */
70 #define MATROSKA_ID_TIMECODESCALE 0x2AD7B1
71 #define MATROSKA_ID_DURATION 0x4489
72 #define MATROSKA_ID_TITLE 0x7BA9
73 #define MATROSKA_ID_WRITINGAPP 0x5741
74 #define MATROSKA_ID_MUXINGAPP 0x4D80
75 #define MATROSKA_ID_DATEUTC 0x4461
77 /* ID in the tracks master */
78 #define MATROSKA_ID_TRACKENTRY 0xAE
80 /* IDs in the trackentry master */
81 #define MATROSKA_ID_TRACKNUMBER 0xD7
82 #define MATROSKA_ID_TRACKUID 0x73C5
83 #define MATROSKA_ID_TRACKTYPE 0x83
84 #define MATROSKA_ID_TRACKAUDIO 0xE1
85 #define MATROSKA_ID_TRACKVIDEO 0xE0
86 #define MATROSKA_ID_CODECID 0x86
87 #define MATROSKA_ID_CODECPRIVATE 0x63A2
88 #define MATROSKA_ID_CODECNAME 0x258688
89 #define MATROSKA_ID_CODECINFOURL 0x3B4040
90 #define MATROSKA_ID_CODECDOWNLOADURL 0x26B240
91 #define MATROSKA_ID_TRACKNAME 0x536E
92 #define MATROSKA_ID_TRACKLANGUAGE 0x22B59C
93 #define MATROSKA_ID_TRACKFLAGENABLED 0xB9
94 #define MATROSKA_ID_TRACKFLAGDEFAULT 0x88
95 #define MATROSKA_ID_TRACKFLAGLACING 0x9C
96 #define MATROSKA_ID_TRACKMINCACHE 0x6DE7
97 #define MATROSKA_ID_TRACKMAXCACHE 0x6DF8
98 #define MATROSKA_ID_TRACKDEFAULTDURATION 0x23E383
100 /* IDs in the trackvideo master */
101 #define MATROSKA_ID_VIDEOFRAMERATE 0x2383E3
102 #define MATROSKA_ID_VIDEODISPLAYWIDTH 0x54B0
103 #define MATROSKA_ID_VIDEODISPLAYHEIGHT 0x54BA
104 #define MATROSKA_ID_VIDEOPIXELWIDTH 0xB0
105 #define MATROSKA_ID_VIDEOPIXELHEIGHT 0xBA
106 #define MATROSKA_ID_VIDEOFLAGINTERLACED 0x9A
107 #define MATROSKA_ID_VIDEOSTEREOMODE 0x53B9
108 #define MATROSKA_ID_VIDEOASPECTRATIO 0x54B3
109 #define MATROSKA_ID_VIDEOCOLOURSPACE 0x2EB524
111 /* IDs in the trackaudio master */
112 #define MATROSKA_ID_AUDIOSAMPLINGFREQ 0xB5
113 #define MATROSKA_ID_AUDIOOUTSAMPLINGFREQ 0x78B5
115 #define MATROSKA_ID_AUDIOBITDEPTH 0x6264
116 #define MATROSKA_ID_AUDIOCHANNELS 0x9F
118 /* ID in the cues master */
119 #define MATROSKA_ID_POINTENTRY 0xBB
121 /* IDs in the pointentry master */
122 #define MATROSKA_ID_CUETIME 0xB3
123 #define MATROSKA_ID_CUETRACKPOSITION 0xB7
125 /* IDs in the cuetrackposition master */
126 #define MATROSKA_ID_CUETRACK 0xF7
127 #define MATROSKA_ID_CUECLUSTERPOSITION 0xF1
129 /* IDs in the tags master */
132 /* IDs in the seekhead master */
133 #define MATROSKA_ID_SEEKENTRY 0x4DBB
135 /* IDs in the seekpoint master */
136 #define MATROSKA_ID_SEEKID 0x53AB
137 #define MATROSKA_ID_SEEKPOSITION 0x53AC
139 /* IDs in the cluster master */
140 #define MATROSKA_ID_CLUSTERTIMECODE 0xE7
141 #define MATROSKA_ID_BLOCKGROUP 0xA0
143 /* IDs in the blockgroup master */
144 #define MATROSKA_ID_BLOCK 0xA1
145 #define MATROSKA_ID_BLOCKDURATION 0x9B
146 #define MATROSKA_ID_BLOCKREFERENCE 0xFB
149 MATROSKA_TRACK_TYPE_VIDEO = 0x1,
150 MATROSKA_TRACK_TYPE_AUDIO = 0x2,
151 MATROSKA_TRACK_TYPE_COMPLEX = 0x3,
152 MATROSKA_TRACK_TYPE_LOGO = 0x10,
153 MATROSKA_TRACK_TYPE_SUBTITLE = 0x11,
154 MATROSKA_TRACK_TYPE_CONTROL = 0x20,
158 MATROSKA_EYE_MODE_MONO = 0x0,
159 MATROSKA_EYE_MODE_RIGHT = 0x1,
160 MATROSKA_EYE_MODE_LEFT = 0x2,
161 MATROSKA_EYE_MODE_BOTH = 0x3,
165 MATROSKA_ASPECT_RATIO_MODE_FREE = 0x0,
166 MATROSKA_ASPECT_RATIO_MODE_KEEP = 0x1,
167 MATROSKA_ASPECT_RATIO_MODE_FIXED = 0x2,
168 } MatroskaAspectRatioMode;
171 * These aren't in any way "matroska-form" things,
172 * it's just something I use in the muxer/demuxer.
176 MATROSKA_TRACK_ENABLED = (1<<0),
177 MATROSKA_TRACK_DEFAULT = (1<<1),
178 MATROSKA_TRACK_LACING = (1<<2),
179 MATROSKA_TRACK_SHIFT = (1<<16)
180 } MatroskaTrackFlags;
183 MATROSKA_VIDEOTRACK_INTERLACED = (MATROSKA_TRACK_SHIFT<<0)
184 } MatroskaVideoTrackFlags;
187 * Matroska Codec IDs. Strings.
190 typedef struct CodecTags{
195 #define MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC "V_MS/VFW/FOURCC"
196 #define MATROSKA_CODEC_ID_AUDIO_ACM "A_MS/ACM"
198 static CodecTags codec_tags[]={
199 // {"V_MS/VFW/FOURCC" , CODEC_ID_NONE},
200 {"V_UNCOMPRESSED" , CODEC_ID_RAWVIDEO},
201 {"V_MPEG4/ISO/SP" , CODEC_ID_MPEG4},
202 {"V_MPEG4/ISO/ASP" , CODEC_ID_MPEG4},
203 {"V_MPEG4/ISO/AP" , CODEC_ID_MPEG4},
204 {"V_MPEG4/ISO/AVC" , CODEC_ID_H264},
205 {"V_MPEG4/MS/V3" , CODEC_ID_MSMPEG4V3},
206 {"V_MPEG1" , CODEC_ID_MPEG1VIDEO},
207 {"V_MPEG2" , CODEC_ID_MPEG2VIDEO},
208 {"V_MJPEG" , CODEC_ID_MJPEG},
209 {"V_REAL/RV10" , CODEC_ID_RV10},
210 {"V_REAL/RV20" , CODEC_ID_RV20},
211 {"V_REAL/RV30" , CODEC_ID_RV30},
212 {"V_REAL/RV40" , CODEC_ID_RV40},
213 /* TODO: Real/Quicktime */
215 // {"A_MS/ACM" , CODEC_ID_NONE},
216 {"A_MPEG/L1" , CODEC_ID_MP3},
217 {"A_MPEG/L2" , CODEC_ID_MP3},
218 {"A_MPEG/L3" , CODEC_ID_MP3},
219 {"A_PCM/INT/BIG" , CODEC_ID_PCM_U16BE},
220 {"A_PCM/INT/LIT" , CODEC_ID_PCM_U16LE},
221 // {"A_PCM/FLOAT/IEEE" , CODEC_ID_NONE},
222 {"A_AC3" , CODEC_ID_AC3},
223 {"A_DTS" , CODEC_ID_DTS},
224 {"A_VORBIS" , CODEC_ID_VORBIS},
225 {"A_AAC" , CODEC_ID_AAC},
226 {"A_WAVPACK4" , CODEC_ID_WAVPACK},
227 {NULL , CODEC_ID_NONE}
228 /* TODO: AC3-9/10 (?), Real, Musepack, Quicktime */
231 /* max. depth in the EBML tree structure */
232 #define EBML_MAX_DEPTH 16
234 typedef struct Track {
235 MatroskaTrackType type;
237 /* Unique track number and track ID. stream_index is the index that
238 * the calling app uses for this track. */
249 unsigned char *codec_priv;
252 int64_t default_duration;
253 MatroskaTrackFlags flags;
256 typedef struct MatroskaVideoTrack {
266 MatroskaAspectRatioMode ar_mode;
267 MatroskaEyeMode eye_mode;
270 } MatroskaVideoTrack;
272 typedef struct MatroskaAudioTrack {
280 } MatroskaAudioTrack;
282 typedef struct MatroskaSubtitleTrack {
286 } MatroskaSubtitleTrack;
288 typedef struct MatroskaLevel {
289 uint64_t start, length;
292 typedef struct MatroskaDemuxIndex {
293 uint64_t pos; /* of the corresponding *cluster*! */
294 uint16_t track; /* reference to 'num' */
295 uint64_t time; /* in nanoseconds */
296 } MatroskaDemuxIndex;
298 typedef struct MatroskaDemuxContext {
299 AVFormatContext *ctx;
303 MatroskaLevel levels[EBML_MAX_DEPTH];
311 /* timescale in the file */
314 /* position (time, ns) */
317 /* num_streams is the number of streams that av_new_stream() was called
318 * for ( = that are available to the calling program). */
319 int num_tracks, num_streams;
320 MatroskaTrack *tracks[MAX_STREAMS];
322 /* cache for ID peeking */
325 /* byte position of the segment inside the stream */
326 offset_t segment_start;
328 /* The packet queue. */
332 /* have we already parse metadata/cues/clusters? */
337 /* The index for seeking. */
339 MatroskaDemuxIndex *index;
340 } MatroskaDemuxContext;
343 * The first few functions handle EBML file parsing. The rest
344 * is the document interpretation. Matroska really just is a
349 * Return: the amount of levels in the hierarchy that the
350 * current element lies higher than the previous one.
351 * The opposite isn't done - that's auto-done using master
356 ebml_read_element_level_up (MatroskaDemuxContext *matroska)
358 ByteIOContext *pb = &matroska->ctx->pb;
359 offset_t pos = url_ftell(pb);
362 while (matroska->num_levels > 0) {
363 MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
365 if (pos >= level->start + level->length) {
366 matroska->num_levels--;
377 * Read: an "EBML number", which is defined as a variable-length
378 * array of bytes. The first byte indicates the length by giving a
379 * number of 0-bits followed by a one. The position of the first
380 * "one" bit inside the first byte indicates the length of this
382 * Returns: num. of bytes read. < 0 on error.
386 ebml_read_num (MatroskaDemuxContext *matroska,
390 ByteIOContext *pb = &matroska->ctx->pb;
391 int len_mask = 0x80, read = 1, n = 1;
394 /* the first byte tells us the length in bytes - get_byte() can normally
395 * return 0, but since that's not a valid first ebmlID byte, we can
396 * use it safely here to catch EOS. */
397 if (!(total = get_byte(pb))) {
398 /* we might encounter EOS here */
400 offset_t pos = url_ftell(pb);
401 av_log(matroska->ctx, AV_LOG_ERROR,
402 "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
405 return AVERROR_IO; /* EOS or actual I/O error */
408 /* get the length of the EBML number */
409 while (read <= max_size && !(total & len_mask)) {
413 if (read > max_size) {
414 offset_t pos = url_ftell(pb) - 1;
415 av_log(matroska->ctx, AV_LOG_ERROR,
416 "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
417 (uint8_t) total, pos, pos);
418 return AVERROR_INVALIDDATA;
421 /* read out length */
424 total = (total << 8) | get_byte(pb);
432 * Read: the element content data ID.
433 * Return: the number of bytes read or < 0 on error.
437 ebml_read_element_id (MatroskaDemuxContext *matroska,
444 /* if we re-call this, use our cached ID */
445 if (matroska->peek_id != 0) {
448 *id = matroska->peek_id;
452 /* read out the "EBML number", include tag in ID */
453 if ((read = ebml_read_num(matroska, 4, &total)) < 0)
455 *id = matroska->peek_id = total | (1 << (read * 7));
459 *level_up = ebml_read_element_level_up(matroska);
465 * Read: element content length.
466 * Return: the number of bytes read or < 0 on error.
470 ebml_read_element_length (MatroskaDemuxContext *matroska,
473 /* clear cache since we're now beyond that data point */
474 matroska->peek_id = 0;
476 /* read out the "EBML number", include tag in ID */
477 return ebml_read_num(matroska, 8, length);
481 * Return: the ID of the next element, or 0 on error.
482 * Level_up contains the amount of levels that this
483 * next element lies higher than the previous one.
487 ebml_peek_id (MatroskaDemuxContext *matroska,
492 assert(level_up != NULL);
494 if (ebml_read_element_id(matroska, &id, level_up) < 0)
501 * Seek to a given offset.
502 * 0 is success, -1 is failure.
506 ebml_read_seek (MatroskaDemuxContext *matroska,
509 ByteIOContext *pb = &matroska->ctx->pb;
511 /* clear ID cache, if any */
512 matroska->peek_id = 0;
514 return (url_fseek(pb, offset, SEEK_SET) == offset) ? 0 : -1;
518 * Skip the next element.
519 * 0 is success, -1 is failure.
523 ebml_read_skip (MatroskaDemuxContext *matroska)
525 ByteIOContext *pb = &matroska->ctx->pb;
530 if ((res = ebml_read_element_id(matroska, &id, NULL)) < 0 ||
531 (res = ebml_read_element_length(matroska, &length)) < 0)
534 url_fskip(pb, length);
540 * Read the next element as an unsigned int.
541 * 0 is success, < 0 is failure.
545 ebml_read_uint (MatroskaDemuxContext *matroska,
549 ByteIOContext *pb = &matroska->ctx->pb;
550 int n = 0, size, res;
553 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
554 (res = ebml_read_element_length(matroska, &rlength)) < 0)
557 if (size < 1 || size > 8) {
558 offset_t pos = url_ftell(pb);
559 av_log(matroska->ctx, AV_LOG_ERROR,
560 "Invalid uint element size %d at position %"PRId64" (0x%"PRIx64")\n",
562 return AVERROR_INVALIDDATA;
565 /* big-endian ordening; build up number */
568 *num = (*num << 8) | get_byte(pb);
574 * Read the next element as a signed int.
575 * 0 is success, < 0 is failure.
579 ebml_read_sint (MatroskaDemuxContext *matroska,
583 ByteIOContext *pb = &matroska->ctx->pb;
584 int size, n = 1, negative = 0, res;
587 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
588 (res = ebml_read_element_length(matroska, &rlength)) < 0)
591 if (size < 1 || size > 8) {
592 offset_t pos = url_ftell(pb);
593 av_log(matroska->ctx, AV_LOG_ERROR,
594 "Invalid sint element size %d at position %"PRId64" (0x%"PRIx64")\n",
596 return AVERROR_INVALIDDATA;
598 if ((*num = get_byte(pb)) & 0x80) {
604 *num = (*num << 8) | get_byte(pb);
608 *num = *num - (1LL << ((8 * size) - 1));
614 * Read the next element as a float.
615 * 0 is success, < 0 is failure.
619 ebml_read_float (MatroskaDemuxContext *matroska,
623 ByteIOContext *pb = &matroska->ctx->pb;
627 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
628 (res = ebml_read_element_length(matroska, &rlength)) < 0)
633 *num= av_int2flt(get_be32(pb));
635 *num= av_int2dbl(get_be64(pb));
637 offset_t pos = url_ftell(pb);
638 av_log(matroska->ctx, AV_LOG_ERROR,
639 "Invalid float element size %d at position %"PRIu64" (0x%"PRIx64")\n",
641 return AVERROR_INVALIDDATA;
648 * Read the next element as an ASCII string.
649 * 0 is success, < 0 is failure.
653 ebml_read_ascii (MatroskaDemuxContext *matroska,
657 ByteIOContext *pb = &matroska->ctx->pb;
661 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
662 (res = ebml_read_element_length(matroska, &rlength)) < 0)
666 /* ebml strings are usually not 0-terminated, so we allocate one
667 * byte more, read the string and NULL-terminate it ourselves. */
668 if (size < 0 || !(*str = av_malloc(size + 1))) {
669 av_log(matroska->ctx, AV_LOG_ERROR, "Memory allocation failed\n");
670 return AVERROR_NOMEM;
672 if (get_buffer(pb, (uint8_t *) *str, size) != size) {
673 offset_t pos = url_ftell(pb);
674 av_log(matroska->ctx, AV_LOG_ERROR,
675 "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", pos, pos);
684 * Read the next element as a UTF-8 string.
685 * 0 is success, < 0 is failure.
689 ebml_read_utf8 (MatroskaDemuxContext *matroska,
693 return ebml_read_ascii(matroska, id, str);
697 * Read the next element as a date (nanoseconds since 1/1/2000).
698 * 0 is success, < 0 is failure.
702 ebml_read_date (MatroskaDemuxContext *matroska,
706 return ebml_read_sint(matroska, id, date);
710 * Read the next element, but only the header. The contents
711 * are supposed to be sub-elements which can be read separately.
712 * 0 is success, < 0 is failure.
716 ebml_read_master (MatroskaDemuxContext *matroska,
719 ByteIOContext *pb = &matroska->ctx->pb;
721 MatroskaLevel *level;
724 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
725 (res = ebml_read_element_length(matroska, &length)) < 0)
728 /* protect... (Heaven forbids that the '>' is true) */
729 if (matroska->num_levels >= EBML_MAX_DEPTH) {
730 av_log(matroska->ctx, AV_LOG_ERROR,
731 "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
732 return AVERROR_NOTSUPP;
736 level = &matroska->levels[matroska->num_levels++];
737 level->start = url_ftell(pb);
738 level->length = length;
744 * Read the next element as binary data.
745 * 0 is success, < 0 is failure.
749 ebml_read_binary (MatroskaDemuxContext *matroska,
754 ByteIOContext *pb = &matroska->ctx->pb;
758 if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
759 (res = ebml_read_element_length(matroska, &rlength)) < 0)
763 if (!(*binary = av_malloc(*size))) {
764 av_log(matroska->ctx, AV_LOG_ERROR,
765 "Memory allocation error\n");
766 return AVERROR_NOMEM;
769 if (get_buffer(pb, *binary, *size) != *size) {
770 offset_t pos = url_ftell(pb);
771 av_log(matroska->ctx, AV_LOG_ERROR,
772 "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", pos, pos);
780 * Read signed/unsigned "EBML" numbers.
781 * Return: number of bytes processed, < 0 on error.
782 * XXX: use ebml_read_num().
786 matroska_ebmlnum_uint (uint8_t *data,
790 int len_mask = 0x80, read = 1, n = 1, num_ffs = 0;
794 return AVERROR_INVALIDDATA;
797 while (read <= 8 && !(total & len_mask)) {
802 return AVERROR_INVALIDDATA;
804 if ((total &= (len_mask - 1)) == len_mask - 1)
807 return AVERROR_INVALIDDATA;
811 total = (total << 8) | data[n];
824 * Same as above, but signed.
828 matroska_ebmlnum_sint (uint8_t *data,
835 /* read as unsigned number first */
836 if ((res = matroska_ebmlnum_uint(data, size, &unum)) < 0)
839 /* make signed (weird way) */
840 if (unum == (uint64_t)-1)
843 *num = unum - ((1LL << ((7 * res) - 1)) - 1);
849 * Read an EBML header.
850 * 0 is success, < 0 is failure.
854 ebml_read_header (MatroskaDemuxContext *matroska,
859 int level_up, res = 0;
867 if (!(id = ebml_peek_id(matroska, &level_up)) ||
868 level_up != 0 || id != EBML_ID_HEADER) {
869 av_log(matroska->ctx, AV_LOG_ERROR,
870 "This is not an EBML file (id=0x%x/0x%x)\n", id, EBML_ID_HEADER);
871 return AVERROR_INVALIDDATA;
873 if ((res = ebml_read_master(matroska, &id)) < 0)
877 if (!(id = ebml_peek_id(matroska, &level_up)))
885 /* is our read version uptodate? */
886 case EBML_ID_EBMLREADVERSION: {
889 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
891 if (num > EBML_VERSION) {
892 av_log(matroska->ctx, AV_LOG_ERROR,
893 "EBML version %"PRIu64" (> %d) is not supported\n",
895 return AVERROR_INVALIDDATA;
900 /* we only handle 8 byte lengths at max */
901 case EBML_ID_EBMLMAXSIZELENGTH: {
904 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
906 if (num > sizeof(uint64_t)) {
907 av_log(matroska->ctx, AV_LOG_ERROR,
908 "Integers of size %"PRIu64" (> %zd) not supported\n",
909 num, sizeof(uint64_t));
910 return AVERROR_INVALIDDATA;
915 /* we handle 4 byte IDs at max */
916 case EBML_ID_EBMLMAXIDLENGTH: {
919 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
921 if (num > sizeof(uint32_t)) {
922 av_log(matroska->ctx, AV_LOG_ERROR,
923 "IDs of size %"PRIu64" (> %zu) not supported\n",
924 num, sizeof(uint32_t));
925 return AVERROR_INVALIDDATA;
930 case EBML_ID_DOCTYPE: {
933 if ((res = ebml_read_ascii(matroska, &id, &text)) < 0)
944 case EBML_ID_DOCTYPEREADVERSION: {
947 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
955 av_log(matroska->ctx, AV_LOG_INFO,
956 "Unknown data type 0x%x in EBML header", id);
960 /* we ignore these two, as they don't tell us anything we
962 case EBML_ID_EBMLVERSION:
963 case EBML_ID_DOCTYPEVERSION:
964 res = ebml_read_skip (matroska);
973 * Put one packet in an application-supplied AVPacket struct.
974 * Returns 0 on success or -1 on failure.
978 matroska_deliver_packet (MatroskaDemuxContext *matroska,
981 if (matroska->num_packets > 0) {
982 memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
983 av_free(matroska->packets[0]);
984 if (matroska->num_packets > 1) {
985 memmove(&matroska->packets[0], &matroska->packets[1],
986 (matroska->num_packets - 1) * sizeof(AVPacket *));
988 av_realloc(matroska->packets, (matroska->num_packets - 1) *
991 av_free(matroska->packets);
992 matroska->packets = NULL;
994 matroska->num_packets--;
1002 * Put a packet into our internal queue. Will be delivered to the
1003 * user/application during the next get_packet() call.
1007 matroska_queue_packet (MatroskaDemuxContext *matroska,
1011 av_realloc(matroska->packets, (matroska->num_packets + 1) *
1012 sizeof(AVPacket *));
1013 matroska->packets[matroska->num_packets] = pkt;
1014 matroska->num_packets++;
1022 matroska_probe (AVProbeData *p)
1025 int len_mask = 0x80, size = 1, n = 1;
1026 uint8_t probe_data[] = { 'm', 'a', 't', 'r', 'o', 's', 'k', 'a' };
1028 if (p->buf_size < 5)
1032 if ((p->buf[0] << 24 | p->buf[1] << 16 |
1033 p->buf[2] << 8 | p->buf[3]) != EBML_ID_HEADER)
1036 /* length of header */
1038 while (size <= 8 && !(total & len_mask)) {
1044 total &= (len_mask - 1);
1046 total = (total << 8) | p->buf[4 + n++];
1048 /* does the probe data contain the whole header? */
1049 if (p->buf_size < 4 + size + total)
1052 /* the header must contain the document type 'matroska'. For now,
1053 * we don't parse the whole header but simply check for the
1054 * availability of that array of characters inside the header.
1055 * Not fully fool-proof, but good enough. */
1056 for (n = 4 + size; n < 4 + size + total - sizeof(probe_data); n++)
1057 if (!memcmp (&p->buf[n], probe_data, sizeof(probe_data)))
1058 return AVPROBE_SCORE_MAX;
1064 * From here on, it's all XML-style DTD stuff... Needs no comments.
1068 matroska_parse_info (MatroskaDemuxContext *matroska)
1073 av_log(matroska->ctx, AV_LOG_DEBUG, "Parsing info...\n");
1076 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1079 } else if (matroska->level_up) {
1080 matroska->level_up--;
1085 /* cluster timecode */
1086 case MATROSKA_ID_TIMECODESCALE: {
1088 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1090 matroska->time_scale = num;
1094 case MATROSKA_ID_DURATION: {
1096 if ((res = ebml_read_float(matroska, &id, &num)) < 0)
1098 matroska->ctx->duration = num * matroska->time_scale * 1000 / AV_TIME_BASE;
1102 case MATROSKA_ID_TITLE: {
1104 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1106 strncpy(matroska->ctx->title, text,
1107 sizeof(matroska->ctx->title)-1);
1112 case MATROSKA_ID_WRITINGAPP: {
1114 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1116 matroska->writing_app = text;
1120 case MATROSKA_ID_MUXINGAPP: {
1122 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1124 matroska->muxing_app = text;
1128 case MATROSKA_ID_DATEUTC: {
1130 if ((res = ebml_read_date(matroska, &id, &time)) < 0)
1132 matroska->created = time;
1137 av_log(matroska->ctx, AV_LOG_INFO,
1138 "Unknown entry 0x%x in info header\n", id);
1142 res = ebml_read_skip(matroska);
1146 if (matroska->level_up) {
1147 matroska->level_up--;
1156 matroska_add_stream (MatroskaDemuxContext *matroska)
1160 MatroskaTrack *track;
1162 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing track, adding stream..,\n");
1164 /* Allocate a generic track. As soon as we know its type we'll realloc. */
1165 track = av_mallocz(sizeof(MatroskaTrack));
1166 matroska->num_tracks++;
1168 /* start with the master */
1169 if ((res = ebml_read_master(matroska, &id)) < 0)
1172 /* try reading the trackentry headers */
1174 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1177 } else if (matroska->level_up > 0) {
1178 matroska->level_up--;
1183 /* track number (unique stream ID) */
1184 case MATROSKA_ID_TRACKNUMBER: {
1186 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1192 /* track UID (unique identifier) */
1193 case MATROSKA_ID_TRACKUID: {
1195 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1201 /* track type (video, audio, combined, subtitle, etc.) */
1202 case MATROSKA_ID_TRACKTYPE: {
1204 if (track->type != 0) {
1205 av_log(matroska->ctx, AV_LOG_INFO,
1206 "More than one tracktype in an entry - skip\n");
1209 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1213 /* ok, so we're actually going to reallocate this thing */
1214 switch (track->type) {
1215 case MATROSKA_TRACK_TYPE_VIDEO:
1216 track = (MatroskaTrack *)
1217 av_realloc(track, sizeof(MatroskaVideoTrack));
1219 case MATROSKA_TRACK_TYPE_AUDIO:
1220 track = (MatroskaTrack *)
1221 av_realloc(track, sizeof(MatroskaAudioTrack));
1222 ((MatroskaAudioTrack *)track)->channels = 1;
1223 ((MatroskaAudioTrack *)track)->samplerate = 8000;
1225 case MATROSKA_TRACK_TYPE_SUBTITLE:
1226 track = (MatroskaTrack *)
1227 av_realloc(track, sizeof(MatroskaSubtitleTrack));
1229 case MATROSKA_TRACK_TYPE_COMPLEX:
1230 case MATROSKA_TRACK_TYPE_LOGO:
1231 case MATROSKA_TRACK_TYPE_CONTROL:
1233 av_log(matroska->ctx, AV_LOG_INFO,
1234 "Unknown or unsupported track type 0x%x\n",
1239 matroska->tracks[matroska->num_tracks - 1] = track;
1243 /* tracktype specific stuff for video */
1244 case MATROSKA_ID_TRACKVIDEO: {
1245 MatroskaVideoTrack *videotrack;
1246 if (track->type != MATROSKA_TRACK_TYPE_VIDEO) {
1247 av_log(matroska->ctx, AV_LOG_INFO,
1248 "video data in non-video track - ignoring\n");
1249 res = AVERROR_INVALIDDATA;
1251 } else if ((res = ebml_read_master(matroska, &id)) < 0)
1253 videotrack = (MatroskaVideoTrack *)track;
1256 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1259 } else if (matroska->level_up > 0) {
1260 matroska->level_up--;
1265 /* fixme, this should be one-up, but I get it here */
1266 case MATROSKA_ID_TRACKDEFAULTDURATION: {
1268 if ((res = ebml_read_uint (matroska, &id,
1271 track->default_duration = num;
1275 /* video framerate */
1276 case MATROSKA_ID_VIDEOFRAMERATE: {
1278 if ((res = ebml_read_float(matroska, &id,
1281 track->default_duration = 1000000000 * (1. / num);
1285 /* width of the size to display the video at */
1286 case MATROSKA_ID_VIDEODISPLAYWIDTH: {
1288 if ((res = ebml_read_uint(matroska, &id,
1291 videotrack->display_width = num;
1295 /* height of the size to display the video at */
1296 case MATROSKA_ID_VIDEODISPLAYHEIGHT: {
1298 if ((res = ebml_read_uint(matroska, &id,
1301 videotrack->display_height = num;
1305 /* width of the video in the file */
1306 case MATROSKA_ID_VIDEOPIXELWIDTH: {
1308 if ((res = ebml_read_uint(matroska, &id,
1311 videotrack->pixel_width = num;
1315 /* height of the video in the file */
1316 case MATROSKA_ID_VIDEOPIXELHEIGHT: {
1318 if ((res = ebml_read_uint(matroska, &id,
1321 videotrack->pixel_height = num;
1325 /* whether the video is interlaced */
1326 case MATROSKA_ID_VIDEOFLAGINTERLACED: {
1328 if ((res = ebml_read_uint(matroska, &id,
1333 MATROSKA_VIDEOTRACK_INTERLACED;
1336 ~MATROSKA_VIDEOTRACK_INTERLACED;
1340 /* stereo mode (whether the video has two streams,
1341 * where one is for the left eye and the other for
1342 * the right eye, which creates a 3D-like
1344 case MATROSKA_ID_VIDEOSTEREOMODE: {
1346 if ((res = ebml_read_uint(matroska, &id,
1349 if (num != MATROSKA_EYE_MODE_MONO &&
1350 num != MATROSKA_EYE_MODE_LEFT &&
1351 num != MATROSKA_EYE_MODE_RIGHT &&
1352 num != MATROSKA_EYE_MODE_BOTH) {
1353 av_log(matroska->ctx, AV_LOG_INFO,
1354 "Ignoring unknown eye mode 0x%x\n",
1358 videotrack->eye_mode = num;
1362 /* aspect ratio behaviour */
1363 case MATROSKA_ID_VIDEOASPECTRATIO: {
1365 if ((res = ebml_read_uint(matroska, &id,
1368 if (num != MATROSKA_ASPECT_RATIO_MODE_FREE &&
1369 num != MATROSKA_ASPECT_RATIO_MODE_KEEP &&
1370 num != MATROSKA_ASPECT_RATIO_MODE_FIXED) {
1371 av_log(matroska->ctx, AV_LOG_INFO,
1372 "Ignoring unknown aspect ratio 0x%x\n",
1376 videotrack->ar_mode = num;
1380 /* colourspace (only matters for raw video)
1382 case MATROSKA_ID_VIDEOCOLOURSPACE: {
1384 if ((res = ebml_read_uint(matroska, &id,
1387 videotrack->fourcc = num;
1392 av_log(matroska->ctx, AV_LOG_INFO,
1393 "Unknown video track header entry "
1394 "0x%x - ignoring\n", id);
1398 res = ebml_read_skip(matroska);
1402 if (matroska->level_up) {
1403 matroska->level_up--;
1410 /* tracktype specific stuff for audio */
1411 case MATROSKA_ID_TRACKAUDIO: {
1412 MatroskaAudioTrack *audiotrack;
1413 if (track->type != MATROSKA_TRACK_TYPE_AUDIO) {
1414 av_log(matroska->ctx, AV_LOG_INFO,
1415 "audio data in non-audio track - ignoring\n");
1416 res = AVERROR_INVALIDDATA;
1418 } else if ((res = ebml_read_master(matroska, &id)) < 0)
1420 audiotrack = (MatroskaAudioTrack *)track;
1423 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1426 } else if (matroska->level_up > 0) {
1427 matroska->level_up--;
1433 case MATROSKA_ID_AUDIOSAMPLINGFREQ: {
1435 if ((res = ebml_read_float(matroska, &id,
1438 audiotrack->internal_samplerate =
1439 audiotrack->samplerate = num;
1443 case MATROSKA_ID_AUDIOOUTSAMPLINGFREQ: {
1445 if ((res = ebml_read_float(matroska, &id,
1448 audiotrack->samplerate = num;
1453 case MATROSKA_ID_AUDIOBITDEPTH: {
1455 if ((res = ebml_read_uint(matroska, &id,
1458 audiotrack->bitdepth = num;
1463 case MATROSKA_ID_AUDIOCHANNELS: {
1465 if ((res = ebml_read_uint(matroska, &id,
1468 audiotrack->channels = num;
1473 av_log(matroska->ctx, AV_LOG_INFO,
1474 "Unknown audio track header entry "
1475 "0x%x - ignoring\n", id);
1479 res = ebml_read_skip(matroska);
1483 if (matroska->level_up) {
1484 matroska->level_up--;
1491 /* codec identifier */
1492 case MATROSKA_ID_CODECID: {
1494 if ((res = ebml_read_ascii(matroska, &id, &text)) < 0)
1496 track->codec_id = text;
1500 /* codec private data */
1501 case MATROSKA_ID_CODECPRIVATE: {
1504 if ((res = ebml_read_binary(matroska, &id, &data, &size) < 0))
1506 track->codec_priv = data;
1507 track->codec_priv_size = size;
1511 /* name of the codec */
1512 case MATROSKA_ID_CODECNAME: {
1514 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1516 track->codec_name = text;
1520 /* name of this track */
1521 case MATROSKA_ID_TRACKNAME: {
1523 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1529 /* language (matters for audio/subtitles, mostly) */
1530 case MATROSKA_ID_TRACKLANGUAGE: {
1532 if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
1534 track->language = text;
1538 /* whether this is actually used */
1539 case MATROSKA_ID_TRACKFLAGENABLED: {
1541 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1544 track->flags |= MATROSKA_TRACK_ENABLED;
1546 track->flags &= ~MATROSKA_TRACK_ENABLED;
1550 /* whether it's the default for this track type */
1551 case MATROSKA_ID_TRACKFLAGDEFAULT: {
1553 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1556 track->flags |= MATROSKA_TRACK_DEFAULT;
1558 track->flags &= ~MATROSKA_TRACK_DEFAULT;
1562 /* lacing (like MPEG, where blocks don't end/start on frame
1564 case MATROSKA_ID_TRACKFLAGLACING: {
1566 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1569 track->flags |= MATROSKA_TRACK_LACING;
1571 track->flags &= ~MATROSKA_TRACK_LACING;
1575 /* default length (in time) of one data block in this track */
1576 case MATROSKA_ID_TRACKDEFAULTDURATION: {
1578 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
1580 track->default_duration = num;
1585 av_log(matroska->ctx, AV_LOG_INFO,
1586 "Unknown track header entry 0x%x - ignoring\n", id);
1590 /* we ignore these because they're nothing useful. */
1591 case MATROSKA_ID_CODECINFOURL:
1592 case MATROSKA_ID_CODECDOWNLOADURL:
1593 case MATROSKA_ID_TRACKMINCACHE:
1594 case MATROSKA_ID_TRACKMAXCACHE:
1595 res = ebml_read_skip(matroska);
1599 if (matroska->level_up) {
1600 matroska->level_up--;
1609 matroska_parse_tracks (MatroskaDemuxContext *matroska)
1614 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing tracks...\n");
1617 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1620 } else if (matroska->level_up) {
1621 matroska->level_up--;
1626 /* one track within the "all-tracks" header */
1627 case MATROSKA_ID_TRACKENTRY:
1628 res = matroska_add_stream(matroska);
1632 av_log(matroska->ctx, AV_LOG_INFO,
1633 "Unknown entry 0x%x in track header\n", id);
1637 res = ebml_read_skip(matroska);
1641 if (matroska->level_up) {
1642 matroska->level_up--;
1651 matroska_parse_index (MatroskaDemuxContext *matroska)
1655 MatroskaDemuxIndex idx;
1657 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing index...\n");
1660 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1663 } else if (matroska->level_up) {
1664 matroska->level_up--;
1669 /* one single index entry ('point') */
1670 case MATROSKA_ID_POINTENTRY:
1671 if ((res = ebml_read_master(matroska, &id)) < 0)
1674 /* in the end, we hope to fill one entry with a
1675 * timestamp, a file position and a tracknum */
1676 idx.pos = (uint64_t) -1;
1677 idx.time = (uint64_t) -1;
1678 idx.track = (uint16_t) -1;
1681 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1684 } else if (matroska->level_up) {
1685 matroska->level_up--;
1690 /* one single index entry ('point') */
1691 case MATROSKA_ID_CUETIME: {
1693 if ((res = ebml_read_uint(matroska, &id,
1696 idx.time = time * matroska->time_scale;
1700 /* position in the file + track to which it
1702 case MATROSKA_ID_CUETRACKPOSITION:
1703 if ((res = ebml_read_master(matroska, &id)) < 0)
1707 if (!(id = ebml_peek_id (matroska,
1708 &matroska->level_up))) {
1711 } else if (matroska->level_up) {
1712 matroska->level_up--;
1718 case MATROSKA_ID_CUETRACK: {
1720 if ((res = ebml_read_uint(matroska,
1727 /* position in file */
1728 case MATROSKA_ID_CUECLUSTERPOSITION: {
1730 if ((res = ebml_read_uint(matroska,
1738 av_log(matroska->ctx, AV_LOG_INFO,
1739 "Unknown entry 0x%x in "
1740 "CuesTrackPositions\n", id);
1744 res = ebml_read_skip(matroska);
1748 if (matroska->level_up) {
1749 matroska->level_up--;
1757 av_log(matroska->ctx, AV_LOG_INFO,
1758 "Unknown entry 0x%x in cuespoint "
1763 res = ebml_read_skip(matroska);
1767 if (matroska->level_up) {
1768 matroska->level_up--;
1773 /* so let's see if we got what we wanted */
1774 if (idx.pos != (uint64_t) -1 &&
1775 idx.time != (uint64_t) -1 &&
1776 idx.track != (uint16_t) -1) {
1777 if (matroska->num_indexes % 32 == 0) {
1778 /* re-allocate bigger index */
1780 av_realloc(matroska->index,
1781 (matroska->num_indexes + 32) *
1782 sizeof(MatroskaDemuxIndex));
1784 matroska->index[matroska->num_indexes] = idx;
1785 matroska->num_indexes++;
1790 av_log(matroska->ctx, AV_LOG_INFO,
1791 "Unknown entry 0x%x in cues header\n", id);
1795 res = ebml_read_skip(matroska);
1799 if (matroska->level_up) {
1800 matroska->level_up--;
1809 matroska_parse_metadata (MatroskaDemuxContext *matroska)
1815 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1818 } else if (matroska->level_up) {
1819 matroska->level_up--;
1824 /* Hm, this is unsupported... */
1826 av_log(matroska->ctx, AV_LOG_INFO,
1827 "Unknown entry 0x%x in metadata header\n", id);
1831 res = ebml_read_skip(matroska);
1835 if (matroska->level_up) {
1836 matroska->level_up--;
1845 matroska_parse_seekhead (MatroskaDemuxContext *matroska)
1850 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing seekhead...\n");
1853 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1856 } else if (matroska->level_up) {
1857 matroska->level_up--;
1862 case MATROSKA_ID_SEEKENTRY: {
1863 uint32_t seek_id = 0, peek_id_cache = 0;
1864 uint64_t seek_pos = (uint64_t) -1, t;
1866 if ((res = ebml_read_master(matroska, &id)) < 0)
1870 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
1873 } else if (matroska->level_up) {
1874 matroska->level_up--;
1879 case MATROSKA_ID_SEEKID:
1880 res = ebml_read_uint(matroska, &id, &t);
1884 case MATROSKA_ID_SEEKPOSITION:
1885 res = ebml_read_uint(matroska, &id, &seek_pos);
1889 av_log(matroska->ctx, AV_LOG_INFO,
1890 "Unknown seekhead ID 0x%x\n", id);
1894 res = ebml_read_skip(matroska);
1898 if (matroska->level_up) {
1899 matroska->level_up--;
1904 if (!seek_id || seek_pos == (uint64_t) -1) {
1905 av_log(matroska->ctx, AV_LOG_INFO,
1906 "Incomplete seekhead entry (0x%x/%"PRIu64")\n",
1912 case MATROSKA_ID_CUES:
1913 case MATROSKA_ID_TAGS: {
1914 uint32_t level_up = matroska->level_up;
1915 offset_t before_pos;
1917 MatroskaLevel level;
1919 /* remember the peeked ID and the current position */
1920 peek_id_cache = matroska->peek_id;
1921 before_pos = url_ftell(&matroska->ctx->pb);
1924 if ((res = ebml_read_seek(matroska, seek_pos +
1925 matroska->segment_start)) < 0)
1928 /* we don't want to lose our seekhead level, so we add
1929 * a dummy. This is a crude hack. */
1930 if (matroska->num_levels == EBML_MAX_DEPTH) {
1931 av_log(matroska->ctx, AV_LOG_INFO,
1932 "Max EBML element depth (%d) reached, "
1933 "cannot parse further.\n", EBML_MAX_DEPTH);
1934 return AVERROR_UNKNOWN;
1938 level.length = (uint64_t)-1;
1939 matroska->levels[matroska->num_levels] = level;
1940 matroska->num_levels++;
1943 if (!(id = ebml_peek_id (matroska,
1944 &matroska->level_up)))
1946 if (id != seek_id) {
1947 av_log(matroska->ctx, AV_LOG_INFO,
1948 "We looked for ID=0x%x but got "
1949 "ID=0x%x (pos=%"PRIu64")",
1950 seek_id, id, seek_pos +
1951 matroska->segment_start);
1955 /* read master + parse */
1956 if ((res = ebml_read_master(matroska, &id)) < 0)
1959 case MATROSKA_ID_CUES:
1960 if (!(res = matroska_parse_index(matroska)) ||
1961 url_feof(&matroska->ctx->pb)) {
1962 matroska->index_parsed = 1;
1966 case MATROSKA_ID_TAGS:
1967 if (!(res = matroska_parse_metadata(matroska)) ||
1968 url_feof(&matroska->ctx->pb)) {
1969 matroska->metadata_parsed = 1;
1976 /* remove dummy level */
1977 while (matroska->num_levels) {
1978 matroska->num_levels--;
1980 matroska->levels[matroska->num_levels].length;
1981 if (length == (uint64_t)-1)
1986 if ((res = ebml_read_seek(matroska, before_pos)) < 0)
1988 matroska->peek_id = peek_id_cache;
1989 matroska->level_up = level_up;
1994 av_log(matroska->ctx, AV_LOG_INFO,
1995 "Ignoring seekhead entry for ID=0x%x\n",
2004 av_log(matroska->ctx, AV_LOG_INFO,
2005 "Unknown seekhead ID 0x%x\n", id);
2009 res = ebml_read_skip(matroska);
2013 if (matroska->level_up) {
2014 matroska->level_up--;
2022 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(*x))
2025 matroska_aac_profile (char *codec_id)
2027 static const char *aac_profiles[] = {
2032 for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++)
2033 if (strstr(codec_id, aac_profiles[profile]))
2039 matroska_aac_sri (int samplerate)
2041 static const int aac_sample_rates[] = {
2042 96000, 88200, 64000, 48000, 44100, 32000,
2043 24000, 22050, 16000, 12000, 11025, 8000,
2047 for (sri=0; sri<ARRAY_SIZE(aac_sample_rates); sri++)
2048 if (aac_sample_rates[sri] == samplerate)
2054 matroska_read_header (AVFormatContext *s,
2055 AVFormatParameters *ap)
2057 MatroskaDemuxContext *matroska = s->priv_data;
2059 int version, last_level, res = 0;
2064 /* First read the EBML header. */
2066 if ((res = ebml_read_header(matroska, &doctype, &version)) < 0)
2068 if ((doctype == NULL) || strcmp(doctype, "matroska")) {
2069 av_log(matroska->ctx, AV_LOG_ERROR,
2070 "Wrong EBML doctype ('%s' != 'matroska').\n",
2071 doctype ? doctype : "(none)");
2074 return AVERROR_NOFMT;
2078 av_log(matroska->ctx, AV_LOG_ERROR,
2079 "Matroska demuxer version 1 too old for file version %d\n",
2081 return AVERROR_NOFMT;
2084 /* The next thing is a segment. */
2086 if (!(id = ebml_peek_id(matroska, &last_level)))
2088 if (id == MATROSKA_ID_SEGMENT)
2092 av_log(matroska->ctx, AV_LOG_INFO,
2093 "Expected a Segment ID (0x%x), but received 0x%x!\n",
2094 MATROSKA_ID_SEGMENT, id);
2095 if ((res = ebml_read_skip(matroska)) < 0)
2099 /* We now have a Matroska segment.
2100 * Seeks are from the beginning of the segment,
2101 * after the segment ID/length. */
2102 if ((res = ebml_read_master(matroska, &id)) < 0)
2104 matroska->segment_start = url_ftell(&s->pb);
2106 matroska->time_scale = 1000000;
2107 /* we've found our segment, start reading the different contents in here */
2109 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
2112 } else if (matroska->level_up) {
2113 matroska->level_up--;
2119 case MATROSKA_ID_INFO: {
2120 if ((res = ebml_read_master(matroska, &id)) < 0)
2122 res = matroska_parse_info(matroska);
2126 /* track info headers */
2127 case MATROSKA_ID_TRACKS: {
2128 if ((res = ebml_read_master(matroska, &id)) < 0)
2130 res = matroska_parse_tracks(matroska);
2135 case MATROSKA_ID_CUES: {
2136 if (!matroska->index_parsed) {
2137 if ((res = ebml_read_master(matroska, &id)) < 0)
2139 res = matroska_parse_index(matroska);
2141 res = ebml_read_skip(matroska);
2146 case MATROSKA_ID_TAGS: {
2147 if (!matroska->metadata_parsed) {
2148 if ((res = ebml_read_master(matroska, &id)) < 0)
2150 res = matroska_parse_metadata(matroska);
2152 res = ebml_read_skip(matroska);
2156 /* file index (if seekable, seek to Cues/Tags to parse it) */
2157 case MATROSKA_ID_SEEKHEAD: {
2158 if ((res = ebml_read_master(matroska, &id)) < 0)
2160 res = matroska_parse_seekhead(matroska);
2164 case MATROSKA_ID_CLUSTER: {
2165 /* Do not read the master - this will be done in the next
2166 * call to matroska_read_packet. */
2172 av_log(matroska->ctx, AV_LOG_INFO,
2173 "Unknown matroska file header ID 0x%x\n", id);
2177 res = ebml_read_skip(matroska);
2181 if (matroska->level_up) {
2182 matroska->level_up--;
2187 /* Have we found a cluster? */
2188 if (ebml_peek_id(matroska, NULL) == MATROSKA_ID_CLUSTER) {
2190 MatroskaTrack *track;
2193 for (i = 0; i < matroska->num_tracks; i++) {
2194 enum CodecID codec_id = CODEC_ID_NONE;
2195 uint8_t *extradata = NULL;
2196 int extradata_size = 0;
2197 track = matroska->tracks[i];
2199 /* libavformat does not really support subtitles.
2200 * Also apply some sanity checks. */
2201 if ((track->type == MATROSKA_TRACK_TYPE_SUBTITLE) ||
2202 (track->codec_id == NULL))
2205 for(j=0; codec_tags[j].str; j++){
2206 if(!strncmp(codec_tags[j].str, track->codec_id,
2207 strlen(codec_tags[j].str))){
2208 codec_id= codec_tags[j].id;
2213 /* Set the FourCC from the CodecID. */
2214 /* This is the MS compatibility mode which stores a
2215 * BITMAPINFOHEADER in the CodecPrivate. */
2216 if (!strcmp(track->codec_id,
2217 MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC) &&
2218 (track->codec_priv_size >= 40) &&
2219 (track->codec_priv != NULL)) {
2222 /* Offset of biCompression. Stored in LE. */
2223 p = (unsigned char *)track->codec_priv + 16;
2224 ((MatroskaVideoTrack *)track)->fourcc = (p[3] << 24) |
2225 (p[2] << 16) | (p[1] << 8) | p[0];
2226 codec_id = codec_get_bmp_id(((MatroskaVideoTrack *)track)->fourcc);
2230 /* This is the MS compatibility mode which stores a
2231 * WAVEFORMATEX in the CodecPrivate. */
2232 else if (!strcmp(track->codec_id,
2233 MATROSKA_CODEC_ID_AUDIO_ACM) &&
2234 (track->codec_priv_size >= 18) &&
2235 (track->codec_priv != NULL)) {
2239 /* Offset of wFormatTag. Stored in LE. */
2240 p = (unsigned char *)track->codec_priv;
2241 tag = (p[1] << 8) | p[0];
2242 codec_id = codec_get_wav_id(tag);
2246 else if (codec_id == CODEC_ID_AAC && !track->codec_priv_size) {
2247 MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
2248 int profile = matroska_aac_profile(track->codec_id);
2249 int sri = matroska_aac_sri(audiotrack->internal_samplerate);
2250 extradata = av_malloc(5);
2251 if (extradata == NULL)
2252 return AVERROR_NOMEM;
2253 extradata[0] = (profile << 3) | ((sri&0x0E) >> 1);
2254 extradata[1] = ((sri&0x01) << 7) | (audiotrack->channels<<3);
2255 if (strstr(track->codec_id, "SBR")) {
2256 sri = matroska_aac_sri(audiotrack->samplerate);
2257 extradata[2] = 0x56;
2258 extradata[3] = 0xE5;
2259 extradata[4] = 0x80 | (sri<<3);
2266 if (codec_id == CODEC_ID_NONE) {
2267 av_log(matroska->ctx, AV_LOG_INFO,
2268 "Unknown/unsupported CodecID %s.\n",
2272 track->stream_index = matroska->num_streams;
2274 matroska->num_streams++;
2275 st = av_new_stream(s, track->stream_index);
2277 return AVERROR_NOMEM;
2278 av_set_pts_info(st, 64, matroska->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
2280 st->codec->codec_id = codec_id;
2282 if (track->default_duration)
2283 av_reduce(&st->codec->time_base.num, &st->codec->time_base.den,
2284 track->default_duration, 1000000000, 30000);
2287 st->codec->extradata = extradata;
2288 st->codec->extradata_size = extradata_size;
2289 } else if(track->codec_priv && track->codec_priv_size > 0){
2290 st->codec->extradata = av_malloc(track->codec_priv_size);
2291 if(st->codec->extradata == NULL)
2292 return AVERROR_NOMEM;
2293 st->codec->extradata_size = track->codec_priv_size;
2294 memcpy(st->codec->extradata, track->codec_priv,
2295 track->codec_priv_size);
2298 if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
2299 MatroskaVideoTrack *videotrack = (MatroskaVideoTrack *)track;
2301 st->codec->codec_type = CODEC_TYPE_VIDEO;
2302 st->codec->codec_tag = videotrack->fourcc;
2303 st->codec->width = videotrack->pixel_width;
2304 st->codec->height = videotrack->pixel_height;
2305 if (videotrack->display_width == 0)
2306 videotrack->display_width= videotrack->pixel_width;
2307 if (videotrack->display_height == 0)
2308 videotrack->display_height= videotrack->pixel_height;
2309 av_reduce(&st->codec->sample_aspect_ratio.num,
2310 &st->codec->sample_aspect_ratio.den,
2311 st->codec->height * videotrack->display_width,
2312 st->codec-> width * videotrack->display_height,
2314 } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
2315 MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
2317 st->codec->codec_type = CODEC_TYPE_AUDIO;
2318 st->codec->sample_rate = audiotrack->samplerate;
2319 st->codec->channels = audiotrack->channels;
2320 } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
2321 st->codec->codec_type = CODEC_TYPE_SUBTITLE;
2324 /* What do we do with private data? E.g. for Vorbis. */
2333 matroska_find_track_by_num (MatroskaDemuxContext *matroska,
2338 for (i = 0; i < matroska->num_tracks; i++)
2339 if (matroska->tracks[i]->num == num)
2346 matroska_parse_blockgroup (MatroskaDemuxContext *matroska,
2347 uint64_t cluster_time)
2351 AVPacket *pkt = NULL;
2352 int is_keyframe = PKT_FLAG_KEY, last_num_packets = matroska->num_packets;
2353 uint64_t duration = AV_NOPTS_VALUE;
2356 av_log(matroska->ctx, AV_LOG_DEBUG, "parsing blockgroup...\n");
2359 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
2362 } else if (matroska->level_up) {
2363 matroska->level_up--;
2368 /* one block inside the group. Note, block parsing is one
2369 * of the harder things, so this code is a bit complicated.
2370 * See http://www.matroska.org/ for documentation. */
2371 case MATROSKA_ID_BLOCK: {
2372 uint8_t *data, *origdata;
2375 uint32_t *lace_size = NULL;
2376 int n, flags, laces = 0;
2378 int64_t pos= url_ftell(&matroska->ctx->pb);
2380 if ((res = ebml_read_binary(matroska, &id, &data, &size)) < 0)
2384 /* first byte(s): tracknum */
2385 if ((n = matroska_ebmlnum_uint(data, size, &num)) < 0) {
2386 av_log(matroska->ctx, AV_LOG_ERROR,
2387 "EBML block data error\n");
2394 /* fetch track from num */
2395 track = matroska_find_track_by_num(matroska, num);
2396 if (size <= 3 || track < 0 || track >= matroska->num_tracks) {
2397 av_log(matroska->ctx, AV_LOG_INFO,
2398 "Invalid stream %d or size %u\n", track, size);
2402 if(matroska->ctx->streams[ matroska->tracks[track]->stream_index ]->discard >= AVDISCARD_ALL){
2407 /* block_time (relative to cluster time) */
2408 block_time = (data[0] << 8) | data[1];
2414 switch ((flags & 0x06) >> 1) {
2415 case 0x0: /* no lacing */
2417 lace_size = av_mallocz(sizeof(int));
2418 lace_size[0] = size;
2421 case 0x1: /* xiph lacing */
2422 case 0x2: /* fixed-size lacing */
2423 case 0x3: /* EBML lacing */
2428 laces = (*data) + 1;
2431 lace_size = av_mallocz(laces * sizeof(int));
2433 switch ((flags & 0x06) >> 1) {
2434 case 0x1: /* xiph lacing */ {
2437 for (n = 0; res == 0 && n < laces - 1; n++) {
2444 lace_size[n] += temp;
2450 total += lace_size[n];
2452 lace_size[n] = size - total;
2456 case 0x2: /* fixed-size lacing */
2457 for (n = 0; n < laces; n++)
2458 lace_size[n] = size / laces;
2461 case 0x3: /* EBML lacing */ {
2463 n = matroska_ebmlnum_uint(data, size, &num);
2465 av_log(matroska->ctx, AV_LOG_INFO,
2466 "EBML block data error\n");
2471 total = lace_size[0] = num;
2472 for (n = 1; res == 0 && n < laces - 1; n++) {
2475 r = matroska_ebmlnum_sint (data, size,
2478 av_log(matroska->ctx, AV_LOG_INFO,
2479 "EBML block data error\n");
2484 lace_size[n] = lace_size[n - 1] + snum;
2485 total += lace_size[n];
2487 lace_size[n] = size - total;
2495 for (n = 0; n < laces; n++) {
2496 uint64_t timecode = AV_NOPTS_VALUE;
2498 pkt = av_mallocz(sizeof(AVPacket));
2499 /* XXX: prevent data copy... */
2500 if (av_new_packet(pkt,lace_size[n]) < 0) {
2501 res = AVERROR_NOMEM;
2504 if (cluster_time != (uint64_t)-1 && n == 0) {
2505 if (cluster_time + block_time >= 0)
2506 timecode = cluster_time + block_time;
2508 /* FIXME: duration */
2510 memcpy(pkt->data, data, lace_size[n]);
2511 data += lace_size[n];
2513 pkt->flags = is_keyframe;
2515 matroska->tracks[track]->stream_index;
2517 pkt->pts = timecode;
2520 matroska_queue_packet(matroska, pkt);
2529 case MATROSKA_ID_BLOCKDURATION: {
2530 if ((res = ebml_read_uint(matroska, &id, &duration)) < 0)
2535 case MATROSKA_ID_BLOCKREFERENCE:
2536 /* We've found a reference, so not even the first frame in
2537 * the lace is a key frame. */
2539 if (last_num_packets != matroska->num_packets)
2540 matroska->packets[last_num_packets]->flags = 0;
2541 res = ebml_read_skip(matroska);
2545 av_log(matroska->ctx, AV_LOG_INFO,
2546 "Unknown entry 0x%x in blockgroup data\n", id);
2550 res = ebml_read_skip(matroska);
2554 if (matroska->level_up) {
2555 matroska->level_up--;
2562 if (duration != AV_NOPTS_VALUE)
2563 pkt->duration = duration;
2564 else if (track >= 0 && track < matroska->num_tracks)
2565 pkt->duration = matroska->tracks[track]->default_duration / matroska->time_scale;
2572 matroska_parse_cluster (MatroskaDemuxContext *matroska)
2576 uint64_t cluster_time = 0;
2578 av_log(matroska->ctx, AV_LOG_DEBUG,
2579 "parsing cluster at %"PRId64"\n", url_ftell(&matroska->ctx->pb));
2582 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
2585 } else if (matroska->level_up) {
2586 matroska->level_up--;
2591 /* cluster timecode */
2592 case MATROSKA_ID_CLUSTERTIMECODE: {
2594 if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
2600 /* a group of blocks inside a cluster */
2601 case MATROSKA_ID_BLOCKGROUP:
2602 if ((res = ebml_read_master(matroska, &id)) < 0)
2604 res = matroska_parse_blockgroup(matroska, cluster_time);
2608 av_log(matroska->ctx, AV_LOG_INFO,
2609 "Unknown entry 0x%x in cluster data\n", id);
2613 res = ebml_read_skip(matroska);
2617 if (matroska->level_up) {
2618 matroska->level_up--;
2627 matroska_read_packet (AVFormatContext *s,
2630 MatroskaDemuxContext *matroska = s->priv_data;
2634 /* Do we still have a packet queued? */
2635 if (matroska_deliver_packet(matroska, pkt) == 0)
2638 /* Have we already reached the end? */
2643 if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
2646 } else if (matroska->level_up) {
2647 matroska->level_up--;
2652 case MATROSKA_ID_CLUSTER:
2653 if ((res = ebml_read_master(matroska, &id)) < 0)
2655 if ((res = matroska_parse_cluster(matroska)) == 0)
2656 res = 1; /* Parsed one cluster, let's get out. */
2661 res = ebml_read_skip(matroska);
2665 if (matroska->level_up) {
2666 matroska->level_up--;
2674 return matroska_deliver_packet(matroska, pkt);
2678 matroska_read_close (AVFormatContext *s)
2680 MatroskaDemuxContext *matroska = s->priv_data;
2683 av_free(matroska->writing_app);
2684 av_free(matroska->muxing_app);
2685 av_free(matroska->index);
2687 if (matroska->packets != NULL) {
2688 for (n = 0; n < matroska->num_packets; n++) {
2689 av_free_packet(matroska->packets[n]);
2690 av_free(matroska->packets[n]);
2692 av_free(matroska->packets);
2695 for (n = 0; n < matroska->num_tracks; n++) {
2696 MatroskaTrack *track = matroska->tracks[n];
2697 av_free(track->codec_id);
2698 av_free(track->codec_name);
2699 av_free(track->codec_priv);
2700 av_free(track->name);
2701 av_free(track->language);
2709 AVInputFormat matroska_demuxer = {
2711 "Matroska file format",
2712 sizeof(MatroskaDemuxContext),
2714 matroska_read_header,
2715 matroska_read_packet,
2716 matroska_read_close,