David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1 | /* |
Aurelien Jacobs | ff33c5c | 2008-08-05 00:42:43 | [diff] [blame] | 2 | * Matroska file demuxer |
Mans Rullgard | 2912e87 | 2011-03-18 17:35:10 | [diff] [blame] | 3 | * Copyright (c) 2003-2008 The Libav Project |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 4 | * |
Mans Rullgard | 2912e87 | 2011-03-18 17:35:10 | [diff] [blame] | 5 | * This file is part of Libav. |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 6 | * |
Mans Rullgard | 2912e87 | 2011-03-18 17:35:10 | [diff] [blame] | 7 | * Libav is free software; you can redistribute it and/or |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 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. |
| 11 | * |
Mans Rullgard | 2912e87 | 2011-03-18 17:35:10 | [diff] [blame] | 12 | * Libav is distributed in the hope that it will be useful, |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 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. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
Mans Rullgard | 2912e87 | 2011-03-18 17:35:10 | [diff] [blame] | 18 | * License along with Libav; if not, write to the Free Software |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | /** |
Diego Biurrun | ba87f08 | 2010-04-20 14:45:34 | [diff] [blame] | 23 | * @file |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 24 | * Matroska file demuxer |
| 25 | * by Ronald Bultje <[email protected]> |
| 26 | * with a little help from Moritz Bunkus <[email protected]> |
Aurelien Jacobs | ff33c5c | 2008-08-05 00:42:43 | [diff] [blame] | 27 | * totally reworked by Aurelien Jacobs <[email protected]> |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 28 | * Specs available on the Matroska project page: http://www.matroska.org/. |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 29 | */ |
| 30 | |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 31 | #include <stdio.h> |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 32 | #include "avformat.h" |
Stefano Sabatini | 9a2cb05 | 2010-04-11 21:44:23 | [diff] [blame] | 33 | #include "internal.h" |
Anton Khirnov | e731b8d | 2011-02-20 10:04:13 | [diff] [blame] | 34 | #include "avio_internal.h" |
Daniel Verkamp | 1a40491 | 2009-06-22 23:09:34 | [diff] [blame] | 35 | /* For ff_codec_get_id(). */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 36 | #include "riff.h" |
Aurelien Jacobs | f009e36 | 2008-07-27 15:11:04 | [diff] [blame] | 37 | #include "isom.h" |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 38 | #include "rm.h" |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 39 | #include "matroska.h" |
Aurelien Jacobs | 7bfacd4 | 2008-04-02 21:41:48 | [diff] [blame] | 40 | #include "libavcodec/mpeg4audio.h" |
Diego Biurrun | 245976d | 2008-05-09 11:56:36 | [diff] [blame] | 41 | #include "libavutil/intfloat_readwrite.h" |
Diego Biurrun | 6a5d31a | 2009-01-11 22:19:48 | [diff] [blame] | 42 | #include "libavutil/intreadwrite.h" |
Aurelien Jacobs | 5f8e022 | 2008-08-05 00:39:47 | [diff] [blame] | 43 | #include "libavutil/avstring.h" |
Aurelien Jacobs | de3230f | 2008-05-09 01:53:59 | [diff] [blame] | 44 | #include "libavutil/lzo.h" |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 45 | #include "libavutil/dict.h" |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 46 | #if CONFIG_ZLIB |
Aurelien Jacobs | fbb878c | 2008-05-13 23:32:13 | [diff] [blame] | 47 | #include <zlib.h> |
| 48 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 49 | #if CONFIG_BZLIB |
Aurelien Jacobs | 54dddf0 | 2008-05-15 23:12:41 | [diff] [blame] | 50 | #include <bzlib.h> |
| 51 | #endif |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 52 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 53 | typedef enum { |
| 54 | EBML_NONE, |
| 55 | EBML_UINT, |
| 56 | EBML_FLOAT, |
| 57 | EBML_STR, |
| 58 | EBML_UTF8, |
| 59 | EBML_BIN, |
| 60 | EBML_NEST, |
| 61 | EBML_PASS, |
| 62 | EBML_STOP, |
Reimar Döffinger | 95ec3d4 | 2011-02-06 10:32:03 | [diff] [blame] | 63 | EBML_TYPE_COUNT |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 64 | } EbmlType; |
| 65 | |
| 66 | typedef const struct EbmlSyntax { |
| 67 | uint32_t id; |
| 68 | EbmlType type; |
| 69 | int list_elem_size; |
| 70 | int data_offset; |
| 71 | union { |
| 72 | uint64_t u; |
| 73 | double f; |
| 74 | const char *s; |
| 75 | const struct EbmlSyntax *n; |
| 76 | } def; |
| 77 | } EbmlSyntax; |
| 78 | |
| 79 | typedef struct { |
| 80 | int nb_elem; |
| 81 | void *elem; |
| 82 | } EbmlList; |
| 83 | |
| 84 | typedef struct { |
| 85 | int size; |
| 86 | uint8_t *data; |
| 87 | int64_t pos; |
| 88 | } EbmlBin; |
| 89 | |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 90 | typedef struct { |
| 91 | uint64_t version; |
| 92 | uint64_t max_size; |
| 93 | uint64_t id_length; |
| 94 | char *doctype; |
| 95 | uint64_t doctype_version; |
| 96 | } Ebml; |
| 97 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 98 | typedef struct { |
| 99 | uint64_t algo; |
| 100 | EbmlBin settings; |
| 101 | } MatroskaTrackCompression; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 102 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 103 | typedef struct { |
| 104 | uint64_t scope; |
| 105 | uint64_t type; |
| 106 | MatroskaTrackCompression compression; |
| 107 | } MatroskaTrackEncoding; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 108 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 109 | typedef struct { |
| 110 | double frame_rate; |
| 111 | uint64_t display_width; |
| 112 | uint64_t display_height; |
| 113 | uint64_t pixel_width; |
| 114 | uint64_t pixel_height; |
| 115 | uint64_t fourcc; |
| 116 | } MatroskaTrackVideo; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 117 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 118 | typedef struct { |
| 119 | double samplerate; |
| 120 | double out_samplerate; |
| 121 | uint64_t bitdepth; |
| 122 | uint64_t channels; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 123 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 124 | /* real audio header (extracted from extradata) */ |
| 125 | int coded_framesize; |
| 126 | int sub_packet_h; |
| 127 | int frame_size; |
| 128 | int sub_packet_size; |
| 129 | int sub_packet_cnt; |
| 130 | int pkt_cnt; |
Reimar Döffinger | 4654420 | 2011-02-26 11:52:01 | [diff] [blame] | 131 | uint64_t buf_timecode; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 132 | uint8_t *buf; |
| 133 | } MatroskaTrackAudio; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 134 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 135 | typedef struct { |
| 136 | uint64_t num; |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 137 | uint64_t uid; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 138 | uint64_t type; |
Aurelien Jacobs | 38766e0 | 2009-02-15 15:29:09 | [diff] [blame] | 139 | char *name; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 140 | char *codec_id; |
| 141 | EbmlBin codec_priv; |
| 142 | char *language; |
Anton Khirnov | 7ff9708 | 2008-06-01 13:54:11 | [diff] [blame] | 143 | double time_scale; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 144 | uint64_t default_duration; |
Aurelien Jacobs | 4eff974 | 2008-08-05 00:39:53 | [diff] [blame] | 145 | uint64_t flag_default; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 146 | uint64_t flag_forced; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 147 | MatroskaTrackVideo video; |
| 148 | MatroskaTrackAudio audio; |
| 149 | EbmlList encodings; |
Aurelien Jacobs | fc4d335 | 2008-08-05 00:40:06 | [diff] [blame] | 150 | |
| 151 | AVStream *stream; |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 152 | int64_t end_timecode; |
Joakim Plate | 3e93c8e | 2010-03-03 21:46:43 | [diff] [blame] | 153 | int ms_compat; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 154 | } MatroskaTrack; |
| 155 | |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 156 | typedef struct { |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 157 | uint64_t uid; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 158 | char *filename; |
| 159 | char *mime; |
| 160 | EbmlBin bin; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 161 | |
| 162 | AVStream *stream; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 163 | } MatroskaAttachement; |
| 164 | |
| 165 | typedef struct { |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 166 | uint64_t start; |
| 167 | uint64_t end; |
| 168 | uint64_t uid; |
| 169 | char *title; |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 170 | |
| 171 | AVChapter *chapter; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 172 | } MatroskaChapter; |
| 173 | |
| 174 | typedef struct { |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 175 | uint64_t track; |
| 176 | uint64_t pos; |
| 177 | } MatroskaIndexPos; |
| 178 | |
| 179 | typedef struct { |
| 180 | uint64_t time; |
| 181 | EbmlList pos; |
| 182 | } MatroskaIndex; |
| 183 | |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 184 | typedef struct { |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 185 | char *name; |
| 186 | char *string; |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 187 | char *lang; |
| 188 | uint64_t def; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 189 | EbmlList sub; |
| 190 | } MatroskaTag; |
| 191 | |
| 192 | typedef struct { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 193 | char *type; |
| 194 | uint64_t typevalue; |
| 195 | uint64_t trackuid; |
| 196 | uint64_t chapteruid; |
| 197 | uint64_t attachuid; |
| 198 | } MatroskaTagTarget; |
| 199 | |
| 200 | typedef struct { |
| 201 | MatroskaTagTarget target; |
| 202 | EbmlList tag; |
| 203 | } MatroskaTags; |
| 204 | |
| 205 | typedef struct { |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 206 | uint64_t id; |
| 207 | uint64_t pos; |
| 208 | } MatroskaSeekhead; |
| 209 | |
Aurelien Jacobs | c171af9 | 2008-08-05 00:41:19 | [diff] [blame] | 210 | typedef struct { |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 211 | uint64_t start; |
| 212 | uint64_t length; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 213 | } MatroskaLevel; |
| 214 | |
Aurelien Jacobs | c171af9 | 2008-08-05 00:41:19 | [diff] [blame] | 215 | typedef struct { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 216 | AVFormatContext *ctx; |
| 217 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 218 | /* EBML stuff */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 219 | int num_levels; |
| 220 | MatroskaLevel levels[EBML_MAX_DEPTH]; |
| 221 | int level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 222 | uint32_t current_id; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 223 | |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 224 | uint64_t time_scale; |
| 225 | double duration; |
| 226 | char *title; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 227 | EbmlList tracks; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 228 | EbmlList attachments; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 229 | EbmlList chapters; |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 230 | EbmlList index; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 231 | EbmlList tags; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 232 | EbmlList seekhead; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 233 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 234 | /* byte position of the segment inside the stream */ |
Diego Biurrun | bc5c918 | 2008-10-03 10:16:29 | [diff] [blame] | 235 | int64_t segment_start; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 236 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 237 | /* the packet queue */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 238 | AVPacket **packets; |
| 239 | int num_packets; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 240 | AVPacket *prev_pkt; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 241 | |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 242 | int done; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 243 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 244 | /* What to skip before effectively reading a packet. */ |
| 245 | int skip_to_keyframe; |
Aurelien Jacobs | 20f7466 | 2008-09-09 12:01:51 | [diff] [blame] | 246 | uint64_t skip_to_timecode; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 247 | |
| 248 | /* File has a CUES element, but we defer parsing until it is needed. */ |
| 249 | int cues_parsing_deferred; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 250 | } MatroskaDemuxContext; |
| 251 | |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 252 | typedef struct { |
| 253 | uint64_t duration; |
| 254 | int64_t reference; |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 255 | uint64_t non_simple; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 256 | EbmlBin bin; |
| 257 | } MatroskaBlock; |
| 258 | |
| 259 | typedef struct { |
| 260 | uint64_t timecode; |
| 261 | EbmlList blocks; |
| 262 | } MatroskaCluster; |
| 263 | |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 264 | static EbmlSyntax ebml_header[] = { |
| 265 | { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml,version), {.u=EBML_VERSION} }, |
| 266 | { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml,max_size), {.u=8} }, |
| 267 | { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml,id_length), {.u=4} }, |
| 268 | { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml,doctype), {.s="(none)"} }, |
| 269 | { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml,doctype_version), {.u=1} }, |
| 270 | { EBML_ID_EBMLVERSION, EBML_NONE }, |
| 271 | { EBML_ID_DOCTYPEVERSION, EBML_NONE }, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 272 | { 0 } |
| 273 | }; |
| 274 | |
| 275 | static EbmlSyntax ebml_syntax[] = { |
| 276 | { EBML_ID_HEADER, EBML_NEST, 0, 0, {.n=ebml_header} }, |
| 277 | { 0 } |
| 278 | }; |
| 279 | |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 280 | static EbmlSyntax matroska_info[] = { |
| 281 | { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext,time_scale), {.u=1000000} }, |
| 282 | { MATROSKA_ID_DURATION, EBML_FLOAT, 0, offsetof(MatroskaDemuxContext,duration) }, |
| 283 | { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext,title) }, |
| 284 | { MATROSKA_ID_WRITINGAPP, EBML_NONE }, |
| 285 | { MATROSKA_ID_MUXINGAPP, EBML_NONE }, |
| 286 | { MATROSKA_ID_DATEUTC, EBML_NONE }, |
| 287 | { MATROSKA_ID_SEGMENTUID, EBML_NONE }, |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 288 | { 0 } |
| 289 | }; |
| 290 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 291 | static EbmlSyntax matroska_track_video[] = { |
| 292 | { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT,0, offsetof(MatroskaTrackVideo,frame_rate) }, |
| 293 | { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo,display_width) }, |
| 294 | { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo,display_height) }, |
| 295 | { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo,pixel_width) }, |
| 296 | { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo,pixel_height) }, |
| 297 | { MATROSKA_ID_VIDEOCOLORSPACE, EBML_UINT, 0, offsetof(MatroskaTrackVideo,fourcc) }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 298 | { MATROSKA_ID_VIDEOPIXELCROPB, EBML_NONE }, |
| 299 | { MATROSKA_ID_VIDEOPIXELCROPT, EBML_NONE }, |
| 300 | { MATROSKA_ID_VIDEOPIXELCROPL, EBML_NONE }, |
| 301 | { MATROSKA_ID_VIDEOPIXELCROPR, EBML_NONE }, |
| 302 | { MATROSKA_ID_VIDEODISPLAYUNIT, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 303 | { MATROSKA_ID_VIDEOFLAGINTERLACED,EBML_NONE }, |
| 304 | { MATROSKA_ID_VIDEOSTEREOMODE, EBML_NONE }, |
| 305 | { MATROSKA_ID_VIDEOASPECTRATIO, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 306 | { 0 } |
| 307 | }; |
| 308 | |
| 309 | static EbmlSyntax matroska_track_audio[] = { |
| 310 | { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT,0, offsetof(MatroskaTrackAudio,samplerate), {.f=8000.0} }, |
| 311 | { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ,EBML_FLOAT,0,offsetof(MatroskaTrackAudio,out_samplerate) }, |
| 312 | { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio,bitdepth) }, |
| 313 | { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio,channels), {.u=1} }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 314 | { 0 } |
| 315 | }; |
| 316 | |
| 317 | static EbmlSyntax matroska_track_encoding_compression[] = { |
| 318 | { MATROSKA_ID_ENCODINGCOMPALGO, EBML_UINT, 0, offsetof(MatroskaTrackCompression,algo), {.u=0} }, |
| 319 | { MATROSKA_ID_ENCODINGCOMPSETTINGS,EBML_BIN, 0, offsetof(MatroskaTrackCompression,settings) }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 320 | { 0 } |
| 321 | }; |
| 322 | |
| 323 | static EbmlSyntax matroska_track_encoding[] = { |
| 324 | { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding,scope), {.u=1} }, |
| 325 | { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding,type), {.u=0} }, |
| 326 | { MATROSKA_ID_ENCODINGCOMPRESSION,EBML_NEST, 0, offsetof(MatroskaTrackEncoding,compression), {.n=matroska_track_encoding_compression} }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 327 | { MATROSKA_ID_ENCODINGORDER, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 328 | { 0 } |
| 329 | }; |
| 330 | |
| 331 | static EbmlSyntax matroska_track_encodings[] = { |
| 332 | { MATROSKA_ID_TRACKCONTENTENCODING, EBML_NEST, sizeof(MatroskaTrackEncoding), offsetof(MatroskaTrack,encodings), {.n=matroska_track_encoding} }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 333 | { 0 } |
| 334 | }; |
| 335 | |
| 336 | static EbmlSyntax matroska_track[] = { |
| 337 | { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack,num) }, |
Aurelien Jacobs | 38766e0 | 2009-02-15 15:29:09 | [diff] [blame] | 338 | { MATROSKA_ID_TRACKNAME, EBML_UTF8, 0, offsetof(MatroskaTrack,name) }, |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 339 | { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack,uid) }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 340 | { MATROSKA_ID_TRACKTYPE, EBML_UINT, 0, offsetof(MatroskaTrack,type) }, |
| 341 | { MATROSKA_ID_CODECID, EBML_STR, 0, offsetof(MatroskaTrack,codec_id) }, |
| 342 | { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack,codec_priv) }, |
| 343 | { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack,language), {.s="eng"} }, |
| 344 | { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack,default_duration) }, |
| 345 | { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT,0, offsetof(MatroskaTrack,time_scale), {.f=1.0} }, |
| 346 | { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack,flag_default), {.u=1} }, |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 347 | { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack,flag_forced), {.u=0} }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 348 | { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack,video), {.n=matroska_track_video} }, |
| 349 | { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack,audio), {.n=matroska_track_audio} }, |
| 350 | { MATROSKA_ID_TRACKCONTENTENCODINGS,EBML_NEST, 0, 0, {.n=matroska_track_encodings} }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 351 | { MATROSKA_ID_TRACKFLAGENABLED, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 352 | { MATROSKA_ID_TRACKFLAGLACING, EBML_NONE }, |
| 353 | { MATROSKA_ID_CODECNAME, EBML_NONE }, |
| 354 | { MATROSKA_ID_CODECDECODEALL, EBML_NONE }, |
| 355 | { MATROSKA_ID_CODECINFOURL, EBML_NONE }, |
| 356 | { MATROSKA_ID_CODECDOWNLOADURL, EBML_NONE }, |
| 357 | { MATROSKA_ID_TRACKMINCACHE, EBML_NONE }, |
| 358 | { MATROSKA_ID_TRACKMAXCACHE, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 359 | { MATROSKA_ID_TRACKMAXBLKADDID, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 360 | { 0 } |
| 361 | }; |
| 362 | |
| 363 | static EbmlSyntax matroska_tracks[] = { |
| 364 | { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext,tracks), {.n=matroska_track} }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 365 | { 0 } |
| 366 | }; |
| 367 | |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 368 | static EbmlSyntax matroska_attachment[] = { |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 369 | { MATROSKA_ID_FILEUID, EBML_UINT, 0, offsetof(MatroskaAttachement,uid) }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 370 | { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachement,filename) }, |
| 371 | { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachement,mime) }, |
| 372 | { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachement,bin) }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 373 | { MATROSKA_ID_FILEDESC, EBML_NONE }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 374 | { 0 } |
| 375 | }; |
| 376 | |
| 377 | static EbmlSyntax matroska_attachments[] = { |
| 378 | { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachement), offsetof(MatroskaDemuxContext,attachments), {.n=matroska_attachment} }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 379 | { 0 } |
| 380 | }; |
| 381 | |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 382 | static EbmlSyntax matroska_chapter_display[] = { |
| 383 | { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter,title) }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 384 | { MATROSKA_ID_CHAPLANG, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 385 | { 0 } |
| 386 | }; |
| 387 | |
| 388 | static EbmlSyntax matroska_chapter_entry[] = { |
| 389 | { MATROSKA_ID_CHAPTERTIMESTART, EBML_UINT, 0, offsetof(MatroskaChapter,start), {.u=AV_NOPTS_VALUE} }, |
| 390 | { MATROSKA_ID_CHAPTERTIMEEND, EBML_UINT, 0, offsetof(MatroskaChapter,end), {.u=AV_NOPTS_VALUE} }, |
| 391 | { MATROSKA_ID_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaChapter,uid) }, |
| 392 | { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, {.n=matroska_chapter_display} }, |
| 393 | { MATROSKA_ID_CHAPTERFLAGHIDDEN, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 394 | { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE }, |
| 395 | { MATROSKA_ID_CHAPTERPHYSEQUIV, EBML_NONE }, |
| 396 | { MATROSKA_ID_CHAPTERATOM, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 397 | { 0 } |
| 398 | }; |
| 399 | |
| 400 | static EbmlSyntax matroska_chapter[] = { |
| 401 | { MATROSKA_ID_CHAPTERATOM, EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext,chapters), {.n=matroska_chapter_entry} }, |
| 402 | { MATROSKA_ID_EDITIONUID, EBML_NONE }, |
| 403 | { MATROSKA_ID_EDITIONFLAGHIDDEN, EBML_NONE }, |
| 404 | { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 405 | { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 406 | { 0 } |
| 407 | }; |
| 408 | |
| 409 | static EbmlSyntax matroska_chapters[] = { |
| 410 | { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, {.n=matroska_chapter} }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 411 | { 0 } |
| 412 | }; |
| 413 | |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 414 | static EbmlSyntax matroska_index_pos[] = { |
| 415 | { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos,track) }, |
| 416 | { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos,pos) }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 417 | { MATROSKA_ID_CUEBLOCKNUMBER, EBML_NONE }, |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 418 | { 0 } |
| 419 | }; |
| 420 | |
| 421 | static EbmlSyntax matroska_index_entry[] = { |
| 422 | { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex,time) }, |
| 423 | { MATROSKA_ID_CUETRACKPOSITION, EBML_NEST, sizeof(MatroskaIndexPos), offsetof(MatroskaIndex,pos), {.n=matroska_index_pos} }, |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 424 | { 0 } |
| 425 | }; |
| 426 | |
| 427 | static EbmlSyntax matroska_index[] = { |
| 428 | { MATROSKA_ID_POINTENTRY, EBML_NEST, sizeof(MatroskaIndex), offsetof(MatroskaDemuxContext,index), {.n=matroska_index_entry} }, |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 429 | { 0 } |
| 430 | }; |
| 431 | |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 432 | static EbmlSyntax matroska_simpletag[] = { |
| 433 | { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag,name) }, |
| 434 | { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag,string) }, |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 435 | { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag,lang), {.s="und"} }, |
| 436 | { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag,def) }, |
Reimar Döffinger | c31f00e | 2010-06-08 19:28:22 | [diff] [blame] | 437 | { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag,def) }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 438 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag,sub), {.n=matroska_simpletag} }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 439 | { 0 } |
| 440 | }; |
| 441 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 442 | static EbmlSyntax matroska_tagtargets[] = { |
| 443 | { MATROSKA_ID_TAGTARGETS_TYPE, EBML_STR, 0, offsetof(MatroskaTagTarget,type) }, |
| 444 | { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget,typevalue), {.u=50} }, |
| 445 | { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget,trackuid) }, |
| 446 | { MATROSKA_ID_TAGTARGETS_CHAPTERUID,EBML_UINT, 0, offsetof(MatroskaTagTarget,chapteruid) }, |
| 447 | { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget,attachuid) }, |
| 448 | { 0 } |
| 449 | }; |
| 450 | |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 451 | static EbmlSyntax matroska_tag[] = { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 452 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags,tag), {.n=matroska_simpletag} }, |
| 453 | { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags,target), {.n=matroska_tagtargets} }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 454 | { 0 } |
| 455 | }; |
| 456 | |
Aurelien Jacobs | 434d496 | 2008-08-05 00:40:18 | [diff] [blame] | 457 | static EbmlSyntax matroska_tags[] = { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 458 | { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext,tags), {.n=matroska_tag} }, |
Aurelien Jacobs | 434d496 | 2008-08-05 00:40:18 | [diff] [blame] | 459 | { 0 } |
| 460 | }; |
| 461 | |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 462 | static EbmlSyntax matroska_seekhead_entry[] = { |
| 463 | { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead,id) }, |
| 464 | { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead,pos), {.u=-1} }, |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 465 | { 0 } |
| 466 | }; |
| 467 | |
| 468 | static EbmlSyntax matroska_seekhead[] = { |
| 469 | { MATROSKA_ID_SEEKENTRY, EBML_NEST, sizeof(MatroskaSeekhead), offsetof(MatroskaDemuxContext,seekhead), {.n=matroska_seekhead_entry} }, |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 470 | { 0 } |
| 471 | }; |
| 472 | |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 473 | static EbmlSyntax matroska_segment[] = { |
| 474 | { MATROSKA_ID_INFO, EBML_NEST, 0, 0, {.n=matroska_info } }, |
| 475 | { MATROSKA_ID_TRACKS, EBML_NEST, 0, 0, {.n=matroska_tracks } }, |
| 476 | { MATROSKA_ID_ATTACHMENTS, EBML_NEST, 0, 0, {.n=matroska_attachments} }, |
| 477 | { MATROSKA_ID_CHAPTERS, EBML_NEST, 0, 0, {.n=matroska_chapters } }, |
| 478 | { MATROSKA_ID_CUES, EBML_NEST, 0, 0, {.n=matroska_index } }, |
| 479 | { MATROSKA_ID_TAGS, EBML_NEST, 0, 0, {.n=matroska_tags } }, |
| 480 | { MATROSKA_ID_SEEKHEAD, EBML_NEST, 0, 0, {.n=matroska_seekhead } }, |
Aurelien Jacobs | 8070203 | 2010-06-11 16:36:51 | [diff] [blame] | 481 | { MATROSKA_ID_CLUSTER, EBML_STOP }, |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 482 | { 0 } |
| 483 | }; |
| 484 | |
| 485 | static EbmlSyntax matroska_segments[] = { |
| 486 | { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, {.n=matroska_segment } }, |
| 487 | { 0 } |
| 488 | }; |
| 489 | |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 490 | static EbmlSyntax matroska_blockgroup[] = { |
| 491 | { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock,bin) }, |
| 492 | { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock,bin) }, |
| 493 | { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock,duration), {.u=AV_NOPTS_VALUE} }, |
| 494 | { MATROSKA_ID_BLOCKREFERENCE, EBML_UINT, 0, offsetof(MatroskaBlock,reference) }, |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 495 | { 1, EBML_UINT, 0, offsetof(MatroskaBlock,non_simple), {.u=1} }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 496 | { 0 } |
| 497 | }; |
| 498 | |
| 499 | static EbmlSyntax matroska_cluster[] = { |
| 500 | { MATROSKA_ID_CLUSTERTIMECODE,EBML_UINT,0, offsetof(MatroskaCluster,timecode) }, |
| 501 | { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} }, |
| 502 | { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster,blocks), {.n=matroska_blockgroup} }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 503 | { MATROSKA_ID_CLUSTERPOSITION,EBML_NONE }, |
| 504 | { MATROSKA_ID_CLUSTERPREVSIZE,EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 505 | { 0 } |
| 506 | }; |
| 507 | |
| 508 | static EbmlSyntax matroska_clusters[] = { |
| 509 | { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, {.n=matroska_cluster} }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 510 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 511 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 512 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 513 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 514 | { 0 } |
| 515 | }; |
| 516 | |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 517 | static const char *matroska_doctypes[] = { "matroska", "webm" }; |
| 518 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 519 | /* |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 520 | * Return: Whether we reached the end of a level in the hierarchy or not. |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 521 | */ |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 522 | static int ebml_level_end(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 523 | { |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 524 | AVIOContext *pb = matroska->ctx->pb; |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 525 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 526 | |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 527 | if (matroska->num_levels > 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 528 | MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1]; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 529 | if (pos - level->start >= level->length || matroska->current_id) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 530 | matroska->num_levels--; |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 531 | return 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 532 | } |
| 533 | } |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 534 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Read: an "EBML number", which is defined as a variable-length |
| 539 | * array of bytes. The first byte indicates the length by giving a |
| 540 | * number of 0-bits followed by a one. The position of the first |
| 541 | * "one" bit inside the first byte indicates the length of this |
| 542 | * number. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 543 | * Returns: number of bytes read, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 544 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 545 | static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 546 | int max_size, uint64_t *number) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 547 | { |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 548 | int read = 1, n = 1; |
| 549 | uint64_t total = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 550 | |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 551 | /* The first byte tells us the length in bytes - avio_r8() can normally |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 552 | * return 0, but since that's not a valid first ebmlID byte, we can |
| 553 | * use it safely here to catch EOS. */ |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 554 | if (!(total = avio_r8(pb))) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 555 | /* we might encounter EOS here */ |
Anton Khirnov | 66e5b1d | 2011-03-07 20:50:25 | [diff] [blame] | 556 | if (!pb->eof_reached) { |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 557 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 558 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 559 | "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", |
| 560 | pos, pos); |
| 561 | } |
Panagiotis Issaris | 6f3e0b2 | 2007-07-19 15:23:32 | [diff] [blame] | 562 | return AVERROR(EIO); /* EOS or actual I/O error */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | /* get the length of the EBML number */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 566 | read = 8 - ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 567 | if (read > max_size) { |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 568 | int64_t pos = avio_tell(pb) - 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 569 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 570 | "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n", |
| 571 | (uint8_t) total, pos, pos); |
| 572 | return AVERROR_INVALIDDATA; |
| 573 | } |
| 574 | |
| 575 | /* read out length */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 576 | total ^= 1 << ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 577 | while (n++ < read) |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 578 | total = (total << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 579 | |
| 580 | *number = total; |
| 581 | |
| 582 | return read; |
| 583 | } |
| 584 | |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 585 | /** |
| 586 | * Read a EBML length value. |
| 587 | * This needs special handling for the "unknown length" case which has multiple |
| 588 | * encodings. |
| 589 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 590 | static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 591 | uint64_t *number) |
| 592 | { |
| 593 | int res = ebml_read_num(matroska, pb, 8, number); |
| 594 | if (res > 0 && *number + 1 == 1ULL << (7 * res)) |
| 595 | *number = 0xffffffffffffffULL; |
| 596 | return res; |
| 597 | } |
| 598 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 599 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 600 | * Read the next element as an unsigned int. |
| 601 | * 0 is success, < 0 is failure. |
| 602 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 603 | static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 604 | { |
Aurelien Jacobs | c6cd2b3 | 2008-08-05 00:41:55 | [diff] [blame] | 605 | int n = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 606 | |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 607 | if (size > 8) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 608 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 609 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 610 | /* big-endian ordering; build up number */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 611 | *num = 0; |
| 612 | while (n++ < size) |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 613 | *num = (*num << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 614 | |
| 615 | return 0; |
| 616 | } |
| 617 | |
| 618 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 619 | * Read the next element as a float. |
| 620 | * 0 is success, < 0 is failure. |
| 621 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 622 | static int ebml_read_float(AVIOContext *pb, int size, double *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 623 | { |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 624 | if (size == 0) { |
| 625 | *num = 0; |
| 626 | } else if (size == 4) { |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 627 | *num= av_int2flt(avio_rb32(pb)); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 628 | } else if(size==8){ |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 629 | *num= av_int2dbl(avio_rb64(pb)); |
Aurelien Jacobs | ba5a1f9 | 2008-08-05 00:41:52 | [diff] [blame] | 630 | } else |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 631 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 632 | |
| 633 | return 0; |
| 634 | } |
| 635 | |
| 636 | /* |
| 637 | * Read the next element as an ASCII string. |
| 638 | * 0 is success, < 0 is failure. |
| 639 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 640 | static int ebml_read_ascii(AVIOContext *pb, int size, char **str) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 641 | { |
Aurelien Jacobs | c6cd2b3 | 2008-08-05 00:41:55 | [diff] [blame] | 642 | av_free(*str); |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 643 | /* EBML strings are usually not 0-terminated, so we allocate one |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 644 | * byte more, read the string and NULL-terminate it ourselves. */ |
Aurelien Jacobs | c6cd2b3 | 2008-08-05 00:41:55 | [diff] [blame] | 645 | if (!(*str = av_malloc(size + 1))) |
Panagiotis Issaris | 769e10f | 2007-07-19 15:21:30 | [diff] [blame] | 646 | return AVERROR(ENOMEM); |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 647 | if (avio_read(pb, (uint8_t *) *str, size) != size) { |
David Conrad | 1c664b2 | 2010-05-18 21:21:23 | [diff] [blame] | 648 | av_freep(str); |
Panagiotis Issaris | 6f3e0b2 | 2007-07-19 15:23:32 | [diff] [blame] | 649 | return AVERROR(EIO); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 650 | } |
| 651 | (*str)[size] = '\0'; |
| 652 | |
| 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 657 | * Read the next element as binary data. |
| 658 | * 0 is success, < 0 is failure. |
| 659 | */ |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 660 | static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 661 | { |
| 662 | av_free(bin->data); |
| 663 | if (!(bin->data = av_malloc(length))) |
| 664 | return AVERROR(ENOMEM); |
| 665 | |
| 666 | bin->size = length; |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 667 | bin->pos = avio_tell(pb); |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 668 | if (avio_read(pb, bin->data, length) != length) { |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 669 | av_freep(&bin->data); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 670 | return AVERROR(EIO); |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 671 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 672 | |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 677 | * Read the next element, but only the header. The contents |
| 678 | * are supposed to be sub-elements which can be read separately. |
| 679 | * 0 is success, < 0 is failure. |
| 680 | */ |
Aurelien Jacobs | bddd1d9 | 2010-06-11 17:16:43 | [diff] [blame] | 681 | static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 682 | { |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 683 | AVIOContext *pb = matroska->ctx->pb; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 684 | MatroskaLevel *level; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 685 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 686 | if (matroska->num_levels >= EBML_MAX_DEPTH) { |
| 687 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 688 | "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH); |
Panagiotis Issaris | 85565db | 2007-07-19 15:38:33 | [diff] [blame] | 689 | return AVERROR(ENOSYS); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 690 | } |
| 691 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 692 | level = &matroska->levels[matroska->num_levels++]; |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 693 | level->start = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 694 | level->length = length; |
| 695 | |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 700 | * Read signed/unsigned "EBML" numbers. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 701 | * Return: number of bytes processed, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 702 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 703 | static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska, |
| 704 | uint8_t *data, uint32_t size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 705 | { |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 706 | AVIOContext pb; |
Anton Khirnov | e731b8d | 2011-02-20 10:04:13 | [diff] [blame] | 707 | ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL); |
David Conrad | 465c28b | 2010-05-18 21:21:32 | [diff] [blame] | 708 | return ebml_read_num(matroska, &pb, FFMIN(size, 8), num); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | /* |
| 712 | * Same as above, but signed. |
| 713 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 714 | static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska, |
| 715 | uint8_t *data, uint32_t size, int64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 716 | { |
| 717 | uint64_t unum; |
| 718 | int res; |
| 719 | |
| 720 | /* read as unsigned number first */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 721 | if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 722 | return res; |
| 723 | |
| 724 | /* make signed (weird way) */ |
Aurelien Jacobs | 33ac07e | 2008-08-05 00:42:55 | [diff] [blame] | 725 | *num = unum - ((1LL << (7*res - 1)) - 1); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 726 | |
| 727 | return res; |
| 728 | } |
| 729 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 730 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 731 | EbmlSyntax *syntax, void *data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 732 | |
| 733 | static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 734 | uint32_t id, void *data) |
| 735 | { |
| 736 | int i; |
| 737 | for (i=0; syntax[i].id; i++) |
| 738 | if (id == syntax[i].id) |
| 739 | break; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 740 | if (!syntax[i].id && id == MATROSKA_ID_CLUSTER && |
| 741 | matroska->num_levels > 0 && |
Aurelien Jacobs | bddd1d9 | 2010-06-11 17:16:43 | [diff] [blame] | 742 | matroska->levels[matroska->num_levels-1].length == 0xffffffffffffff) |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 743 | return 0; // we reached the end of an unknown size cluster |
Aurelien Jacobs | b49d17b | 2008-08-20 00:44:25 | [diff] [blame] | 744 | if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 745 | av_log(matroska->ctx, AV_LOG_INFO, "Unknown entry 0x%X\n", id); |
| 746 | return ebml_parse_elem(matroska, &syntax[i], data); |
| 747 | } |
| 748 | |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 749 | static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 750 | void *data) |
| 751 | { |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 752 | if (!matroska->current_id) { |
Aurelien Jacobs | 7391781 | 2010-06-11 16:45:38 | [diff] [blame] | 753 | uint64_t id; |
| 754 | int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id); |
| 755 | if (res < 0) |
| 756 | return res; |
| 757 | matroska->current_id = id | 1 << 7*res; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 758 | } |
| 759 | return ebml_parse_id(matroska, syntax, matroska->current_id, data); |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 760 | } |
| 761 | |
Aurelien Jacobs | 9bcb92c | 2008-08-05 00:42:13 | [diff] [blame] | 762 | static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 763 | void *data) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 764 | { |
Aurelien Jacobs | c005b3f | 2008-08-05 00:42:10 | [diff] [blame] | 765 | int i, res = 0; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 766 | |
| 767 | for (i=0; syntax[i].id; i++) |
| 768 | switch (syntax[i].type) { |
| 769 | case EBML_UINT: |
| 770 | *(uint64_t *)((char *)data+syntax[i].data_offset) = syntax[i].def.u; |
| 771 | break; |
| 772 | case EBML_FLOAT: |
| 773 | *(double *)((char *)data+syntax[i].data_offset) = syntax[i].def.f; |
| 774 | break; |
| 775 | case EBML_STR: |
| 776 | case EBML_UTF8: |
| 777 | *(char **)((char *)data+syntax[i].data_offset) = av_strdup(syntax[i].def.s); |
| 778 | break; |
| 779 | } |
| 780 | |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 781 | while (!res && !ebml_level_end(matroska)) |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 782 | res = ebml_parse(matroska, syntax, data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 783 | |
| 784 | return res; |
| 785 | } |
| 786 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 787 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
| 788 | EbmlSyntax *syntax, void *data) |
| 789 | { |
Reimar Döffinger | 95ec3d4 | 2011-02-06 10:32:03 | [diff] [blame] | 790 | static const uint64_t max_lengths[EBML_TYPE_COUNT] = { |
| 791 | [EBML_UINT] = 8, |
| 792 | [EBML_FLOAT] = 8, |
| 793 | // max. 16 MB for strings |
| 794 | [EBML_STR] = 0x1000000, |
| 795 | [EBML_UTF8] = 0x1000000, |
| 796 | // max. 256 MB for binary data |
| 797 | [EBML_BIN] = 0x10000000, |
| 798 | // no limits for anything else |
| 799 | }; |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 800 | AVIOContext *pb = matroska->ctx->pb; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 801 | uint32_t id = syntax->id; |
| 802 | uint64_t length; |
| 803 | int res; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 804 | void *newelem; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 805 | |
| 806 | data = (char *)data + syntax->data_offset; |
| 807 | if (syntax->list_elem_size) { |
| 808 | EbmlList *list = data; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 809 | newelem = av_realloc(list->elem, (list->nb_elem+1)*syntax->list_elem_size); |
| 810 | if (!newelem) |
| 811 | return AVERROR(ENOMEM); |
| 812 | list->elem = newelem; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 813 | data = (char*)list->elem + list->nb_elem*syntax->list_elem_size; |
| 814 | memset(data, 0, syntax->list_elem_size); |
| 815 | list->nb_elem++; |
| 816 | } |
| 817 | |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 818 | if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) { |
| 819 | matroska->current_id = 0; |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 820 | if ((res = ebml_read_length(matroska, pb, &length)) < 0) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 821 | return res; |
Reimar Döffinger | 95ec3d4 | 2011-02-06 10:32:03 | [diff] [blame] | 822 | if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) { |
| 823 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 824 | "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n", |
| 825 | length, max_lengths[syntax->type], syntax->type); |
| 826 | return AVERROR_INVALIDDATA; |
| 827 | } |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 828 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 829 | |
| 830 | switch (syntax->type) { |
| 831 | case EBML_UINT: res = ebml_read_uint (pb, length, data); break; |
| 832 | case EBML_FLOAT: res = ebml_read_float (pb, length, data); break; |
| 833 | case EBML_STR: |
| 834 | case EBML_UTF8: res = ebml_read_ascii (pb, length, data); break; |
| 835 | case EBML_BIN: res = ebml_read_binary(pb, length, data); break; |
| 836 | case EBML_NEST: if ((res=ebml_read_master(matroska, length)) < 0) |
| 837 | return res; |
| 838 | if (id == MATROSKA_ID_SEGMENT) |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 839 | matroska->segment_start = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 840 | return ebml_parse_nest(matroska, syntax->def.n, data); |
| 841 | case EBML_PASS: return ebml_parse_id(matroska, syntax->def.n, id, data); |
Aurelien Jacobs | 8070203 | 2010-06-11 16:36:51 | [diff] [blame] | 842 | case EBML_STOP: return 1; |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 843 | default: return avio_skip(pb,length)<0 ? AVERROR(EIO) : 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 844 | } |
| 845 | if (res == AVERROR_INVALIDDATA) |
| 846 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n"); |
| 847 | else if (res == AVERROR(EIO)) |
| 848 | av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n"); |
| 849 | return res; |
| 850 | } |
| 851 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 852 | static void ebml_free(EbmlSyntax *syntax, void *data) |
| 853 | { |
| 854 | int i, j; |
| 855 | for (i=0; syntax[i].id; i++) { |
| 856 | void *data_off = (char *)data + syntax[i].data_offset; |
| 857 | switch (syntax[i].type) { |
| 858 | case EBML_STR: |
| 859 | case EBML_UTF8: av_freep(data_off); break; |
| 860 | case EBML_BIN: av_freep(&((EbmlBin *)data_off)->data); break; |
| 861 | case EBML_NEST: |
| 862 | if (syntax[i].list_elem_size) { |
| 863 | EbmlList *list = data_off; |
| 864 | char *ptr = list->elem; |
| 865 | for (j=0; j<list->nb_elem; j++, ptr+=syntax[i].list_elem_size) |
| 866 | ebml_free(syntax[i].def.n, ptr); |
| 867 | av_free(list->elem); |
| 868 | } else |
| 869 | ebml_free(syntax[i].def.n, data_off); |
| 870 | default: break; |
| 871 | } |
| 872 | } |
| 873 | } |
| 874 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 875 | |
| 876 | /* |
| 877 | * Autodetecting... |
| 878 | */ |
| 879 | static int matroska_probe(AVProbeData *p) |
| 880 | { |
| 881 | uint64_t total = 0; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 882 | int len_mask = 0x80, size = 1, n = 1, i; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 883 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 884 | /* EBML header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 885 | if (AV_RB32(p->buf) != EBML_ID_HEADER) |
| 886 | return 0; |
| 887 | |
| 888 | /* length of header */ |
| 889 | total = p->buf[4]; |
| 890 | while (size <= 8 && !(total & len_mask)) { |
| 891 | size++; |
| 892 | len_mask >>= 1; |
| 893 | } |
| 894 | if (size > 8) |
| 895 | return 0; |
| 896 | total &= (len_mask - 1); |
| 897 | while (n < size) |
| 898 | total = (total << 8) | p->buf[4 + n++]; |
| 899 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 900 | /* Does the probe data contain the whole header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 901 | if (p->buf_size < 4 + size + total) |
| 902 | return 0; |
| 903 | |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 904 | /* The header should contain a known document type. For now, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 905 | * we don't parse the whole header but simply check for the |
| 906 | * availability of that array of characters inside the header. |
| 907 | * Not fully fool-proof, but good enough. */ |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 908 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) { |
| 909 | int probelen = strlen(matroska_doctypes[i]); |
Chris Evans | 69619a1 | 2011-07-20 00:51:48 | [diff] [blame] | 910 | if (total < probelen) |
| 911 | continue; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 912 | for (n = 4+size; n <= 4+size+total-probelen; n++) |
| 913 | if (!memcmp(p->buf+n, matroska_doctypes[i], probelen)) |
| 914 | return AVPROBE_SCORE_MAX; |
| 915 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 916 | |
David Conrad | c7b913c | 2010-05-22 01:41:35 | [diff] [blame] | 917 | // probably valid EBML header but no recognized doctype |
| 918 | return AVPROBE_SCORE_MAX/2; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska, |
| 922 | int num) |
| 923 | { |
| 924 | MatroskaTrack *tracks = matroska->tracks.elem; |
| 925 | int i; |
| 926 | |
| 927 | for (i=0; i < matroska->tracks.nb_elem; i++) |
| 928 | if (tracks[i].num == num) |
| 929 | return &tracks[i]; |
| 930 | |
| 931 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num); |
| 932 | return NULL; |
| 933 | } |
| 934 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 935 | static int matroska_decode_buffer(uint8_t** buf, int* buf_size, |
| 936 | MatroskaTrack *track) |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 937 | { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 938 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 939 | uint8_t* data = *buf; |
| 940 | int isize = *buf_size; |
| 941 | uint8_t* pkt_data = NULL; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 942 | uint8_t* newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 943 | int pkt_size = isize; |
| 944 | int result = 0; |
| 945 | int olen; |
| 946 | |
Aurelien Jacobs | 4f90688 | 2010-08-17 14:05:23 | [diff] [blame] | 947 | if (pkt_size >= 10000000) |
| 948 | return -1; |
| 949 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 950 | switch (encodings[0].compression.algo) { |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 951 | case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP: |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 952 | return encodings[0].compression.settings.size; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 953 | case MATROSKA_TRACK_ENCODING_COMP_LZO: |
| 954 | do { |
| 955 | olen = pkt_size *= 3; |
Aurelien Jacobs | 69b6d53 | 2009-02-02 21:32:11 | [diff] [blame] | 956 | pkt_data = av_realloc(pkt_data, pkt_size+AV_LZO_OUTPUT_PADDING); |
Reimar Döffinger | 0b178e5 | 2009-02-02 20:16:00 | [diff] [blame] | 957 | result = av_lzo1x_decode(pkt_data, &olen, data, &isize); |
| 958 | } while (result==AV_LZO_OUTPUT_FULL && pkt_size<10000000); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 959 | if (result) |
| 960 | goto failed; |
| 961 | pkt_size -= olen; |
| 962 | break; |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 963 | #if CONFIG_ZLIB |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 964 | case MATROSKA_TRACK_ENCODING_COMP_ZLIB: { |
| 965 | z_stream zstream = {0}; |
| 966 | if (inflateInit(&zstream) != Z_OK) |
| 967 | return -1; |
| 968 | zstream.next_in = data; |
| 969 | zstream.avail_in = isize; |
| 970 | do { |
| 971 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 972 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 973 | if (!newpktdata) { |
| 974 | inflateEnd(&zstream); |
| 975 | goto failed; |
| 976 | } |
| 977 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 978 | zstream.avail_out = pkt_size - zstream.total_out; |
| 979 | zstream.next_out = pkt_data + zstream.total_out; |
| 980 | result = inflate(&zstream, Z_NO_FLUSH); |
| 981 | } while (result==Z_OK && pkt_size<10000000); |
| 982 | pkt_size = zstream.total_out; |
| 983 | inflateEnd(&zstream); |
| 984 | if (result != Z_STREAM_END) |
| 985 | goto failed; |
| 986 | break; |
| 987 | } |
| 988 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 989 | #if CONFIG_BZLIB |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 990 | case MATROSKA_TRACK_ENCODING_COMP_BZLIB: { |
| 991 | bz_stream bzstream = {0}; |
| 992 | if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK) |
| 993 | return -1; |
| 994 | bzstream.next_in = data; |
| 995 | bzstream.avail_in = isize; |
| 996 | do { |
| 997 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 998 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 999 | if (!newpktdata) { |
| 1000 | BZ2_bzDecompressEnd(&bzstream); |
| 1001 | goto failed; |
| 1002 | } |
| 1003 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1004 | bzstream.avail_out = pkt_size - bzstream.total_out_lo32; |
| 1005 | bzstream.next_out = pkt_data + bzstream.total_out_lo32; |
| 1006 | result = BZ2_bzDecompress(&bzstream); |
| 1007 | } while (result==BZ_OK && pkt_size<10000000); |
| 1008 | pkt_size = bzstream.total_out_lo32; |
| 1009 | BZ2_bzDecompressEnd(&bzstream); |
| 1010 | if (result != BZ_STREAM_END) |
| 1011 | goto failed; |
| 1012 | break; |
| 1013 | } |
| 1014 | #endif |
Aurelien Jacobs | 28f27e0 | 2008-08-20 23:08:07 | [diff] [blame] | 1015 | default: |
| 1016 | return -1; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | *buf = pkt_data; |
| 1020 | *buf_size = pkt_size; |
| 1021 | return 0; |
| 1022 | failed: |
| 1023 | av_free(pkt_data); |
| 1024 | return -1; |
| 1025 | } |
| 1026 | |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1027 | static void matroska_fix_ass_packet(MatroskaDemuxContext *matroska, |
Aurelien Jacobs | e7d4b74 | 2008-09-28 22:55:28 | [diff] [blame] | 1028 | AVPacket *pkt, uint64_t display_duration) |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1029 | { |
| 1030 | char *line, *layer, *ptr = pkt->data, *end = ptr+pkt->size; |
| 1031 | for (; *ptr!=',' && ptr<end-1; ptr++); |
| 1032 | if (*ptr == ',') |
| 1033 | layer = ++ptr; |
| 1034 | for (; *ptr!=',' && ptr<end-1; ptr++); |
| 1035 | if (*ptr == ',') { |
Aurelien Jacobs | e7d4b74 | 2008-09-28 22:55:28 | [diff] [blame] | 1036 | int64_t end_pts = pkt->pts + display_duration; |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1037 | int sc = matroska->time_scale * pkt->pts / 10000000; |
| 1038 | int ec = matroska->time_scale * end_pts / 10000000; |
| 1039 | int sh, sm, ss, eh, em, es, len; |
| 1040 | sh = sc/360000; sc -= 360000*sh; |
| 1041 | sm = sc/ 6000; sc -= 6000*sm; |
| 1042 | ss = sc/ 100; sc -= 100*ss; |
| 1043 | eh = ec/360000; ec -= 360000*eh; |
| 1044 | em = ec/ 6000; ec -= 6000*em; |
| 1045 | es = ec/ 100; ec -= 100*es; |
| 1046 | *ptr++ = '\0'; |
| 1047 | len = 50 + end-ptr + FF_INPUT_BUFFER_PADDING_SIZE; |
| 1048 | if (!(line = av_malloc(len))) |
| 1049 | return; |
Aurelien Jacobs | 3df2be9 | 2008-09-28 23:01:07 | [diff] [blame] | 1050 | snprintf(line,len,"Dialogue: %s,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s\r\n", |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1051 | layer, sh, sm, ss, sc, eh, em, es, ec, ptr); |
| 1052 | av_free(pkt->data); |
| 1053 | pkt->data = line; |
| 1054 | pkt->size = strlen(line); |
| 1055 | } |
| 1056 | } |
| 1057 | |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1058 | static int matroska_merge_packets(AVPacket *out, AVPacket *in) |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1059 | { |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1060 | void *newdata = av_realloc(out->data, out->size+in->size); |
| 1061 | if (!newdata) |
| 1062 | return AVERROR(ENOMEM); |
| 1063 | out->data = newdata; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1064 | memcpy(out->data+out->size, in->data, in->size); |
| 1065 | out->size += in->size; |
| 1066 | av_destruct_packet(in); |
| 1067 | av_free(in); |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1068 | return 0; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1069 | } |
| 1070 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1071 | static void matroska_convert_tag(AVFormatContext *s, EbmlList *list, |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1072 | AVDictionary **metadata, char *prefix) |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1073 | { |
| 1074 | MatroskaTag *tags = list->elem; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1075 | char key[1024]; |
| 1076 | int i; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1077 | |
| 1078 | for (i=0; i < list->nb_elem; i++) { |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1079 | const char *lang = strcmp(tags[i].lang, "und") ? tags[i].lang : NULL; |
Anton Khirnov | bf800c7 | 2010-11-03 06:29:04 | [diff] [blame] | 1080 | |
| 1081 | if (!tags[i].name) { |
| 1082 | av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n"); |
| 1083 | continue; |
| 1084 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1085 | if (prefix) snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name); |
| 1086 | else av_strlcpy(key, tags[i].name, sizeof(key)); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1087 | if (tags[i].def || !lang) { |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1088 | av_dict_set(metadata, key, tags[i].string, 0); |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1089 | if (tags[i].sub.nb_elem) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1090 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1091 | } |
| 1092 | if (lang) { |
| 1093 | av_strlcat(key, "-", sizeof(key)); |
| 1094 | av_strlcat(key, lang, sizeof(key)); |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1095 | av_dict_set(metadata, key, tags[i].string, 0); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1096 | if (tags[i].sub.nb_elem) |
| 1097 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
| 1098 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1099 | } |
Anton Khirnov | ad7768f | 2010-10-16 13:20:41 | [diff] [blame] | 1100 | ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1101 | } |
| 1102 | |
| 1103 | static void matroska_convert_tags(AVFormatContext *s) |
| 1104 | { |
| 1105 | MatroskaDemuxContext *matroska = s->priv_data; |
| 1106 | MatroskaTags *tags = matroska->tags.elem; |
| 1107 | int i, j; |
| 1108 | |
| 1109 | for (i=0; i < matroska->tags.nb_elem; i++) { |
| 1110 | if (tags[i].target.attachuid) { |
| 1111 | MatroskaAttachement *attachment = matroska->attachments.elem; |
| 1112 | for (j=0; j<matroska->attachments.nb_elem; j++) |
Aurelien Jacobs | 9c569ef | 2011-03-23 23:28:19 | [diff] [blame] | 1113 | if (attachment[j].uid == tags[i].target.attachuid |
| 1114 | && attachment[j].stream) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1115 | matroska_convert_tag(s, &tags[i].tag, |
| 1116 | &attachment[j].stream->metadata, NULL); |
| 1117 | } else if (tags[i].target.chapteruid) { |
| 1118 | MatroskaChapter *chapter = matroska->chapters.elem; |
| 1119 | for (j=0; j<matroska->chapters.nb_elem; j++) |
Aurelien Jacobs | 9c569ef | 2011-03-23 23:28:19 | [diff] [blame] | 1120 | if (chapter[j].uid == tags[i].target.chapteruid |
| 1121 | && chapter[j].chapter) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1122 | matroska_convert_tag(s, &tags[i].tag, |
| 1123 | &chapter[j].chapter->metadata, NULL); |
| 1124 | } else if (tags[i].target.trackuid) { |
| 1125 | MatroskaTrack *track = matroska->tracks.elem; |
| 1126 | for (j=0; j<matroska->tracks.nb_elem; j++) |
Aurelien Jacobs | 9c569ef | 2011-03-23 23:28:19 | [diff] [blame] | 1127 | if (track[j].uid == tags[i].target.trackuid && track[j].stream) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1128 | matroska_convert_tag(s, &tags[i].tag, |
| 1129 | &track[j].stream->metadata, NULL); |
| 1130 | } else { |
Aurelien Jacobs | 4f909c7 | 2009-06-13 22:29:38 | [diff] [blame] | 1131 | matroska_convert_tag(s, &tags[i].tag, &s->metadata, |
| 1132 | tags[i].target.type); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1133 | } |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1134 | } |
| 1135 | } |
| 1136 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1137 | static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, int idx) |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1138 | { |
| 1139 | EbmlList *seekhead_list = &matroska->seekhead; |
| 1140 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1141 | uint32_t level_up = matroska->level_up; |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 1142 | int64_t before_pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1143 | uint32_t saved_id = matroska->current_id; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1144 | MatroskaLevel level; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1145 | int64_t offset; |
| 1146 | int ret = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1147 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1148 | if (idx >= seekhead_list->nb_elem |
| 1149 | || seekhead[idx].id == MATROSKA_ID_SEEKHEAD |
| 1150 | || seekhead[idx].id == MATROSKA_ID_CLUSTER) |
| 1151 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1152 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1153 | /* seek */ |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1154 | offset = seekhead[idx].pos + matroska->segment_start; |
| 1155 | if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) { |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1156 | /* We don't want to lose our seekhead level, so we add |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1157 | * a dummy. This is a crude hack. */ |
| 1158 | if (matroska->num_levels == EBML_MAX_DEPTH) { |
| 1159 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1160 | "Max EBML element depth (%d) reached, " |
| 1161 | "cannot parse further.\n", EBML_MAX_DEPTH); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1162 | ret = AVERROR_INVALIDDATA; |
| 1163 | } else { |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1164 | level.start = 0; |
| 1165 | level.length = (uint64_t)-1; |
| 1166 | matroska->levels[matroska->num_levels] = level; |
| 1167 | matroska->num_levels++; |
| 1168 | matroska->current_id = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1169 | |
Dustin Brody | 4a9628f | 2011-09-08 22:43:32 | [diff] [blame] | 1170 | ret = ebml_parse(matroska, matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1171 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1172 | /* remove dummy level */ |
| 1173 | while (matroska->num_levels) { |
| 1174 | uint64_t length = matroska->levels[--matroska->num_levels].length; |
| 1175 | if (length == (uint64_t)-1) |
| 1176 | break; |
| 1177 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1178 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1179 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1180 | /* seek back */ |
Anton Khirnov | 6b4aa5d | 2011-02-28 13:57:54 | [diff] [blame] | 1181 | avio_seek(matroska->ctx->pb, before_pos, SEEK_SET); |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1182 | matroska->level_up = level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1183 | matroska->current_id = saved_id; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1184 | |
| 1185 | return ret; |
| 1186 | } |
| 1187 | |
| 1188 | static void matroska_execute_seekhead(MatroskaDemuxContext *matroska) |
| 1189 | { |
| 1190 | EbmlList *seekhead_list = &matroska->seekhead; |
| 1191 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
| 1192 | int64_t before_pos = avio_tell(matroska->ctx->pb); |
| 1193 | int i; |
| 1194 | |
| 1195 | // we should not do any seeking in the streaming case |
| 1196 | if (!matroska->ctx->pb->seekable || |
| 1197 | (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)) |
| 1198 | return; |
| 1199 | |
| 1200 | for (i = 0; i < seekhead_list->nb_elem; i++) { |
| 1201 | if (seekhead[i].pos <= before_pos) |
| 1202 | continue; |
| 1203 | |
| 1204 | // defer cues parsing until we actually need cue data. |
| 1205 | if (seekhead[i].id == MATROSKA_ID_CUES) { |
| 1206 | matroska->cues_parsing_deferred = 1; |
| 1207 | continue; |
| 1208 | } |
| 1209 | |
| 1210 | if (matroska_parse_seekhead_entry(matroska, i) < 0) |
| 1211 | break; |
| 1212 | } |
| 1213 | } |
| 1214 | |
| 1215 | static void matroska_parse_cues(MatroskaDemuxContext *matroska) { |
| 1216 | EbmlList *seekhead_list = &matroska->seekhead; |
| 1217 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
| 1218 | EbmlList *index_list; |
| 1219 | MatroskaIndex *index; |
| 1220 | int index_scale = 1; |
| 1221 | int i, j; |
| 1222 | |
| 1223 | for (i = 0; i < seekhead_list->nb_elem; i++) |
Anton Khirnov | fdb9444 | 2011-07-10 19:48:23 | [diff] [blame] | 1224 | if (seekhead[i].id == MATROSKA_ID_CUES) |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1225 | break; |
| 1226 | assert(i <= seekhead_list->nb_elem); |
| 1227 | |
| 1228 | matroska_parse_seekhead_entry(matroska, i); |
| 1229 | |
| 1230 | index_list = &matroska->index; |
| 1231 | index = index_list->elem; |
| 1232 | if (index_list->nb_elem |
| 1233 | && index[0].time > 1E14/matroska->time_scale) { |
| 1234 | av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n"); |
| 1235 | index_scale = matroska->time_scale; |
| 1236 | } |
| 1237 | for (i = 0; i < index_list->nb_elem; i++) { |
| 1238 | EbmlList *pos_list = &index[i].pos; |
| 1239 | MatroskaIndexPos *pos = pos_list->elem; |
| 1240 | for (j = 0; j < pos_list->nb_elem; j++) { |
| 1241 | MatroskaTrack *track = matroska_find_track_by_num(matroska, pos[j].track); |
| 1242 | if (track && track->stream) |
| 1243 | av_add_index_entry(track->stream, |
| 1244 | pos[j].pos + matroska->segment_start, |
| 1245 | index[i].time/index_scale, 0, 0, |
| 1246 | AVINDEX_KEYFRAME); |
| 1247 | } |
| 1248 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1249 | } |
| 1250 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1251 | static int matroska_aac_profile(char *codec_id) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1252 | { |
Aurelien Jacobs | ba18b99 | 2008-08-24 13:12:41 | [diff] [blame] | 1253 | static const char * const aac_profiles[] = { "MAIN", "LC", "SSR" }; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1254 | int profile; |
| 1255 | |
Aurelien Jacobs | 37d3e06 | 2008-10-21 21:40:24 | [diff] [blame] | 1256 | for (profile=0; profile<FF_ARRAY_ELEMS(aac_profiles); profile++) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1257 | if (strstr(codec_id, aac_profiles[profile])) |
| 1258 | break; |
| 1259 | return profile + 1; |
| 1260 | } |
| 1261 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1262 | static int matroska_aac_sri(int samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1263 | { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1264 | int sri; |
| 1265 | |
Aurelien Jacobs | 37d3e06 | 2008-10-21 21:40:24 | [diff] [blame] | 1266 | for (sri=0; sri<FF_ARRAY_ELEMS(ff_mpeg4audio_sample_rates); sri++) |
Aurelien Jacobs | 7bfacd4 | 2008-04-02 21:41:48 | [diff] [blame] | 1267 | if (ff_mpeg4audio_sample_rates[sri] == samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1268 | break; |
| 1269 | return sri; |
| 1270 | } |
| 1271 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1272 | static int matroska_read_header(AVFormatContext *s, AVFormatParameters *ap) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1273 | { |
| 1274 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1275 | EbmlList *attachements_list = &matroska->attachments; |
| 1276 | MatroskaAttachement *attachements; |
| 1277 | EbmlList *chapters_list = &matroska->chapters; |
| 1278 | MatroskaChapter *chapters; |
Aurelien Jacobs | 9a9a3b0 | 2008-08-05 00:40:49 | [diff] [blame] | 1279 | MatroskaTrack *tracks; |
Aurelien Jacobs | e0e4be5 | 2009-01-15 00:42:57 | [diff] [blame] | 1280 | uint64_t max_start = 0; |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 1281 | Ebml ebml = { 0 }; |
Aurelien Jacobs | 9a9a3b0 | 2008-08-05 00:40:49 | [diff] [blame] | 1282 | AVStream *st; |
Aurelien Jacobs | 0ade7bb | 2010-06-15 19:53:15 | [diff] [blame] | 1283 | int i, j, res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1284 | |
| 1285 | matroska->ctx = s; |
| 1286 | |
| 1287 | /* First read the EBML header. */ |
Aurelien Jacobs | c4d3d9b | 2008-08-05 00:42:20 | [diff] [blame] | 1288 | if (ebml_parse(matroska, ebml_syntax, &ebml) |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 1289 | || ebml.version > EBML_VERSION || ebml.max_size > sizeof(uint64_t) |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1290 | || ebml.id_length > sizeof(uint32_t) || ebml.doctype_version > 2) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1291 | av_log(matroska->ctx, AV_LOG_ERROR, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 1292 | "EBML header using unsupported features\n" |
| 1293 | "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n", |
| 1294 | ebml.version, ebml.doctype, ebml.doctype_version); |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1295 | ebml_free(ebml_syntax, &ebml); |
Aurelien Jacobs | e536ccd | 2010-03-15 00:19:22 | [diff] [blame] | 1296 | return AVERROR_PATCHWELCOME; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1297 | } |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1298 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) |
| 1299 | if (!strcmp(ebml.doctype, matroska_doctypes[i])) |
| 1300 | break; |
| 1301 | if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) { |
David Conrad | c7b913c | 2010-05-22 01:41:35 | [diff] [blame] | 1302 | av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype); |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1303 | } |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 1304 | ebml_free(ebml_syntax, &ebml); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1305 | |
| 1306 | /* The next thing is a segment. */ |
Aurelien Jacobs | 0ade7bb | 2010-06-15 19:53:15 | [diff] [blame] | 1307 | if ((res = ebml_parse(matroska, matroska_segments, matroska)) < 0) |
| 1308 | return res; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1309 | matroska_execute_seekhead(matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1310 | |
David Conrad | d98bd80 | 2010-05-18 21:21:28 | [diff] [blame] | 1311 | if (!matroska->time_scale) |
| 1312 | matroska->time_scale = 1000000; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1313 | if (matroska->duration) |
| 1314 | matroska->ctx->duration = matroska->duration * matroska->time_scale |
| 1315 | * 1000 / AV_TIME_BASE; |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1316 | av_dict_set(&s->metadata, "title", matroska->title, 0); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1317 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1318 | tracks = matroska->tracks.elem; |
| 1319 | for (i=0; i < matroska->tracks.nb_elem; i++) { |
| 1320 | MatroskaTrack *track = &tracks[i]; |
| 1321 | enum CodecID codec_id = CODEC_ID_NONE; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1322 | EbmlList *encodings_list = &tracks->encodings; |
| 1323 | MatroskaTrackEncoding *encodings = encodings_list->elem; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1324 | uint8_t *extradata = NULL; |
| 1325 | int extradata_size = 0; |
| 1326 | int extradata_offset = 0; |
Anton Khirnov | ae628ec | 2011-02-20 10:04:12 | [diff] [blame] | 1327 | AVIOContext b; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1328 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1329 | /* Apply some sanity checks. */ |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1330 | if (track->type != MATROSKA_TRACK_TYPE_VIDEO && |
| 1331 | track->type != MATROSKA_TRACK_TYPE_AUDIO && |
| 1332 | track->type != MATROSKA_TRACK_TYPE_SUBTITLE) { |
| 1333 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1334 | "Unknown or unsupported track type %"PRIu64"\n", |
| 1335 | track->type); |
| 1336 | continue; |
| 1337 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1338 | if (track->codec_id == NULL) |
| 1339 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1340 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1341 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
| 1342 | if (!track->default_duration) |
| 1343 | track->default_duration = 1000000000/track->video.frame_rate; |
| 1344 | if (!track->video.display_width) |
| 1345 | track->video.display_width = track->video.pixel_width; |
| 1346 | if (!track->video.display_height) |
| 1347 | track->video.display_height = track->video.pixel_height; |
| 1348 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
| 1349 | if (!track->audio.out_samplerate) |
| 1350 | track->audio.out_samplerate = track->audio.samplerate; |
| 1351 | } |
| 1352 | if (encodings_list->nb_elem > 1) { |
| 1353 | av_log(matroska->ctx, AV_LOG_ERROR, |
Dustin Brody | d7d2f0e | 2011-09-15 07:34:38 | [diff] [blame] | 1354 | "Multiple combined encodings not supported"); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1355 | } else if (encodings_list->nb_elem == 1) { |
| 1356 | if (encodings[0].type || |
| 1357 | (encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP && |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1358 | #if CONFIG_ZLIB |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1359 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB && |
| 1360 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1361 | #if CONFIG_BZLIB |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1362 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB && |
| 1363 | #endif |
| 1364 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO)) { |
| 1365 | encodings[0].scope = 0; |
| 1366 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1367 | "Unsupported encoding type"); |
| 1368 | } else if (track->codec_priv.size && encodings[0].scope&2) { |
| 1369 | uint8_t *codec_priv = track->codec_priv.data; |
| 1370 | int offset = matroska_decode_buffer(&track->codec_priv.data, |
| 1371 | &track->codec_priv.size, |
| 1372 | track); |
| 1373 | if (offset < 0) { |
| 1374 | track->codec_priv.data = NULL; |
| 1375 | track->codec_priv.size = 0; |
| 1376 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1377 | "Failed to decode codec private data\n"); |
| 1378 | } else if (offset > 0) { |
| 1379 | track->codec_priv.data = av_malloc(track->codec_priv.size + offset); |
| 1380 | memcpy(track->codec_priv.data, |
| 1381 | encodings[0].compression.settings.data, offset); |
| 1382 | memcpy(track->codec_priv.data+offset, codec_priv, |
| 1383 | track->codec_priv.size); |
| 1384 | track->codec_priv.size += offset; |
| 1385 | } |
| 1386 | if (codec_priv != track->codec_priv.data) |
| 1387 | av_free(codec_priv); |
| 1388 | } |
| 1389 | } |
| 1390 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1391 | for(j=0; ff_mkv_codec_tags[j].id != CODEC_ID_NONE; j++){ |
| 1392 | if(!strncmp(ff_mkv_codec_tags[j].str, track->codec_id, |
| 1393 | strlen(ff_mkv_codec_tags[j].str))){ |
| 1394 | codec_id= ff_mkv_codec_tags[j].id; |
| 1395 | break; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1396 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1397 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1398 | |
Aurelien Jacobs | cc70d14 | 2008-08-05 00:43:01 | [diff] [blame] | 1399 | st = track->stream = av_new_stream(s, 0); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1400 | if (st == NULL) |
| 1401 | return AVERROR(ENOMEM); |
| 1402 | |
Aurelien Jacobs | cc8be50 | 2008-08-05 00:42:49 | [diff] [blame] | 1403 | if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1404 | && track->codec_priv.size >= 40 |
| 1405 | && track->codec_priv.data != NULL) { |
Joakim Plate | 3e93c8e | 2010-03-03 21:46:43 | [diff] [blame] | 1406 | track->ms_compat = 1; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1407 | track->video.fourcc = AV_RL32(track->codec_priv.data + 16); |
Daniel Verkamp | 1a40491 | 2009-06-22 23:09:34 | [diff] [blame] | 1408 | codec_id = ff_codec_get_id(ff_codec_bmp_tags, track->video.fourcc); |
Aurelien Jacobs | 429eeec | 2009-08-24 13:43:33 | [diff] [blame] | 1409 | extradata_offset = 40; |
Aurelien Jacobs | cc8be50 | 2008-08-05 00:42:49 | [diff] [blame] | 1410 | } else if (!strcmp(track->codec_id, "A_MS/ACM") |
Aurelien Jacobs | 038146e | 2009-10-01 21:14:05 | [diff] [blame] | 1411 | && track->codec_priv.size >= 14 |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1412 | && track->codec_priv.data != NULL) { |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 1413 | int ret; |
Anton Khirnov | e731b8d | 2011-02-20 10:04:13 | [diff] [blame] | 1414 | ffio_init_context(&b, track->codec_priv.data, track->codec_priv.size, |
Stefano Sabatini | 59d9694 | 2011-04-15 14:42:09 | [diff] [blame] | 1415 | AVIO_FLAG_READ, NULL, NULL, NULL, NULL); |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 1416 | ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size); |
| 1417 | if (ret < 0) |
| 1418 | return ret; |
Aurelien Jacobs | 68a7145 | 2009-01-18 17:13:12 | [diff] [blame] | 1419 | codec_id = st->codec->codec_id; |
Aurelien Jacobs | 038146e | 2009-10-01 21:14:05 | [diff] [blame] | 1420 | extradata_offset = FFMIN(track->codec_priv.size, 18); |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1421 | } else if (!strcmp(track->codec_id, "V_QUICKTIME") |
| 1422 | && (track->codec_priv.size >= 86) |
| 1423 | && (track->codec_priv.data != NULL)) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1424 | track->video.fourcc = AV_RL32(track->codec_priv.data); |
Daniel Verkamp | 1a40491 | 2009-06-22 23:09:34 | [diff] [blame] | 1425 | codec_id=ff_codec_get_id(codec_movvideo_tags, track->video.fourcc); |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 1426 | } else if (codec_id == CODEC_ID_PCM_S16BE) { |
| 1427 | switch (track->audio.bitdepth) { |
| 1428 | case 8: codec_id = CODEC_ID_PCM_U8; break; |
| 1429 | case 24: codec_id = CODEC_ID_PCM_S24BE; break; |
| 1430 | case 32: codec_id = CODEC_ID_PCM_S32BE; break; |
| 1431 | } |
| 1432 | } else if (codec_id == CODEC_ID_PCM_S16LE) { |
| 1433 | switch (track->audio.bitdepth) { |
| 1434 | case 8: codec_id = CODEC_ID_PCM_U8; break; |
| 1435 | case 24: codec_id = CODEC_ID_PCM_S24LE; break; |
| 1436 | case 32: codec_id = CODEC_ID_PCM_S32LE; break; |
| 1437 | } |
| 1438 | } else if (codec_id==CODEC_ID_PCM_F32LE && track->audio.bitdepth==64) { |
| 1439 | codec_id = CODEC_ID_PCM_F64LE; |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1440 | } else if (codec_id == CODEC_ID_AAC && !track->codec_priv.size) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1441 | int profile = matroska_aac_profile(track->codec_id); |
| 1442 | int sri = matroska_aac_sri(track->audio.samplerate); |
| 1443 | extradata = av_malloc(5); |
| 1444 | if (extradata == NULL) |
Aurelien Jacobs | 28f450a | 2008-08-05 00:40:09 | [diff] [blame] | 1445 | return AVERROR(ENOMEM); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1446 | extradata[0] = (profile << 3) | ((sri&0x0E) >> 1); |
| 1447 | extradata[1] = ((sri&0x01) << 7) | (track->audio.channels<<3); |
| 1448 | if (strstr(track->codec_id, "SBR")) { |
| 1449 | sri = matroska_aac_sri(track->audio.out_samplerate); |
| 1450 | extradata[2] = 0x56; |
| 1451 | extradata[3] = 0xE5; |
| 1452 | extradata[4] = 0x80 | (sri<<3); |
| 1453 | extradata_size = 5; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 1454 | } else |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1455 | extradata_size = 2; |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1456 | } else if (codec_id == CODEC_ID_TTA) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1457 | extradata_size = 30; |
| 1458 | extradata = av_mallocz(extradata_size); |
| 1459 | if (extradata == NULL) |
| 1460 | return AVERROR(ENOMEM); |
Anton Khirnov | e731b8d | 2011-02-20 10:04:13 | [diff] [blame] | 1461 | ffio_init_context(&b, extradata, extradata_size, 1, |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1462 | NULL, NULL, NULL, NULL); |
Anton Khirnov | 77eb550 | 2011-02-21 18:28:17 | [diff] [blame] | 1463 | avio_write(&b, "TTA1", 4); |
| 1464 | avio_wl16(&b, 1); |
| 1465 | avio_wl16(&b, track->audio.channels); |
| 1466 | avio_wl16(&b, track->audio.bitdepth); |
| 1467 | avio_wl32(&b, track->audio.out_samplerate); |
| 1468 | avio_wl32(&b, matroska->ctx->duration * track->audio.out_samplerate); |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1469 | } else if (codec_id == CODEC_ID_RV10 || codec_id == CODEC_ID_RV20 || |
| 1470 | codec_id == CODEC_ID_RV30 || codec_id == CODEC_ID_RV40) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1471 | extradata_offset = 26; |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1472 | } else if (codec_id == CODEC_ID_RA_144) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1473 | track->audio.out_samplerate = 8000; |
| 1474 | track->audio.channels = 1; |
Aurelien Jacobs | 28ba69e | 2008-08-05 00:41:31 | [diff] [blame] | 1475 | } else if (codec_id == CODEC_ID_RA_288 || codec_id == CODEC_ID_COOK || |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1476 | codec_id == CODEC_ID_ATRAC3 || codec_id == CODEC_ID_SIPR) { |
| 1477 | int flavor; |
Anton Khirnov | e731b8d | 2011-02-20 10:04:13 | [diff] [blame] | 1478 | ffio_init_context(&b, track->codec_priv.data,track->codec_priv.size, |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1479 | 0, NULL, NULL, NULL, NULL); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 1480 | avio_skip(&b, 22); |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 1481 | flavor = avio_rb16(&b); |
| 1482 | track->audio.coded_framesize = avio_rb32(&b); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 1483 | avio_skip(&b, 12); |
Anton Khirnov | b7effd4 | 2011-02-21 15:43:01 | [diff] [blame] | 1484 | track->audio.sub_packet_h = avio_rb16(&b); |
| 1485 | track->audio.frame_size = avio_rb16(&b); |
| 1486 | track->audio.sub_packet_size = avio_rb16(&b); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1487 | track->audio.buf = av_malloc(track->audio.frame_size * track->audio.sub_packet_h); |
| 1488 | if (codec_id == CODEC_ID_RA_288) { |
| 1489 | st->codec->block_align = track->audio.coded_framesize; |
| 1490 | track->codec_priv.size = 0; |
| 1491 | } else { |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1492 | if (codec_id == CODEC_ID_SIPR && flavor < 4) { |
| 1493 | const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 }; |
| 1494 | track->audio.sub_packet_size = ff_sipr_subpk_size[flavor]; |
| 1495 | st->codec->bit_rate = sipr_bit_rate[flavor]; |
| 1496 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1497 | st->codec->block_align = track->audio.sub_packet_size; |
| 1498 | extradata_offset = 78; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1499 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1500 | } |
Aurelien Jacobs | e264440 | 2009-08-24 13:40:30 | [diff] [blame] | 1501 | track->codec_priv.size -= extradata_offset; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1502 | |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 1503 | if (codec_id == CODEC_ID_NONE) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1504 | av_log(matroska->ctx, AV_LOG_INFO, |
Aurelien Jacobs | 8f35a2c | 2008-08-05 00:41:22 | [diff] [blame] | 1505 | "Unknown/unsupported CodecID %s.\n", track->codec_id); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1506 | |
Aurelien Jacobs | 3fc9d7c | 2008-09-09 11:23:48 | [diff] [blame] | 1507 | if (track->time_scale < 0.01) |
| 1508 | track->time_scale = 1.0; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1509 | av_set_pts_info(st, 64, matroska->time_scale*track->time_scale, 1000*1000*1000); /* 64 bit pts in ns */ |
| 1510 | |
| 1511 | st->codec->codec_id = codec_id; |
| 1512 | st->start_time = 0; |
| 1513 | if (strcmp(track->language, "und")) |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1514 | av_dict_set(&st->metadata, "language", track->language, 0); |
| 1515 | av_dict_set(&st->metadata, "title", track->name, 0); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1516 | |
| 1517 | if (track->flag_default) |
| 1518 | st->disposition |= AV_DISPOSITION_DEFAULT; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 1519 | if (track->flag_forced) |
| 1520 | st->disposition |= AV_DISPOSITION_FORCED; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1521 | |
| 1522 | if (track->default_duration) |
| 1523 | av_reduce(&st->codec->time_base.num, &st->codec->time_base.den, |
| 1524 | track->default_duration, 1000000000, 30000); |
| 1525 | |
Aurelien Jacobs | ff0d5a7 | 2009-10-01 21:14:46 | [diff] [blame] | 1526 | if (!st->codec->extradata) { |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 1527 | if(extradata){ |
| 1528 | st->codec->extradata = extradata; |
| 1529 | st->codec->extradata_size = extradata_size; |
| 1530 | } else if(track->codec_priv.data && track->codec_priv.size > 0){ |
| 1531 | st->codec->extradata = av_mallocz(track->codec_priv.size + |
| 1532 | FF_INPUT_BUFFER_PADDING_SIZE); |
| 1533 | if(st->codec->extradata == NULL) |
| 1534 | return AVERROR(ENOMEM); |
| 1535 | st->codec->extradata_size = track->codec_priv.size; |
| 1536 | memcpy(st->codec->extradata, |
| 1537 | track->codec_priv.data + extradata_offset, |
| 1538 | track->codec_priv.size); |
| 1539 | } |
Aurelien Jacobs | ff0d5a7 | 2009-10-01 21:14:46 | [diff] [blame] | 1540 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1541 | |
| 1542 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 1543 | st->codec->codec_type = AVMEDIA_TYPE_VIDEO; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1544 | st->codec->codec_tag = track->video.fourcc; |
| 1545 | st->codec->width = track->video.pixel_width; |
| 1546 | st->codec->height = track->video.pixel_height; |
Aurelien Jacobs | 5972945 | 2008-08-23 23:43:20 | [diff] [blame] | 1547 | av_reduce(&st->sample_aspect_ratio.num, |
| 1548 | &st->sample_aspect_ratio.den, |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1549 | st->codec->height * track->video.display_width, |
| 1550 | st->codec-> width * track->video.display_height, |
| 1551 | 255); |
Aurelien Jacobs | 8306be9 | 2009-08-10 18:12:02 | [diff] [blame] | 1552 | if (st->codec->codec_id != CODEC_ID_H264) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1553 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Baptiste Coudurier | 1095d44 | 2010-05-17 18:12:58 | [diff] [blame] | 1554 | if (track->default_duration) |
| 1555 | st->avg_frame_rate = av_d2q(1000000000.0/track->default_duration, INT_MAX); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1556 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 1557 | st->codec->codec_type = AVMEDIA_TYPE_AUDIO; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1558 | st->codec->sample_rate = track->audio.out_samplerate; |
| 1559 | st->codec->channels = track->audio.channels; |
Baptiste Coudurier | f7501a7 | 2010-04-20 21:23:49 | [diff] [blame] | 1560 | if (st->codec->codec_id != CODEC_ID_AAC) |
Baptiste Coudurier | dc1c26d | 2010-04-20 21:19:27 | [diff] [blame] | 1561 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1562 | } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) { |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 1563 | st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1564 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1565 | } |
| 1566 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1567 | attachements = attachements_list->elem; |
| 1568 | for (j=0; j<attachements_list->nb_elem; j++) { |
| 1569 | if (!(attachements[j].filename && attachements[j].mime && |
| 1570 | attachements[j].bin.data && attachements[j].bin.size > 0)) { |
| 1571 | av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n"); |
| 1572 | } else { |
Aurelien Jacobs | cc70d14 | 2008-08-05 00:43:01 | [diff] [blame] | 1573 | AVStream *st = av_new_stream(s, 0); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1574 | if (st == NULL) |
| 1575 | break; |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1576 | av_dict_set(&st->metadata, "filename",attachements[j].filename, 0); |
Anton Khirnov | 98cfe22 | 2011-09-27 08:36:53 | [diff] [blame] | 1577 | av_dict_set(&st->metadata, "mimetype", attachements[j].mime, 0); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1578 | st->codec->codec_id = CODEC_ID_NONE; |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 1579 | st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1580 | st->codec->extradata = av_malloc(attachements[j].bin.size); |
| 1581 | if(st->codec->extradata == NULL) |
| 1582 | break; |
| 1583 | st->codec->extradata_size = attachements[j].bin.size; |
| 1584 | memcpy(st->codec->extradata, attachements[j].bin.data, attachements[j].bin.size); |
| 1585 | |
| 1586 | for (i=0; ff_mkv_mime_tags[i].id != CODEC_ID_NONE; i++) { |
| 1587 | if (!strncmp(ff_mkv_mime_tags[i].str, attachements[j].mime, |
| 1588 | strlen(ff_mkv_mime_tags[i].str))) { |
| 1589 | st->codec->codec_id = ff_mkv_mime_tags[i].id; |
| 1590 | break; |
| 1591 | } |
| 1592 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1593 | attachements[j].stream = st; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1594 | } |
| 1595 | } |
| 1596 | |
| 1597 | chapters = chapters_list->elem; |
| 1598 | for (i=0; i<chapters_list->nb_elem; i++) |
Aurelien Jacobs | e0e4be5 | 2009-01-15 00:42:57 | [diff] [blame] | 1599 | if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid |
| 1600 | && (max_start==0 || chapters[i].start > max_start)) { |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 1601 | chapters[i].chapter = |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1602 | ff_new_chapter(s, chapters[i].uid, (AVRational){1, 1000000000}, |
| 1603 | chapters[i].start, chapters[i].end, |
| 1604 | chapters[i].title); |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1605 | av_dict_set(&chapters[i].chapter->metadata, |
Stefano Sabatini | 2ef6c12 | 2010-04-25 14:27:42 | [diff] [blame] | 1606 | "title", chapters[i].title, 0); |
Aurelien Jacobs | e0e4be5 | 2009-01-15 00:42:57 | [diff] [blame] | 1607 | max_start = chapters[i].start; |
| 1608 | } |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1609 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1610 | matroska_convert_tags(s); |
| 1611 | |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 1612 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1613 | } |
| 1614 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1615 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1616 | * Put one packet in an application-supplied AVPacket struct. |
| 1617 | * Returns 0 on success or -1 on failure. |
| 1618 | */ |
| 1619 | static int matroska_deliver_packet(MatroskaDemuxContext *matroska, |
| 1620 | AVPacket *pkt) |
| 1621 | { |
| 1622 | if (matroska->num_packets > 0) { |
| 1623 | memcpy(pkt, matroska->packets[0], sizeof(AVPacket)); |
| 1624 | av_free(matroska->packets[0]); |
| 1625 | if (matroska->num_packets > 1) { |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1626 | void *newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1627 | memmove(&matroska->packets[0], &matroska->packets[1], |
| 1628 | (matroska->num_packets - 1) * sizeof(AVPacket *)); |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1629 | newpackets = av_realloc(matroska->packets, |
| 1630 | (matroska->num_packets - 1) * sizeof(AVPacket *)); |
| 1631 | if (newpackets) |
| 1632 | matroska->packets = newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1633 | } else { |
| 1634 | av_freep(&matroska->packets); |
| 1635 | } |
| 1636 | matroska->num_packets--; |
| 1637 | return 0; |
| 1638 | } |
| 1639 | |
| 1640 | return -1; |
| 1641 | } |
| 1642 | |
| 1643 | /* |
| 1644 | * Free all packets in our internal queue. |
| 1645 | */ |
| 1646 | static void matroska_clear_queue(MatroskaDemuxContext *matroska) |
| 1647 | { |
| 1648 | if (matroska->packets) { |
| 1649 | int n; |
| 1650 | for (n = 0; n < matroska->num_packets; n++) { |
| 1651 | av_free_packet(matroska->packets[n]); |
| 1652 | av_free(matroska->packets[n]); |
| 1653 | } |
Aurelien Jacobs | 00a3431 | 2008-08-06 00:21:10 | [diff] [blame] | 1654 | av_freep(&matroska->packets); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1655 | matroska->num_packets = 0; |
| 1656 | } |
| 1657 | } |
| 1658 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1659 | static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, |
| 1660 | int size, int64_t pos, uint64_t cluster_time, |
Aurelien Jacobs | 24c3da1 | 2008-09-06 23:39:59 | [diff] [blame] | 1661 | uint64_t duration, int is_keyframe, |
| 1662 | int64_t cluster_pos) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1663 | { |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 1664 | uint64_t timecode = AV_NOPTS_VALUE; |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 1665 | MatroskaTrack *track; |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 1666 | int res = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1667 | AVStream *st; |
| 1668 | AVPacket *pkt; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1669 | int16_t block_time; |
| 1670 | uint32_t *lace_size = NULL; |
| 1671 | int n, flags, laces = 0; |
| 1672 | uint64_t num; |
| 1673 | |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 1674 | if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1675 | av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n"); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1676 | return res; |
| 1677 | } |
| 1678 | data += n; |
| 1679 | size -= n; |
| 1680 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1681 | track = matroska_find_track_by_num(matroska, num); |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 1682 | if (size <= 3 || !track || !track->stream) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1683 | av_log(matroska->ctx, AV_LOG_INFO, |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 1684 | "Invalid stream %"PRIu64" or size %u\n", num, size); |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1685 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1686 | } |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 1687 | st = track->stream; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 1688 | if (st->discard >= AVDISCARD_ALL) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1689 | return res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1690 | if (duration == AV_NOPTS_VALUE) |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 1691 | duration = track->default_duration / matroska->time_scale; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1692 | |
Aurelien Jacobs | 2ce746c | 2007-06-23 12:32:19 | [diff] [blame] | 1693 | block_time = AV_RB16(data); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1694 | data += 2; |
Aurelien Jacobs | 1607c53 | 2007-06-23 12:49:36 | [diff] [blame] | 1695 | flags = *data++; |
| 1696 | size -= 3; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1697 | if (is_keyframe == -1) |
Jean-Daniel Dupas | cc947f0 | 2010-03-31 12:29:58 | [diff] [blame] | 1698 | is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1699 | |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 1700 | if (cluster_time != (uint64_t)-1 |
| 1701 | && (block_time >= 0 || cluster_time >= -block_time)) { |
| 1702 | timecode = cluster_time + block_time; |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 1703 | if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE |
| 1704 | && timecode < track->end_timecode) |
| 1705 | is_keyframe = 0; /* overlapping subtitles are not key frame */ |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 1706 | if (is_keyframe) |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 1707 | av_add_index_entry(st, cluster_pos, timecode, 0,0,AVINDEX_KEYFRAME); |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 1708 | track->end_timecode = FFMAX(track->end_timecode, timecode+duration); |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 1709 | } |
| 1710 | |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 1711 | if (matroska->skip_to_keyframe && track->type != MATROSKA_TRACK_TYPE_SUBTITLE) { |
Aurelien Jacobs | 20f7466 | 2008-09-09 12:01:51 | [diff] [blame] | 1712 | if (!is_keyframe || timecode < matroska->skip_to_timecode) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1713 | return res; |
| 1714 | matroska->skip_to_keyframe = 0; |
| 1715 | } |
| 1716 | |
| 1717 | switch ((flags & 0x06) >> 1) { |
| 1718 | case 0x0: /* no lacing */ |
| 1719 | laces = 1; |
| 1720 | lace_size = av_mallocz(sizeof(int)); |
| 1721 | lace_size[0] = size; |
| 1722 | break; |
| 1723 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1724 | case 0x1: /* Xiph lacing */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1725 | case 0x2: /* fixed-size lacing */ |
| 1726 | case 0x3: /* EBML lacing */ |
Michael Niedermayer | 9bf8b56 | 2008-05-28 21:22:08 | [diff] [blame] | 1727 | assert(size>0); // size <=3 is checked before size-=3 above |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1728 | laces = (*data) + 1; |
| 1729 | data += 1; |
| 1730 | size -= 1; |
| 1731 | lace_size = av_mallocz(laces * sizeof(int)); |
| 1732 | |
| 1733 | switch ((flags & 0x06) >> 1) { |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1734 | case 0x1: /* Xiph lacing */ { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1735 | uint8_t temp; |
| 1736 | uint32_t total = 0; |
| 1737 | for (n = 0; res == 0 && n < laces - 1; n++) { |
| 1738 | while (1) { |
| 1739 | if (size == 0) { |
| 1740 | res = -1; |
| 1741 | break; |
| 1742 | } |
| 1743 | temp = *data; |
| 1744 | lace_size[n] += temp; |
| 1745 | data += 1; |
| 1746 | size -= 1; |
| 1747 | if (temp != 0xff) |
| 1748 | break; |
| 1749 | } |
| 1750 | total += lace_size[n]; |
| 1751 | } |
| 1752 | lace_size[n] = size - total; |
| 1753 | break; |
| 1754 | } |
| 1755 | |
| 1756 | case 0x2: /* fixed-size lacing */ |
| 1757 | for (n = 0; n < laces; n++) |
| 1758 | lace_size[n] = size / laces; |
| 1759 | break; |
| 1760 | |
| 1761 | case 0x3: /* EBML lacing */ { |
| 1762 | uint32_t total; |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 1763 | n = matroska_ebmlnum_uint(matroska, data, size, &num); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1764 | if (n < 0) { |
| 1765 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1766 | "EBML block data error\n"); |
| 1767 | break; |
| 1768 | } |
| 1769 | data += n; |
| 1770 | size -= n; |
| 1771 | total = lace_size[0] = num; |
| 1772 | for (n = 1; res == 0 && n < laces - 1; n++) { |
| 1773 | int64_t snum; |
| 1774 | int r; |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 1775 | r = matroska_ebmlnum_sint(matroska, data, size, &snum); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1776 | if (r < 0) { |
| 1777 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1778 | "EBML block data error\n"); |
| 1779 | break; |
| 1780 | } |
| 1781 | data += r; |
| 1782 | size -= r; |
| 1783 | lace_size[n] = lace_size[n - 1] + snum; |
| 1784 | total += lace_size[n]; |
| 1785 | } |
Ronald S. Bultje | 723229c | 2011-10-14 22:03:55 | [diff] [blame^] | 1786 | lace_size[laces - 1] = size - total; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1787 | break; |
| 1788 | } |
| 1789 | } |
| 1790 | break; |
| 1791 | } |
| 1792 | |
| 1793 | if (res == 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1794 | for (n = 0; n < laces; n++) { |
David Conrad | 18ca491 | 2010-01-11 00:31:55 | [diff] [blame] | 1795 | if ((st->codec->codec_id == CODEC_ID_RA_288 || |
| 1796 | st->codec->codec_id == CODEC_ID_COOK || |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1797 | st->codec->codec_id == CODEC_ID_SIPR || |
David Conrad | 18ca491 | 2010-01-11 00:31:55 | [diff] [blame] | 1798 | st->codec->codec_id == CODEC_ID_ATRAC3) && |
| 1799 | st->codec->block_align && track->audio.sub_packet_size) { |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1800 | int a = st->codec->block_align; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1801 | int sps = track->audio.sub_packet_size; |
| 1802 | int cfs = track->audio.coded_framesize; |
| 1803 | int h = track->audio.sub_packet_h; |
| 1804 | int y = track->audio.sub_packet_cnt; |
| 1805 | int w = track->audio.frame_size; |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1806 | int x; |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 1807 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1808 | if (!track->audio.pkt_cnt) { |
Reimar Döffinger | 4654420 | 2011-02-26 11:52:01 | [diff] [blame] | 1809 | if (track->audio.sub_packet_cnt == 0) |
| 1810 | track->audio.buf_timecode = timecode; |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1811 | if (st->codec->codec_id == CODEC_ID_RA_288) |
| 1812 | for (x=0; x<h/2; x++) |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1813 | memcpy(track->audio.buf+x*2*w+y*cfs, |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1814 | data+x*cfs, cfs); |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1815 | else if (st->codec->codec_id == CODEC_ID_SIPR) |
| 1816 | memcpy(track->audio.buf + y*w, data, w); |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1817 | else |
| 1818 | for (x=0; x<w/sps; x++) |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1819 | memcpy(track->audio.buf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), data+x*sps, sps); |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 1820 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1821 | if (++track->audio.sub_packet_cnt >= h) { |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1822 | if (st->codec->codec_id == CODEC_ID_SIPR) |
| 1823 | ff_rm_reorder_sipr_data(track->audio.buf, h, w); |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1824 | track->audio.sub_packet_cnt = 0; |
| 1825 | track->audio.pkt_cnt = h*w / a; |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 1826 | } |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1827 | } |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1828 | while (track->audio.pkt_cnt) { |
Aurelien Jacobs | 77abe5e | 2007-06-04 22:21:29 | [diff] [blame] | 1829 | pkt = av_mallocz(sizeof(AVPacket)); |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1830 | av_new_packet(pkt, a); |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1831 | memcpy(pkt->data, track->audio.buf |
| 1832 | + a * (h*w / a - track->audio.pkt_cnt--), a); |
Reimar Döffinger | 4654420 | 2011-02-26 11:52:01 | [diff] [blame] | 1833 | pkt->pts = track->audio.buf_timecode; |
| 1834 | track->audio.buf_timecode = AV_NOPTS_VALUE; |
Aurelien Jacobs | 77abe5e | 2007-06-04 22:21:29 | [diff] [blame] | 1835 | pkt->pos = pos; |
Aurelien Jacobs | fc4d335 | 2008-08-05 00:40:06 | [diff] [blame] | 1836 | pkt->stream_index = st->index; |
Anton Khirnov | b870253 | 2008-08-06 00:17:47 | [diff] [blame] | 1837 | dynarray_add(&matroska->packets,&matroska->num_packets,pkt); |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 1838 | } |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1839 | } else { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1840 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1841 | int offset = 0, pkt_size = lace_size[n]; |
Aurelien Jacobs | de3230f | 2008-05-09 01:53:59 | [diff] [blame] | 1842 | uint8_t *pkt_data = data; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1843 | |
Aurelien Jacobs | e110e96 | 2010-08-17 14:25:14 | [diff] [blame] | 1844 | if (pkt_size > size) { |
David Conrad | e48f7ff | 2010-03-07 02:26:30 | [diff] [blame] | 1845 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n"); |
| 1846 | break; |
| 1847 | } |
| 1848 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1849 | if (encodings && encodings->scope & 1) { |
Aurelien Jacobs | 8f35a2c | 2008-08-05 00:41:22 | [diff] [blame] | 1850 | offset = matroska_decode_buffer(&pkt_data,&pkt_size, track); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1851 | if (offset < 0) |
| 1852 | continue; |
Aurelien Jacobs | 53a1e82 | 2008-05-08 21:47:31 | [diff] [blame] | 1853 | } |
| 1854 | |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1855 | pkt = av_mallocz(sizeof(AVPacket)); |
| 1856 | /* XXX: prevent data copy... */ |
Aurelien Jacobs | de3230f | 2008-05-09 01:53:59 | [diff] [blame] | 1857 | if (av_new_packet(pkt, pkt_size+offset) < 0) { |
Aurelien Jacobs | 34ae409 | 2008-06-02 23:27:14 | [diff] [blame] | 1858 | av_free(pkt); |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1859 | res = AVERROR(ENOMEM); |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1860 | break; |
| 1861 | } |
Aurelien Jacobs | 53a1e82 | 2008-05-08 21:47:31 | [diff] [blame] | 1862 | if (offset) |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1863 | memcpy (pkt->data, encodings->compression.settings.data, offset); |
Aurelien Jacobs | de3230f | 2008-05-09 01:53:59 | [diff] [blame] | 1864 | memcpy (pkt->data+offset, pkt_data, pkt_size); |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1865 | |
Aurelien Jacobs | 51e1cc1 | 2008-06-22 15:46:36 | [diff] [blame] | 1866 | if (pkt_data != data) |
| 1867 | av_free(pkt_data); |
| 1868 | |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1869 | if (n == 0) |
| 1870 | pkt->flags = is_keyframe; |
Aurelien Jacobs | fc4d335 | 2008-08-05 00:40:06 | [diff] [blame] | 1871 | pkt->stream_index = st->index; |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1872 | |
Joakim Plate | 3e93c8e | 2010-03-03 21:46:43 | [diff] [blame] | 1873 | if (track->ms_compat) |
| 1874 | pkt->dts = timecode; |
| 1875 | else |
Aurelien Jacobs | 68b0fd7 | 2010-03-03 21:49:24 | [diff] [blame] | 1876 | pkt->pts = timecode; |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1877 | pkt->pos = pos; |
Aurelien Jacobs | 1bb4a1a | 2008-09-28 22:58:53 | [diff] [blame] | 1878 | if (st->codec->codec_id == CODEC_ID_TEXT) |
Aurelien Jacobs | 62c2470 | 2008-09-04 23:08:19 | [diff] [blame] | 1879 | pkt->convergence_duration = duration; |
Aurelien Jacobs | 1bb4a1a | 2008-09-28 22:58:53 | [diff] [blame] | 1880 | else if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE) |
Aurelien Jacobs | 62c2470 | 2008-09-04 23:08:19 | [diff] [blame] | 1881 | pkt->duration = duration; |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1882 | |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1883 | if (st->codec->codec_id == CODEC_ID_SSA) |
Aurelien Jacobs | e7d4b74 | 2008-09-28 22:55:28 | [diff] [blame] | 1884 | matroska_fix_ass_packet(matroska, pkt, duration); |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1885 | |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1886 | if (matroska->prev_pkt && |
Aurelien Jacobs | 21a115d | 2008-10-02 21:14:56 | [diff] [blame] | 1887 | timecode != AV_NOPTS_VALUE && |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1888 | matroska->prev_pkt->pts == timecode && |
David Conrad | 41c1ccc | 2010-07-02 16:41:38 | [diff] [blame] | 1889 | matroska->prev_pkt->stream_index == st->index && |
| 1890 | st->codec->codec_id == CODEC_ID_SSA) |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1891 | matroska_merge_packets(matroska->prev_pkt, pkt); |
| 1892 | else { |
Aurelien Jacobs | c58e8bd | 2008-10-02 21:15:48 | [diff] [blame] | 1893 | dynarray_add(&matroska->packets,&matroska->num_packets,pkt); |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1894 | matroska->prev_pkt = pkt; |
| 1895 | } |
Aurelien Jacobs | ba8a76b | 2007-10-21 22:27:24 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | if (timecode != AV_NOPTS_VALUE) |
| 1899 | timecode = duration ? timecode + duration : AV_NOPTS_VALUE; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1900 | data += lace_size[n]; |
David Conrad | e48f7ff | 2010-03-07 02:26:30 | [diff] [blame] | 1901 | size -= lace_size[n]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1902 | } |
| 1903 | } |
| 1904 | |
| 1905 | av_free(lace_size); |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 1906 | return res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1907 | } |
| 1908 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1909 | static int matroska_parse_cluster(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1910 | { |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 1911 | MatroskaCluster cluster = { 0 }; |
| 1912 | EbmlList *blocks_list; |
| 1913 | MatroskaBlock *blocks; |
Aurelien Jacobs | 24c3da1 | 2008-09-06 23:39:59 | [diff] [blame] | 1914 | int i, res; |
Anton Khirnov | a2704c9 | 2011-03-03 19:11:45 | [diff] [blame] | 1915 | int64_t pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1916 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 8070203 | 2010-06-11 16:36:51 | [diff] [blame] | 1917 | if (matroska->current_id) |
Aurelien Jacobs | 8bc98ba | 2008-08-25 00:09:08 | [diff] [blame] | 1918 | pos -= 4; /* sizeof the ID which was already read */ |
Aurelien Jacobs | 7391781 | 2010-06-11 16:45:38 | [diff] [blame] | 1919 | res = ebml_parse(matroska, matroska_clusters, &cluster); |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 1920 | blocks_list = &cluster.blocks; |
| 1921 | blocks = blocks_list->elem; |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1922 | for (i=0; i<blocks_list->nb_elem && !res; i++) |
Aurelien Jacobs | 37dd235 | 2010-05-25 22:55:12 | [diff] [blame] | 1923 | if (blocks[i].bin.size > 0 && blocks[i].bin.data) { |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 1924 | int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1; |
John Stebbins | 98a7d56 | 2011-03-24 23:34:18 | [diff] [blame] | 1925 | if (!blocks[i].non_simple) |
| 1926 | blocks[i].duration = AV_NOPTS_VALUE; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 1927 | res=matroska_parse_block(matroska, |
| 1928 | blocks[i].bin.data, blocks[i].bin.size, |
| 1929 | blocks[i].bin.pos, cluster.timecode, |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 1930 | blocks[i].duration, is_keyframe, |
Aurelien Jacobs | 24c3da1 | 2008-09-06 23:39:59 | [diff] [blame] | 1931 | pos); |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 1932 | } |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 1933 | ebml_free(matroska_cluster, &cluster); |
Aurelien Jacobs | 653fb2f | 2008-08-24 23:54:14 | [diff] [blame] | 1934 | if (res < 0) matroska->done = 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1935 | return res; |
| 1936 | } |
| 1937 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1938 | static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1939 | { |
| 1940 | MatroskaDemuxContext *matroska = s->priv_data; |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1941 | int ret = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1942 | |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1943 | while (!ret && matroska_deliver_packet(matroska, pkt)) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1944 | if (matroska->done) |
Aurelien Jacobs | 9ebeea8 | 2009-02-19 21:01:45 | [diff] [blame] | 1945 | return AVERROR_EOF; |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1946 | ret = matroska_parse_cluster(matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1947 | } |
| 1948 | |
Ami Fischman | 5dd514a | 2011-06-29 20:54:49 | [diff] [blame] | 1949 | return ret; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1950 | } |
| 1951 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1952 | static int matroska_read_seek(AVFormatContext *s, int stream_index, |
| 1953 | int64_t timestamp, int flags) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1954 | { |
| 1955 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 1956 | MatroskaTrack *tracks = matroska->tracks.elem; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1957 | AVStream *st = s->streams[stream_index]; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 1958 | int i, index, index_sub, index_min; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1959 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1960 | /* Parse the CUES now since we need the index data to seek. */ |
| 1961 | if (matroska->cues_parsing_deferred) { |
| 1962 | matroska_parse_cues(matroska); |
| 1963 | matroska->cues_parsing_deferred = 0; |
| 1964 | } |
| 1965 | |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 1966 | if (!st->nb_index_entries) |
| 1967 | return 0; |
| 1968 | timestamp = FFMAX(timestamp, st->index_entries[0].timestamp); |
Aurelien Jacobs | dfbbbdc | 2008-08-24 23:57:29 | [diff] [blame] | 1969 | |
Aurelien Jacobs | 6bef5f9 | 2008-08-27 19:57:42 | [diff] [blame] | 1970 | if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
Anton Khirnov | 6b4aa5d | 2011-02-28 13:57:54 | [diff] [blame] | 1971 | avio_seek(s->pb, st->index_entries[st->nb_index_entries-1].pos, SEEK_SET); |
John Stebbins | cdc2c1c | 2011-07-01 15:57:42 | [diff] [blame] | 1972 | matroska->current_id = 0; |
Aurelien Jacobs | 0dbddda | 2008-08-27 19:58:55 | [diff] [blame] | 1973 | while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
| 1974 | matroska_clear_queue(matroska); |
| 1975 | if (matroska_parse_cluster(matroska) < 0) |
| 1976 | break; |
| 1977 | } |
Aurelien Jacobs | 6bef5f9 | 2008-08-27 19:57:42 | [diff] [blame] | 1978 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1979 | |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 1980 | matroska_clear_queue(matroska); |
Aurelien Jacobs | 0f646a2 | 2008-08-25 00:15:49 | [diff] [blame] | 1981 | if (index < 0) |
| 1982 | return 0; |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 1983 | |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 1984 | index_min = index; |
| 1985 | for (i=0; i < matroska->tracks.nb_elem; i++) { |
Reimar Döffinger | 4654420 | 2011-02-26 11:52:01 | [diff] [blame] | 1986 | tracks[i].audio.pkt_cnt = 0; |
| 1987 | tracks[i].audio.sub_packet_cnt = 0; |
| 1988 | tracks[i].audio.buf_timecode = AV_NOPTS_VALUE; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 1989 | tracks[i].end_timecode = 0; |
| 1990 | if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE |
| 1991 | && !tracks[i].stream->discard != AVDISCARD_ALL) { |
| 1992 | index_sub = av_index_search_timestamp(tracks[i].stream, st->index_entries[index].timestamp, AVSEEK_FLAG_BACKWARD); |
| 1993 | if (index_sub >= 0 |
| 1994 | && st->index_entries[index_sub].pos < st->index_entries[index_min].pos |
| 1995 | && st->index_entries[index].timestamp - st->index_entries[index_sub].timestamp < 30000000000/matroska->time_scale) |
| 1996 | index_min = index_sub; |
| 1997 | } |
| 1998 | } |
| 1999 | |
Anton Khirnov | 6b4aa5d | 2011-02-28 13:57:54 | [diff] [blame] | 2000 | avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET); |
John Stebbins | cdc2c1c | 2011-07-01 15:57:42 | [diff] [blame] | 2001 | matroska->current_id = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2002 | matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY); |
Aurelien Jacobs | 20f7466 | 2008-09-09 12:01:51 | [diff] [blame] | 2003 | matroska->skip_to_timecode = st->index_entries[index].timestamp; |
Aurelien Jacobs | 244ee48 | 2008-08-25 00:17:31 | [diff] [blame] | 2004 | matroska->done = 0; |
Joakim Plate | de6a9a2 | 2008-06-11 19:54:17 | [diff] [blame] | 2005 | av_update_cur_dts(s, st, st->index_entries[index].timestamp); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2006 | return 0; |
| 2007 | } |
| 2008 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 2009 | static int matroska_read_close(AVFormatContext *s) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2010 | { |
| 2011 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 2012 | MatroskaTrack *tracks = matroska->tracks.elem; |
Aurelien Jacobs | 70109c0 | 2008-08-05 00:41:13 | [diff] [blame] | 2013 | int n; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2014 | |
Aurelien Jacobs | 34c9c1b | 2007-12-29 18:32:47 | [diff] [blame] | 2015 | matroska_clear_queue(matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2016 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 2017 | for (n=0; n < matroska->tracks.nb_elem; n++) |
| 2018 | if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO) |
| 2019 | av_free(tracks[n].audio.buf); |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 2020 | ebml_free(matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2021 | |
| 2022 | return 0; |
| 2023 | } |
| 2024 | |
Diego Elio Pettenò | c6610a2 | 2011-01-25 22:03:28 | [diff] [blame] | 2025 | AVInputFormat ff_matroska_demuxer = { |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 2026 | .name = "matroska,webm", |
| 2027 | .long_name = NULL_IF_CONFIG_SMALL("Matroska/WebM file format"), |
| 2028 | .priv_data_size = sizeof(MatroskaDemuxContext), |
| 2029 | .read_probe = matroska_probe, |
| 2030 | .read_header = matroska_read_header, |
| 2031 | .read_packet = matroska_read_packet, |
| 2032 | .read_close = matroska_read_close, |
| 2033 | .read_seek = matroska_read_seek, |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2034 | }; |