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 |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 3 | * Copyright (c) 2003-2008 The FFmpeg Project |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 4 | * |
| 5 | * This file is part of FFmpeg. |
| 6 | * |
| 7 | * FFmpeg is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
| 10 | * version 2.1 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * FFmpeg is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with FFmpeg; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 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 |
Diego Biurrun | e873c03 | 2011-10-30 18:10:50 | [diff] [blame] | 25 | * @author Ronald Bultje <[email protected]> |
| 26 | * @author with a little help from Moritz Bunkus <[email protected]> |
| 27 | * @author totally reworked by Aurelien Jacobs <[email protected]> |
| 28 | * @see specs available on the Matroska project page: http://www.matroska.org/ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 29 | */ |
| 30 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 31 | #include "config.h" |
| 32 | |
Diego Biurrun | d92024f | 2014-03-10 14:35:59 | [diff] [blame] | 33 | #include <inttypes.h> |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 34 | #include <stdio.h> |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 35 | #if CONFIG_BZLIB |
Aurelien Jacobs | 54dddf0 | 2008-05-15 23:12:41 | [diff] [blame] | 36 | #include <bzlib.h> |
| 37 | #endif |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 38 | #if CONFIG_ZLIB |
| 39 | #include <zlib.h> |
| 40 | #endif |
| 41 | |
| 42 | #include "libavutil/avstring.h" |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 43 | #include "libavutil/base64.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 44 | #include "libavutil/dict.h" |
| 45 | #include "libavutil/intfloat.h" |
| 46 | #include "libavutil/intreadwrite.h" |
| 47 | #include "libavutil/lzo.h" |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 48 | #include "libavutil/mathematics.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 49 | |
| 50 | #include "libavcodec/bytestream.h" |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 51 | #include "libavcodec/flac.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 52 | #include "libavcodec/mpeg4audio.h" |
| 53 | |
| 54 | #include "avformat.h" |
| 55 | #include "avio_internal.h" |
| 56 | #include "internal.h" |
| 57 | #include "isom.h" |
| 58 | #include "matroska.h" |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 59 | #include "oggdec.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 60 | /* For ff_codec_get_id(). */ |
| 61 | #include "riff.h" |
| 62 | #include "rmsipr.h" |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 63 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 64 | typedef enum { |
| 65 | EBML_NONE, |
| 66 | EBML_UINT, |
| 67 | EBML_FLOAT, |
| 68 | EBML_STR, |
| 69 | EBML_UTF8, |
| 70 | EBML_BIN, |
| 71 | EBML_NEST, |
| 72 | EBML_PASS, |
| 73 | EBML_STOP, |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 74 | EBML_SINT, |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 75 | EBML_TYPE_COUNT |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 76 | } EbmlType; |
| 77 | |
| 78 | typedef const struct EbmlSyntax { |
| 79 | uint32_t id; |
| 80 | EbmlType type; |
| 81 | int list_elem_size; |
| 82 | int data_offset; |
| 83 | union { |
| 84 | uint64_t u; |
| 85 | double f; |
| 86 | const char *s; |
| 87 | const struct EbmlSyntax *n; |
| 88 | } def; |
| 89 | } EbmlSyntax; |
| 90 | |
| 91 | typedef struct { |
| 92 | int nb_elem; |
| 93 | void *elem; |
| 94 | } EbmlList; |
| 95 | |
| 96 | typedef struct { |
| 97 | int size; |
| 98 | uint8_t *data; |
| 99 | int64_t pos; |
| 100 | } EbmlBin; |
| 101 | |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 102 | typedef struct { |
| 103 | uint64_t version; |
| 104 | uint64_t max_size; |
| 105 | uint64_t id_length; |
| 106 | char *doctype; |
| 107 | uint64_t doctype_version; |
| 108 | } Ebml; |
| 109 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 110 | typedef struct { |
| 111 | uint64_t algo; |
| 112 | EbmlBin settings; |
| 113 | } MatroskaTrackCompression; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 114 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 115 | typedef struct { |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 116 | uint64_t algo; |
| 117 | EbmlBin key_id; |
| 118 | } MatroskaTrackEncryption; |
| 119 | |
| 120 | typedef struct { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 121 | uint64_t scope; |
| 122 | uint64_t type; |
| 123 | MatroskaTrackCompression compression; |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 124 | MatroskaTrackEncryption encryption; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 125 | } MatroskaTrackEncoding; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 126 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 127 | typedef struct { |
| 128 | double frame_rate; |
| 129 | uint64_t display_width; |
| 130 | uint64_t display_height; |
| 131 | uint64_t pixel_width; |
| 132 | uint64_t pixel_height; |
Aurelien Jacobs | fdb5e02 | 2011-06-14 00:00:06 | [diff] [blame] | 133 | EbmlBin color_space; |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 134 | uint64_t stereo_mode; |
Vignesh Venkatasubramanian | ce6a8e5 | 2013-02-04 23:17:52 | [diff] [blame] | 135 | uint64_t alpha_mode; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 136 | } MatroskaTrackVideo; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 137 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 138 | typedef struct { |
| 139 | double samplerate; |
| 140 | double out_samplerate; |
| 141 | uint64_t bitdepth; |
| 142 | uint64_t channels; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 143 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 144 | /* real audio header (extracted from extradata) */ |
| 145 | int coded_framesize; |
| 146 | int sub_packet_h; |
| 147 | int frame_size; |
| 148 | int sub_packet_size; |
| 149 | int sub_packet_cnt; |
| 150 | int pkt_cnt; |
Reimar Döffinger | b09e506 | 2011-02-26 11:52:01 | [diff] [blame] | 151 | uint64_t buf_timecode; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 152 | uint8_t *buf; |
| 153 | } MatroskaTrackAudio; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 154 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 155 | typedef struct { |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 156 | uint64_t uid; |
| 157 | uint64_t type; |
| 158 | } MatroskaTrackPlane; |
| 159 | |
| 160 | typedef struct { |
| 161 | EbmlList combine_planes; |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 162 | } MatroskaTrackOperation; |
| 163 | |
| 164 | typedef struct { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 165 | uint64_t num; |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 166 | uint64_t uid; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 167 | uint64_t type; |
Aurelien Jacobs | 38766e0 | 2009-02-15 15:29:09 | [diff] [blame] | 168 | char *name; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 169 | char *codec_id; |
| 170 | EbmlBin codec_priv; |
| 171 | char *language; |
Anton Khirnov | 7ff9708 | 2008-06-01 13:54:11 | [diff] [blame] | 172 | double time_scale; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 173 | uint64_t default_duration; |
Aurelien Jacobs | 4eff974 | 2008-08-05 00:39:53 | [diff] [blame] | 174 | uint64_t flag_default; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 175 | uint64_t flag_forced; |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 176 | uint64_t seek_preroll; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 177 | MatroskaTrackVideo video; |
| 178 | MatroskaTrackAudio audio; |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 179 | MatroskaTrackOperation operation; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 180 | EbmlList encodings; |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 181 | uint64_t codec_delay; |
Aurelien Jacobs | fc4d335 | 2008-08-05 00:40:06 | [diff] [blame] | 182 | |
| 183 | AVStream *stream; |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 184 | int64_t end_timecode; |
Joakim Plate | 3e93c8e | 2010-03-03 21:46:43 | [diff] [blame] | 185 | int ms_compat; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 186 | uint64_t max_block_additional_id; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 187 | } MatroskaTrack; |
| 188 | |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 189 | typedef struct { |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 190 | uint64_t uid; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 191 | char *filename; |
| 192 | char *mime; |
| 193 | EbmlBin bin; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 194 | |
| 195 | AVStream *stream; |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 196 | } MatroskaAttachment; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 197 | |
| 198 | typedef struct { |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 199 | uint64_t start; |
| 200 | uint64_t end; |
| 201 | uint64_t uid; |
| 202 | char *title; |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 203 | |
| 204 | AVChapter *chapter; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 205 | } MatroskaChapter; |
| 206 | |
| 207 | typedef struct { |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 208 | uint64_t track; |
| 209 | uint64_t pos; |
| 210 | } MatroskaIndexPos; |
| 211 | |
| 212 | typedef struct { |
| 213 | uint64_t time; |
| 214 | EbmlList pos; |
| 215 | } MatroskaIndex; |
| 216 | |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 217 | typedef struct { |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 218 | char *name; |
| 219 | char *string; |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 220 | char *lang; |
| 221 | uint64_t def; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 222 | EbmlList sub; |
| 223 | } MatroskaTag; |
| 224 | |
| 225 | typedef struct { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 226 | char *type; |
| 227 | uint64_t typevalue; |
| 228 | uint64_t trackuid; |
| 229 | uint64_t chapteruid; |
| 230 | uint64_t attachuid; |
| 231 | } MatroskaTagTarget; |
| 232 | |
| 233 | typedef struct { |
| 234 | MatroskaTagTarget target; |
| 235 | EbmlList tag; |
| 236 | } MatroskaTags; |
| 237 | |
| 238 | typedef struct { |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 239 | uint64_t id; |
| 240 | uint64_t pos; |
| 241 | } MatroskaSeekhead; |
| 242 | |
Aurelien Jacobs | c171af9 | 2008-08-05 00:41:19 | [diff] [blame] | 243 | typedef struct { |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 244 | uint64_t start; |
| 245 | uint64_t length; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 246 | } MatroskaLevel; |
| 247 | |
Aurelien Jacobs | c171af9 | 2008-08-05 00:41:19 | [diff] [blame] | 248 | typedef struct { |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 249 | uint64_t timecode; |
| 250 | EbmlList blocks; |
| 251 | } MatroskaCluster; |
| 252 | |
| 253 | typedef struct { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 254 | AVFormatContext *ctx; |
| 255 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 256 | /* EBML stuff */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 257 | int num_levels; |
| 258 | MatroskaLevel levels[EBML_MAX_DEPTH]; |
| 259 | int level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 260 | uint32_t current_id; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 261 | |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 262 | uint64_t time_scale; |
| 263 | double duration; |
| 264 | char *title; |
James Almer | 2c759d7 | 2013-11-24 08:31:48 | [diff] [blame] | 265 | char *muxingapp; |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 266 | EbmlBin date_utc; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 267 | EbmlList tracks; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 268 | EbmlList attachments; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 269 | EbmlList chapters; |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 270 | EbmlList index; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 271 | EbmlList tags; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 272 | EbmlList seekhead; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 273 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 274 | /* byte position of the segment inside the stream */ |
Diego Biurrun | bc5c918 | 2008-10-03 10:16:29 | [diff] [blame] | 275 | int64_t segment_start; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 276 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 277 | /* the packet queue */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 278 | AVPacket **packets; |
| 279 | int num_packets; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 280 | AVPacket *prev_pkt; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 281 | |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 282 | int done; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 283 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 284 | /* What to skip before effectively reading a packet. */ |
| 285 | int skip_to_keyframe; |
Aurelien Jacobs | 20f7466 | 2008-09-09 12:01:51 | [diff] [blame] | 286 | uint64_t skip_to_timecode; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 287 | |
| 288 | /* File has a CUES element, but we defer parsing until it is needed. */ |
| 289 | int cues_parsing_deferred; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 290 | |
| 291 | int current_cluster_num_blocks; |
| 292 | int64_t current_cluster_pos; |
| 293 | MatroskaCluster current_cluster; |
| 294 | |
| 295 | /* File has SSA subtitles which prevent incremental cluster parsing. */ |
| 296 | int contains_ssa; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 297 | } MatroskaDemuxContext; |
| 298 | |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 299 | typedef struct { |
| 300 | uint64_t duration; |
| 301 | int64_t reference; |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 302 | uint64_t non_simple; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 303 | EbmlBin bin; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 304 | uint64_t additional_id; |
| 305 | EbmlBin additional; |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 306 | int64_t discard_padding; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 307 | } MatroskaBlock; |
| 308 | |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 309 | static EbmlSyntax ebml_header[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 310 | { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml, version), { .u = EBML_VERSION } }, |
| 311 | { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml, max_size), { .u = 8 } }, |
| 312 | { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml, id_length), { .u = 4 } }, |
| 313 | { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml, doctype), { .s = "(none)" } }, |
| 314 | { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } }, |
| 315 | { EBML_ID_EBMLVERSION, EBML_NONE }, |
| 316 | { EBML_ID_DOCTYPEVERSION, EBML_NONE }, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 317 | { 0 } |
| 318 | }; |
| 319 | |
| 320 | static EbmlSyntax ebml_syntax[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 321 | { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } }, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 322 | { 0 } |
| 323 | }; |
| 324 | |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 325 | static EbmlSyntax matroska_info[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 326 | { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } }, |
| 327 | { MATROSKA_ID_DURATION, EBML_FLOAT, 0, offsetof(MatroskaDemuxContext, duration) }, |
| 328 | { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, title) }, |
| 329 | { MATROSKA_ID_WRITINGAPP, EBML_NONE }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 330 | { MATROSKA_ID_MUXINGAPP, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) }, |
| 331 | { MATROSKA_ID_DATEUTC, EBML_BIN, 0, offsetof(MatroskaDemuxContext, date_utc) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 332 | { MATROSKA_ID_SEGMENTUID, EBML_NONE }, |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 333 | { 0 } |
| 334 | }; |
| 335 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 336 | static EbmlSyntax matroska_track_video[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 337 | { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 338 | { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } }, |
| 339 | { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 340 | { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_width) }, |
| 341 | { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_height) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 342 | { MATROSKA_ID_VIDEOCOLORSPACE, EBML_BIN, 0, offsetof(MatroskaTrackVideo, color_space) }, |
| 343 | { MATROSKA_ID_VIDEOSTEREOMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, stereo_mode) }, |
| 344 | { MATROSKA_ID_VIDEOALPHAMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, alpha_mode) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 345 | { MATROSKA_ID_VIDEOPIXELCROPB, EBML_NONE }, |
| 346 | { MATROSKA_ID_VIDEOPIXELCROPT, EBML_NONE }, |
| 347 | { MATROSKA_ID_VIDEOPIXELCROPL, EBML_NONE }, |
| 348 | { MATROSKA_ID_VIDEOPIXELCROPR, EBML_NONE }, |
| 349 | { MATROSKA_ID_VIDEODISPLAYUNIT, EBML_NONE }, |
| 350 | { MATROSKA_ID_VIDEOFLAGINTERLACED, EBML_NONE }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 351 | { MATROSKA_ID_VIDEOASPECTRATIO, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 352 | { 0 } |
| 353 | }; |
| 354 | |
| 355 | static EbmlSyntax matroska_track_audio[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 356 | { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } }, |
| 357 | { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) }, |
| 358 | { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio, bitdepth) }, |
| 359 | { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio, channels), { .u = 1 } }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 360 | { 0 } |
| 361 | }; |
| 362 | |
| 363 | static EbmlSyntax matroska_track_encoding_compression[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 364 | { MATROSKA_ID_ENCODINGCOMPALGO, EBML_UINT, 0, offsetof(MatroskaTrackCompression, algo), { .u = 0 } }, |
| 365 | { MATROSKA_ID_ENCODINGCOMPSETTINGS, EBML_BIN, 0, offsetof(MatroskaTrackCompression, settings) }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 366 | { 0 } |
| 367 | }; |
| 368 | |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 369 | static EbmlSyntax matroska_track_encoding_encryption[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 370 | { MATROSKA_ID_ENCODINGENCALGO, EBML_UINT, 0, offsetof(MatroskaTrackEncryption,algo), {.u = 0} }, |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 371 | { MATROSKA_ID_ENCODINGENCKEYID, EBML_BIN, 0, offsetof(MatroskaTrackEncryption,key_id) }, |
| 372 | { MATROSKA_ID_ENCODINGENCAESSETTINGS, EBML_NONE }, |
| 373 | { MATROSKA_ID_ENCODINGSIGALGO, EBML_NONE }, |
| 374 | { MATROSKA_ID_ENCODINGSIGHASHALGO, EBML_NONE }, |
| 375 | { MATROSKA_ID_ENCODINGSIGKEYID, EBML_NONE }, |
| 376 | { MATROSKA_ID_ENCODINGSIGNATURE, EBML_NONE }, |
| 377 | { 0 } |
| 378 | }; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 379 | static EbmlSyntax matroska_track_encoding[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 380 | { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope), { .u = 1 } }, |
| 381 | { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type), { .u = 0 } }, |
| 382 | { MATROSKA_ID_ENCODINGCOMPRESSION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, compression), { .n = matroska_track_encoding_compression } }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 383 | { MATROSKA_ID_ENCODINGENCRYPTION, EBML_NEST, 0, offsetof(MatroskaTrackEncoding, encryption), { .n = matroska_track_encoding_encryption } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 384 | { MATROSKA_ID_ENCODINGORDER, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 385 | { 0 } |
| 386 | }; |
| 387 | |
| 388 | static EbmlSyntax matroska_track_encodings[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 389 | { 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] | 390 | { 0 } |
| 391 | }; |
| 392 | |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 393 | static EbmlSyntax matroska_track_plane[] = { |
| 394 | { MATROSKA_ID_TRACKPLANEUID, EBML_UINT, 0, offsetof(MatroskaTrackPlane,uid) }, |
| 395 | { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) }, |
| 396 | { 0 } |
| 397 | }; |
| 398 | |
| 399 | static EbmlSyntax matroska_track_combine_planes[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 400 | { MATROSKA_ID_TRACKPLANE, EBML_NEST, sizeof(MatroskaTrackPlane), offsetof(MatroskaTrackOperation,combine_planes), {.n = matroska_track_plane} }, |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 401 | { 0 } |
| 402 | }; |
| 403 | |
| 404 | static EbmlSyntax matroska_track_operation[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 405 | { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} }, |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 406 | { 0 } |
| 407 | }; |
| 408 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 409 | static EbmlSyntax matroska_track[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 410 | { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack, num) }, |
| 411 | { MATROSKA_ID_TRACKNAME, EBML_UTF8, 0, offsetof(MatroskaTrack, name) }, |
| 412 | { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack, uid) }, |
| 413 | { MATROSKA_ID_TRACKTYPE, EBML_UINT, 0, offsetof(MatroskaTrack, type) }, |
| 414 | { MATROSKA_ID_CODECID, EBML_STR, 0, offsetof(MatroskaTrack, codec_id) }, |
| 415 | { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack, codec_priv) }, |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 416 | { MATROSKA_ID_CODECDELAY, EBML_UINT, 0, offsetof(MatroskaTrack, codec_delay) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 417 | { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack, language), { .s = "eng" } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 418 | { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack, default_duration) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 419 | { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale), { .f = 1.0 } }, |
| 420 | { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack, flag_default), { .u = 1 } }, |
| 421 | { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack, flag_forced), { .u = 0 } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 422 | { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } }, |
| 423 | { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack, audio), { .n = matroska_track_audio } }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 424 | { MATROSKA_ID_TRACKOPERATION, EBML_NEST, 0, offsetof(MatroskaTrack, operation), { .n = matroska_track_operation } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 425 | { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST, 0, 0, { .n = matroska_track_encodings } }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 426 | { MATROSKA_ID_TRACKMAXBLKADDID, EBML_UINT, 0, offsetof(MatroskaTrack, max_block_additional_id) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 427 | { MATROSKA_ID_SEEKPREROLL, EBML_UINT, 0, offsetof(MatroskaTrack, seek_preroll) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 428 | { MATROSKA_ID_TRACKFLAGENABLED, EBML_NONE }, |
| 429 | { MATROSKA_ID_TRACKFLAGLACING, EBML_NONE }, |
| 430 | { MATROSKA_ID_CODECNAME, EBML_NONE }, |
| 431 | { MATROSKA_ID_CODECDECODEALL, EBML_NONE }, |
| 432 | { MATROSKA_ID_CODECINFOURL, EBML_NONE }, |
| 433 | { MATROSKA_ID_CODECDOWNLOADURL, EBML_NONE }, |
| 434 | { MATROSKA_ID_TRACKMINCACHE, EBML_NONE }, |
| 435 | { MATROSKA_ID_TRACKMAXCACHE, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 436 | { 0 } |
| 437 | }; |
| 438 | |
| 439 | static EbmlSyntax matroska_tracks[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 440 | { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 441 | { 0 } |
| 442 | }; |
| 443 | |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 444 | static EbmlSyntax matroska_attachment[] = { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 445 | { MATROSKA_ID_FILEUID, EBML_UINT, 0, offsetof(MatroskaAttachment, uid) }, |
| 446 | { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) }, |
| 447 | { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachment, mime) }, |
| 448 | { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachment, bin) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 449 | { MATROSKA_ID_FILEDESC, EBML_NONE }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 450 | { 0 } |
| 451 | }; |
| 452 | |
| 453 | static EbmlSyntax matroska_attachments[] = { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 454 | { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 455 | { 0 } |
| 456 | }; |
| 457 | |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 458 | static EbmlSyntax matroska_chapter_display[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 459 | { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) }, |
| 460 | { MATROSKA_ID_CHAPLANG, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 461 | { 0 } |
| 462 | }; |
| 463 | |
| 464 | static EbmlSyntax matroska_chapter_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 465 | { MATROSKA_ID_CHAPTERTIMESTART, EBML_UINT, 0, offsetof(MatroskaChapter, start), { .u = AV_NOPTS_VALUE } }, |
| 466 | { MATROSKA_ID_CHAPTERTIMEEND, EBML_UINT, 0, offsetof(MatroskaChapter, end), { .u = AV_NOPTS_VALUE } }, |
| 467 | { MATROSKA_ID_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaChapter, uid) }, |
| 468 | { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, { .n = matroska_chapter_display } }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 469 | { MATROSKA_ID_CHAPTERFLAGHIDDEN, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 470 | { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE }, |
| 471 | { MATROSKA_ID_CHAPTERPHYSEQUIV, EBML_NONE }, |
| 472 | { MATROSKA_ID_CHAPTERATOM, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 473 | { 0 } |
| 474 | }; |
| 475 | |
| 476 | static EbmlSyntax matroska_chapter[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 477 | { MATROSKA_ID_CHAPTERATOM, EBML_NEST, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 478 | { MATROSKA_ID_EDITIONUID, EBML_NONE }, |
| 479 | { MATROSKA_ID_EDITIONFLAGHIDDEN, EBML_NONE }, |
| 480 | { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 481 | { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 482 | { 0 } |
| 483 | }; |
| 484 | |
| 485 | static EbmlSyntax matroska_chapters[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 486 | { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 487 | { 0 } |
| 488 | }; |
| 489 | |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 490 | static EbmlSyntax matroska_index_pos[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 491 | { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos, track) }, |
| 492 | { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos, pos) }, |
James Almer | 5ab7b3b | 2013-09-15 09:32:36 | [diff] [blame] | 493 | { MATROSKA_ID_CUERELATIVEPOSITION,EBML_NONE }, |
James Almer | 56f1740 | 2013-09-21 01:15:49 | [diff] [blame] | 494 | { MATROSKA_ID_CUEDURATION, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 495 | { MATROSKA_ID_CUEBLOCKNUMBER, EBML_NONE }, |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 496 | { 0 } |
| 497 | }; |
| 498 | |
| 499 | static EbmlSyntax matroska_index_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 500 | { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex, time) }, |
| 501 | { 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] | 502 | { 0 } |
| 503 | }; |
| 504 | |
| 505 | static EbmlSyntax matroska_index[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 506 | { 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] | 507 | { 0 } |
| 508 | }; |
| 509 | |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 510 | static EbmlSyntax matroska_simpletag[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 511 | { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag, name) }, |
| 512 | { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag, string) }, |
| 513 | { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag, lang), { .s = "und" } }, |
| 514 | { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag, def) }, |
| 515 | { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag, def) }, |
| 516 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub), { .n = matroska_simpletag } }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 517 | { 0 } |
| 518 | }; |
| 519 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 520 | static EbmlSyntax matroska_tagtargets[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 521 | { MATROSKA_ID_TAGTARGETS_TYPE, EBML_STR, 0, offsetof(MatroskaTagTarget, type) }, |
| 522 | { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } }, |
| 523 | { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) }, |
| 524 | { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) }, |
| 525 | { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) }, |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 526 | { 0 } |
| 527 | }; |
| 528 | |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 529 | static EbmlSyntax matroska_tag[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 530 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag), { .n = matroska_simpletag } }, |
| 531 | { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags, target), { .n = matroska_tagtargets } }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 532 | { 0 } |
| 533 | }; |
| 534 | |
Aurelien Jacobs | 434d496 | 2008-08-05 00:40:18 | [diff] [blame] | 535 | static EbmlSyntax matroska_tags[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 536 | { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } }, |
Aurelien Jacobs | 434d496 | 2008-08-05 00:40:18 | [diff] [blame] | 537 | { 0 } |
| 538 | }; |
| 539 | |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 540 | static EbmlSyntax matroska_seekhead_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 541 | { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead, id) }, |
| 542 | { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } }, |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 543 | { 0 } |
| 544 | }; |
| 545 | |
| 546 | static EbmlSyntax matroska_seekhead[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 547 | { 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] | 548 | { 0 } |
| 549 | }; |
| 550 | |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 551 | static EbmlSyntax matroska_segment[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 552 | { MATROSKA_ID_INFO, EBML_NEST, 0, 0, { .n = matroska_info } }, |
| 553 | { MATROSKA_ID_TRACKS, EBML_NEST, 0, 0, { .n = matroska_tracks } }, |
| 554 | { MATROSKA_ID_ATTACHMENTS, EBML_NEST, 0, 0, { .n = matroska_attachments } }, |
| 555 | { MATROSKA_ID_CHAPTERS, EBML_NEST, 0, 0, { .n = matroska_chapters } }, |
| 556 | { MATROSKA_ID_CUES, EBML_NEST, 0, 0, { .n = matroska_index } }, |
| 557 | { MATROSKA_ID_TAGS, EBML_NEST, 0, 0, { .n = matroska_tags } }, |
| 558 | { MATROSKA_ID_SEEKHEAD, EBML_NEST, 0, 0, { .n = matroska_seekhead } }, |
| 559 | { MATROSKA_ID_CLUSTER, EBML_STOP }, |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 560 | { 0 } |
| 561 | }; |
| 562 | |
| 563 | static EbmlSyntax matroska_segments[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 564 | { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } }, |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 565 | { 0 } |
| 566 | }; |
| 567 | |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 568 | static EbmlSyntax matroska_blockmore[] = { |
| 569 | { MATROSKA_ID_BLOCKADDID, EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) }, |
| 570 | { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN, 0, offsetof(MatroskaBlock,additional) }, |
| 571 | { 0 } |
| 572 | }; |
| 573 | |
| 574 | static EbmlSyntax matroska_blockadditions[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 575 | { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} }, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 576 | { 0 } |
| 577 | }; |
| 578 | |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 579 | static EbmlSyntax matroska_blockgroup[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 580 | { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 581 | { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 582 | { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 583 | { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock, duration) }, |
| 584 | { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) }, |
| 585 | { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) }, |
Anton Khirnov | 564b7e0 | 2013-05-15 13:48:15 | [diff] [blame] | 586 | { MATROSKA_ID_CODECSTATE, EBML_NONE }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 587 | { 1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 588 | { 0 } |
| 589 | }; |
| 590 | |
| 591 | static EbmlSyntax matroska_cluster[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 592 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 593 | { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 594 | { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 595 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 596 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 597 | { 0 } |
| 598 | }; |
| 599 | |
| 600 | static EbmlSyntax matroska_clusters[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 601 | { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster } }, |
| 602 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 603 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 604 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 605 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 606 | { 0 } |
| 607 | }; |
| 608 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 609 | static EbmlSyntax matroska_cluster_incremental_parsing[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 610 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 611 | { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 612 | { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 613 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 614 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
| 615 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 616 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 617 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 618 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
| 619 | { MATROSKA_ID_CLUSTER, EBML_STOP }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 620 | { 0 } |
| 621 | }; |
| 622 | |
| 623 | static EbmlSyntax matroska_cluster_incremental[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 624 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 625 | { MATROSKA_ID_BLOCKGROUP, EBML_STOP }, |
| 626 | { MATROSKA_ID_SIMPLEBLOCK, EBML_STOP }, |
| 627 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 628 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 629 | { 0 } |
| 630 | }; |
| 631 | |
| 632 | static EbmlSyntax matroska_clusters_incremental[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 633 | { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } }, |
| 634 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 635 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 636 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 637 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 638 | { 0 } |
| 639 | }; |
| 640 | |
Alex Converse | b0f29db | 2012-02-20 08:42:33 | [diff] [blame] | 641 | static const char *const matroska_doctypes[] = { "matroska", "webm" }; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 642 | |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 643 | static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos) |
| 644 | { |
| 645 | AVIOContext *pb = matroska->ctx->pb; |
| 646 | uint32_t id; |
| 647 | matroska->current_id = 0; |
| 648 | matroska->num_levels = 0; |
| 649 | |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 650 | /* seek to next position to resync from */ |
| 651 | if (avio_seek(pb, last_pos + 1, SEEK_SET) < 0) |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 652 | goto eof; |
| 653 | |
| 654 | id = avio_rb32(pb); |
| 655 | |
| 656 | // try to find a toplevel element |
| 657 | while (!url_feof(pb)) { |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 658 | if (id == MATROSKA_ID_INFO || id == MATROSKA_ID_TRACKS || |
| 659 | id == MATROSKA_ID_CUES || id == MATROSKA_ID_TAGS || |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 660 | id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS || |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 661 | id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 662 | matroska->current_id = id; |
| 663 | return 0; |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 664 | } |
| 665 | id = (id << 8) | avio_r8(pb); |
| 666 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 667 | |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 668 | eof: |
| 669 | matroska->done = 1; |
| 670 | return AVERROR_EOF; |
| 671 | } |
| 672 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 673 | /* |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 674 | * 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] | 675 | */ |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 676 | static int ebml_level_end(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 677 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 678 | AVIOContext *pb = matroska->ctx->pb; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 679 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 680 | |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 681 | if (matroska->num_levels > 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 682 | MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1]; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 683 | if (pos - level->start >= level->length || matroska->current_id) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 684 | matroska->num_levels--; |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 685 | return 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 686 | } |
| 687 | } |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 688 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /* |
| 692 | * Read: an "EBML number", which is defined as a variable-length |
| 693 | * array of bytes. The first byte indicates the length by giving a |
| 694 | * number of 0-bits followed by a one. The position of the first |
| 695 | * "one" bit inside the first byte indicates the length of this |
| 696 | * number. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 697 | * Returns: number of bytes read, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 698 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 699 | static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 700 | int max_size, uint64_t *number) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 701 | { |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 702 | int read = 1, n = 1; |
| 703 | uint64_t total = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 704 | |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 705 | /* The first byte tells us the length in bytes - avio_r8() can normally |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 706 | * return 0, but since that's not a valid first ebmlID byte, we can |
| 707 | * use it safely here to catch EOS. */ |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 708 | if (!(total = avio_r8(pb))) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 709 | /* we might encounter EOS here */ |
| 710 | if (!url_feof(pb)) { |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 711 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 712 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 713 | "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", |
| 714 | pos, pos); |
Anton Khirnov | 721113b | 2012-07-21 08:48:39 | [diff] [blame] | 715 | return pb->error ? pb->error : AVERROR(EIO); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 716 | } |
Anton Khirnov | 721113b | 2012-07-21 08:48:39 | [diff] [blame] | 717 | return AVERROR_EOF; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | /* get the length of the EBML number */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 721 | read = 8 - ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 722 | if (read > max_size) { |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 723 | int64_t pos = avio_tell(pb) - 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 724 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 725 | "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n", |
| 726 | (uint8_t) total, pos, pos); |
| 727 | return AVERROR_INVALIDDATA; |
| 728 | } |
| 729 | |
| 730 | /* read out length */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 731 | total ^= 1 << ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 732 | while (n++ < read) |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 733 | total = (total << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 734 | |
| 735 | *number = total; |
| 736 | |
| 737 | return read; |
| 738 | } |
| 739 | |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 740 | /** |
| 741 | * Read a EBML length value. |
| 742 | * This needs special handling for the "unknown length" case which has multiple |
| 743 | * encodings. |
| 744 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 745 | static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 746 | uint64_t *number) |
| 747 | { |
| 748 | int res = ebml_read_num(matroska, pb, 8, number); |
| 749 | if (res > 0 && *number + 1 == 1ULL << (7 * res)) |
| 750 | *number = 0xffffffffffffffULL; |
| 751 | return res; |
| 752 | } |
| 753 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 754 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 755 | * Read the next element as an unsigned int. |
| 756 | * 0 is success, < 0 is failure. |
| 757 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 758 | static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 759 | { |
Aurelien Jacobs | c6cd2b3 | 2008-08-05 00:41:55 | [diff] [blame] | 760 | int n = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 761 | |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 762 | if (size > 8) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 763 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 764 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 765 | /* big-endian ordering; build up number */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 766 | *num = 0; |
| 767 | while (n++ < size) |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 768 | *num = (*num << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 769 | |
| 770 | return 0; |
| 771 | } |
| 772 | |
| 773 | /* |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 774 | * Read the next element as a signed int. |
| 775 | * 0 is success, < 0 is failure. |
| 776 | */ |
| 777 | static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num) |
| 778 | { |
| 779 | int n = 1; |
| 780 | |
| 781 | if (size > 8) |
| 782 | return AVERROR_INVALIDDATA; |
| 783 | |
| 784 | if (size == 0) { |
| 785 | *num = 0; |
| 786 | } else { |
Michael Niedermayer | cddd15b | 2013-11-15 20:30:30 | [diff] [blame] | 787 | *num = sign_extend(avio_r8(pb), 8); |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 788 | |
| 789 | /* big-endian ordering; build up number */ |
| 790 | while (n++ < size) |
| 791 | *num = (*num << 8) | avio_r8(pb); |
| 792 | } |
| 793 | |
| 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 798 | * Read the next element as a float. |
| 799 | * 0 is success, < 0 is failure. |
| 800 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 801 | static int ebml_read_float(AVIOContext *pb, int size, double *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 802 | { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 803 | if (size == 0) |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 804 | *num = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 805 | else if (size == 4) |
Mans Rullgard | 3383a53 | 2011-11-27 14:04:16 | [diff] [blame] | 806 | *num = av_int2float(avio_rb32(pb)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 807 | else if (size == 8) |
Mans Rullgard | 3383a53 | 2011-11-27 14:04:16 | [diff] [blame] | 808 | *num = av_int2double(avio_rb64(pb)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 809 | else |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 810 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 811 | |
| 812 | return 0; |
| 813 | } |
| 814 | |
| 815 | /* |
| 816 | * Read the next element as an ASCII string. |
| 817 | * 0 is success, < 0 is failure. |
| 818 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 819 | static int ebml_read_ascii(AVIOContext *pb, int size, char **str) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 820 | { |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 821 | char *res; |
| 822 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 823 | /* EBML strings are usually not 0-terminated, so we allocate one |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 824 | * byte more, read the string and NULL-terminate it ourselves. */ |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 825 | if (!(res = av_malloc(size + 1))) |
Panagiotis Issaris | 769e10f | 2007-07-19 15:21:30 | [diff] [blame] | 826 | return AVERROR(ENOMEM); |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 827 | if (avio_read(pb, (uint8_t *) res, size) != size) { |
| 828 | av_free(res); |
Panagiotis Issaris | 6f3e0b2 | 2007-07-19 15:23:32 | [diff] [blame] | 829 | return AVERROR(EIO); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 830 | } |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 831 | (res)[size] = '\0'; |
| 832 | av_free(*str); |
| 833 | *str = res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 834 | |
| 835 | return 0; |
| 836 | } |
| 837 | |
| 838 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 839 | * Read the next element as binary data. |
| 840 | * 0 is success, < 0 is failure. |
| 841 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 842 | static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 843 | { |
Michael Niedermayer | c63e76b | 2012-11-09 21:58:10 | [diff] [blame] | 844 | av_fast_padded_malloc(&bin->data, &bin->size, length); |
| 845 | if (!bin->data) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 846 | return AVERROR(ENOMEM); |
| 847 | |
| 848 | bin->size = length; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 849 | bin->pos = avio_tell(pb); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 850 | if (avio_read(pb, bin->data, length) != length) { |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 851 | av_freep(&bin->data); |
Michael Niedermayer | 5e1bacf | 2012-12-04 02:30:40 | [diff] [blame] | 852 | bin->size = 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 853 | return AVERROR(EIO); |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 854 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 855 | |
| 856 | return 0; |
| 857 | } |
| 858 | |
| 859 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 860 | * Read the next element, but only the header. The contents |
| 861 | * are supposed to be sub-elements which can be read separately. |
| 862 | * 0 is success, < 0 is failure. |
| 863 | */ |
Aurelien Jacobs | bddd1d9 | 2010-06-11 17:16:43 | [diff] [blame] | 864 | static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 865 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 866 | AVIOContext *pb = matroska->ctx->pb; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 867 | MatroskaLevel *level; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 868 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 869 | if (matroska->num_levels >= EBML_MAX_DEPTH) { |
| 870 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 871 | "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH); |
Panagiotis Issaris | 85565db | 2007-07-19 15:38:33 | [diff] [blame] | 872 | return AVERROR(ENOSYS); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 873 | } |
| 874 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 875 | level = &matroska->levels[matroska->num_levels++]; |
| 876 | level->start = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 877 | level->length = length; |
| 878 | |
| 879 | return 0; |
| 880 | } |
| 881 | |
| 882 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 883 | * Read signed/unsigned "EBML" numbers. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 884 | * Return: number of bytes processed, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 885 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 886 | static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska, |
| 887 | uint8_t *data, uint32_t size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 888 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 889 | AVIOContext pb; |
Anton Khirnov | ae99313 | 2011-02-20 10:04:13 | [diff] [blame] | 890 | ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL); |
David Conrad | 465c28b | 2010-05-18 21:21:32 | [diff] [blame] | 891 | return ebml_read_num(matroska, &pb, FFMIN(size, 8), num); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | /* |
| 895 | * Same as above, but signed. |
| 896 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 897 | static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska, |
| 898 | uint8_t *data, uint32_t size, int64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 899 | { |
| 900 | uint64_t unum; |
| 901 | int res; |
| 902 | |
| 903 | /* read as unsigned number first */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 904 | if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 905 | return res; |
| 906 | |
| 907 | /* make signed (weird way) */ |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 908 | *num = unum - ((1LL << (7 * res - 1)) - 1); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 909 | |
| 910 | return res; |
| 911 | } |
| 912 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 913 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 914 | EbmlSyntax *syntax, void *data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 915 | |
| 916 | static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 917 | uint32_t id, void *data) |
| 918 | { |
| 919 | int i; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 920 | for (i = 0; syntax[i].id; i++) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 921 | if (id == syntax[i].id) |
| 922 | break; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 923 | if (!syntax[i].id && id == MATROSKA_ID_CLUSTER && |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 924 | matroska->num_levels > 0 && |
| 925 | matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff) |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 926 | return 0; // we reached the end of an unknown size cluster |
Anton Khirnov | 5b7a88f | 2012-07-07 15:15:27 | [diff] [blame] | 927 | if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) { |
Diego Biurrun | d92024f | 2014-03-10 14:35:59 | [diff] [blame] | 928 | av_log(matroska->ctx, AV_LOG_INFO, "Unknown entry 0x%"PRIX32"\n", id); |
Anton Khirnov | 5b7a88f | 2012-07-07 15:15:27 | [diff] [blame] | 929 | if (matroska->ctx->error_recognition & AV_EF_EXPLODE) |
| 930 | return AVERROR_INVALIDDATA; |
| 931 | } |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 932 | return ebml_parse_elem(matroska, &syntax[i], data); |
| 933 | } |
| 934 | |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 935 | static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 936 | void *data) |
| 937 | { |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 938 | if (!matroska->current_id) { |
Aurelien Jacobs | 7391781 | 2010-06-11 16:45:38 | [diff] [blame] | 939 | uint64_t id; |
| 940 | int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id); |
| 941 | if (res < 0) |
| 942 | return res; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 943 | matroska->current_id = id | 1 << 7 * res; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 944 | } |
| 945 | return ebml_parse_id(matroska, syntax, matroska->current_id, data); |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 946 | } |
| 947 | |
Aurelien Jacobs | 9bcb92c | 2008-08-05 00:42:13 | [diff] [blame] | 948 | static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 949 | void *data) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 950 | { |
Aurelien Jacobs | c005b3f | 2008-08-05 00:42:10 | [diff] [blame] | 951 | int i, res = 0; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 952 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 953 | for (i = 0; syntax[i].id; i++) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 954 | switch (syntax[i].type) { |
| 955 | case EBML_UINT: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 956 | *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 957 | break; |
| 958 | case EBML_FLOAT: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 959 | *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 960 | break; |
| 961 | case EBML_STR: |
| 962 | case EBML_UTF8: |
Anton Khirnov | 668643b | 2013-09-04 06:55:17 | [diff] [blame] | 963 | // the default may be NULL |
| 964 | if (syntax[i].def.s) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 965 | uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset); |
Anton Khirnov | 668643b | 2013-09-04 06:55:17 | [diff] [blame] | 966 | *dst = av_strdup(syntax[i].def.s); |
| 967 | if (!*dst) |
| 968 | return AVERROR(ENOMEM); |
| 969 | } |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 970 | break; |
| 971 | } |
| 972 | |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 973 | while (!res && !ebml_level_end(matroska)) |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 974 | res = ebml_parse(matroska, syntax, data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 975 | |
| 976 | return res; |
| 977 | } |
| 978 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 979 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
| 980 | EbmlSyntax *syntax, void *data) |
| 981 | { |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 982 | static const uint64_t max_lengths[EBML_TYPE_COUNT] = { |
| 983 | [EBML_UINT] = 8, |
| 984 | [EBML_FLOAT] = 8, |
| 985 | // max. 16 MB for strings |
| 986 | [EBML_STR] = 0x1000000, |
| 987 | [EBML_UTF8] = 0x1000000, |
| 988 | // max. 256 MB for binary data |
| 989 | [EBML_BIN] = 0x10000000, |
| 990 | // no limits for anything else |
| 991 | }; |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 992 | AVIOContext *pb = matroska->ctx->pb; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 993 | uint32_t id = syntax->id; |
| 994 | uint64_t length; |
| 995 | int res; |
Michael Niedermayer | 32805f8 | 2013-09-11 10:13:44 | [diff] [blame] | 996 | void *newelem; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 997 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 998 | data = (char *) data + syntax->data_offset; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 999 | if (syntax->list_elem_size) { |
| 1000 | EbmlList *list = data; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1001 | newelem = av_realloc_array(list->elem, list->nb_elem + 1, syntax->list_elem_size); |
Michael Niedermayer | 32805f8 | 2013-09-11 10:13:44 | [diff] [blame] | 1002 | if (!newelem) |
| 1003 | return AVERROR(ENOMEM); |
| 1004 | list->elem = newelem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1005 | data = (char *) list->elem + list->nb_elem * syntax->list_elem_size; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1006 | memset(data, 0, syntax->list_elem_size); |
| 1007 | list->nb_elem++; |
| 1008 | } |
| 1009 | |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1010 | if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) { |
| 1011 | matroska->current_id = 0; |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 1012 | if ((res = ebml_read_length(matroska, pb, &length)) < 0) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1013 | return res; |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 1014 | if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) { |
| 1015 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1016 | "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n", |
| 1017 | length, max_lengths[syntax->type], syntax->type); |
| 1018 | return AVERROR_INVALIDDATA; |
| 1019 | } |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1020 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1021 | |
| 1022 | switch (syntax->type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1023 | case EBML_UINT: |
| 1024 | res = ebml_read_uint(pb, length, data); |
| 1025 | break; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1026 | case EBML_SINT: |
| 1027 | res = ebml_read_sint(pb, length, data); |
| 1028 | break; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1029 | case EBML_FLOAT: |
| 1030 | res = ebml_read_float(pb, length, data); |
| 1031 | break; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1032 | case EBML_STR: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1033 | case EBML_UTF8: |
| 1034 | res = ebml_read_ascii(pb, length, data); |
| 1035 | break; |
| 1036 | case EBML_BIN: |
| 1037 | res = ebml_read_binary(pb, length, data); |
| 1038 | break; |
| 1039 | case EBML_NEST: |
| 1040 | if ((res = ebml_read_master(matroska, length)) < 0) |
| 1041 | return res; |
| 1042 | if (id == MATROSKA_ID_SEGMENT) |
| 1043 | matroska->segment_start = avio_tell(matroska->ctx->pb); |
| 1044 | return ebml_parse_nest(matroska, syntax->def.n, data); |
| 1045 | case EBML_PASS: |
| 1046 | return ebml_parse_id(matroska, syntax->def.n, id, data); |
| 1047 | case EBML_STOP: |
| 1048 | return 1; |
Michael Niedermayer | 668c873 | 2012-08-04 00:27:51 | [diff] [blame] | 1049 | default: |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1050 | if (ffio_limit(pb, length) != length) |
Michael Niedermayer | 668c873 | 2012-08-04 00:27:51 | [diff] [blame] | 1051 | return AVERROR(EIO); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1052 | return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1053 | } |
| 1054 | if (res == AVERROR_INVALIDDATA) |
| 1055 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n"); |
| 1056 | else if (res == AVERROR(EIO)) |
| 1057 | av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n"); |
| 1058 | return res; |
| 1059 | } |
| 1060 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1061 | static void ebml_free(EbmlSyntax *syntax, void *data) |
| 1062 | { |
| 1063 | int i, j; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1064 | for (i = 0; syntax[i].id; i++) { |
| 1065 | void *data_off = (char *) data + syntax[i].data_offset; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1066 | switch (syntax[i].type) { |
| 1067 | case EBML_STR: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1068 | case EBML_UTF8: |
| 1069 | av_freep(data_off); |
| 1070 | break; |
| 1071 | case EBML_BIN: |
| 1072 | av_freep(&((EbmlBin *) data_off)->data); |
| 1073 | break; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1074 | case EBML_NEST: |
| 1075 | if (syntax[i].list_elem_size) { |
| 1076 | EbmlList *list = data_off; |
| 1077 | char *ptr = list->elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1078 | for (j = 0; j < list->nb_elem; |
| 1079 | j++, ptr += syntax[i].list_elem_size) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1080 | ebml_free(syntax[i].def.n, ptr); |
| 1081 | av_free(list->elem); |
| 1082 | } else |
| 1083 | ebml_free(syntax[i].def.n, data_off); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1084 | default: |
| 1085 | break; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1086 | } |
| 1087 | } |
| 1088 | } |
| 1089 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1090 | /* |
| 1091 | * Autodetecting... |
| 1092 | */ |
| 1093 | static int matroska_probe(AVProbeData *p) |
| 1094 | { |
| 1095 | uint64_t total = 0; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1096 | int len_mask = 0x80, size = 1, n = 1, i; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1097 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1098 | /* EBML header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1099 | if (AV_RB32(p->buf) != EBML_ID_HEADER) |
| 1100 | return 0; |
| 1101 | |
| 1102 | /* length of header */ |
| 1103 | total = p->buf[4]; |
| 1104 | while (size <= 8 && !(total & len_mask)) { |
| 1105 | size++; |
| 1106 | len_mask >>= 1; |
| 1107 | } |
| 1108 | if (size > 8) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1109 | return 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1110 | total &= (len_mask - 1); |
| 1111 | while (n < size) |
| 1112 | total = (total << 8) | p->buf[4 + n++]; |
| 1113 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1114 | /* Does the probe data contain the whole header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1115 | if (p->buf_size < 4 + size + total) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1116 | return 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1117 | |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1118 | /* The header should contain a known document type. For now, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1119 | * we don't parse the whole header but simply check for the |
| 1120 | * availability of that array of characters inside the header. |
| 1121 | * Not fully fool-proof, but good enough. */ |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1122 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) { |
| 1123 | int probelen = strlen(matroska_doctypes[i]); |
Chris Evans | 69619a1 | 2011-07-20 00:51:48 | [diff] [blame] | 1124 | if (total < probelen) |
| 1125 | continue; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1126 | for (n = 4 + size; n <= 4 + size + total - probelen; n++) |
| 1127 | if (!memcmp(p->buf + n, matroska_doctypes[i], probelen)) |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1128 | return AVPROBE_SCORE_MAX; |
| 1129 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1130 | |
David Conrad | c7b913c | 2010-05-22 01:41:35 | [diff] [blame] | 1131 | // probably valid EBML header but no recognized doctype |
Diego Biurrun | e0f8be6 | 2013-03-25 15:12:51 | [diff] [blame] | 1132 | return AVPROBE_SCORE_EXTENSION; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1133 | } |
| 1134 | |
| 1135 | static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska, |
| 1136 | int num) |
| 1137 | { |
| 1138 | MatroskaTrack *tracks = matroska->tracks.elem; |
| 1139 | int i; |
| 1140 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1141 | for (i = 0; i < matroska->tracks.nb_elem; i++) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1142 | if (tracks[i].num == num) |
| 1143 | return &tracks[i]; |
| 1144 | |
| 1145 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num); |
| 1146 | return NULL; |
| 1147 | } |
| 1148 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1149 | static int matroska_decode_buffer(uint8_t **buf, int *buf_size, |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1150 | MatroskaTrack *track) |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1151 | { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1152 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1153 | uint8_t *data = *buf; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1154 | int isize = *buf_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1155 | uint8_t *pkt_data = NULL; |
Diego Biurrun | 529506b | 2012-02-12 09:58:46 | [diff] [blame] | 1156 | uint8_t av_unused *newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1157 | int pkt_size = isize; |
| 1158 | int result = 0; |
| 1159 | int olen; |
| 1160 | |
Michael Niedermayer | 4b7c523 | 2012-06-14 23:29:30 | [diff] [blame] | 1161 | if (pkt_size >= 10000000U) |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1162 | return AVERROR_INVALIDDATA; |
Aurelien Jacobs | 4f90688 | 2010-08-17 14:05:23 | [diff] [blame] | 1163 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1164 | switch (encodings[0].compression.algo) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1165 | case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP: |
| 1166 | { |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1167 | int header_size = encodings[0].compression.settings.size; |
| 1168 | uint8_t *header = encodings[0].compression.settings.data; |
| 1169 | |
Michael Niedermayer | 1df2e3c | 2012-09-20 11:30:44 | [diff] [blame] | 1170 | if (header_size && !header) { |
Michael Niedermayer | 0efcf16 | 2012-11-23 17:10:02 | [diff] [blame] | 1171 | av_log(NULL, AV_LOG_ERROR, "Compression size but no data in headerstrip\n"); |
Michael Niedermayer | 2677697 | 2012-04-17 15:12:22 | [diff] [blame] | 1172 | return -1; |
| 1173 | } |
Michael Niedermayer | 1df2e3c | 2012-09-20 11:30:44 | [diff] [blame] | 1174 | |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1175 | if (!header_size) |
| 1176 | return 0; |
| 1177 | |
| 1178 | pkt_size = isize + header_size; |
| 1179 | pkt_data = av_malloc(pkt_size); |
| 1180 | if (!pkt_data) |
| 1181 | return AVERROR(ENOMEM); |
| 1182 | |
| 1183 | memcpy(pkt_data, header, header_size); |
| 1184 | memcpy(pkt_data + header_size, data, isize); |
| 1185 | break; |
| 1186 | } |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1187 | #if CONFIG_LZO |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1188 | case MATROSKA_TRACK_ENCODING_COMP_LZO: |
| 1189 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1190 | olen = pkt_size *= 3; |
Luca Barbato | 581281e | 2012-09-14 16:39:58 | [diff] [blame] | 1191 | newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING); |
| 1192 | if (!newpktdata) { |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1193 | result = AVERROR(ENOMEM); |
Luca Barbato | 581281e | 2012-09-14 16:39:58 | [diff] [blame] | 1194 | goto failed; |
| 1195 | } |
| 1196 | pkt_data = newpktdata; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1197 | result = av_lzo1x_decode(pkt_data, &olen, data, &isize); |
| 1198 | } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1199 | if (result) { |
| 1200 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1201 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1202 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1203 | pkt_size -= olen; |
| 1204 | break; |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1205 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1206 | #if CONFIG_ZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1207 | case MATROSKA_TRACK_ENCODING_COMP_ZLIB: |
| 1208 | { |
| 1209 | z_stream zstream = { 0 }; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1210 | if (inflateInit(&zstream) != Z_OK) |
| 1211 | return -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1212 | zstream.next_in = data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1213 | zstream.avail_in = isize; |
| 1214 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1215 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1216 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 1217 | if (!newpktdata) { |
| 1218 | inflateEnd(&zstream); |
| 1219 | goto failed; |
| 1220 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1221 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1222 | zstream.avail_out = pkt_size - zstream.total_out; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1223 | zstream.next_out = pkt_data + zstream.total_out; |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 1224 | if (pkt_data) { |
| 1225 | result = inflate(&zstream, Z_NO_FLUSH); |
| 1226 | } else |
| 1227 | result = Z_MEM_ERROR; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1228 | } while (result == Z_OK && pkt_size < 10000000); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1229 | pkt_size = zstream.total_out; |
| 1230 | inflateEnd(&zstream); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1231 | if (result != Z_STREAM_END) { |
| 1232 | if (result == Z_MEM_ERROR) |
| 1233 | result = AVERROR(ENOMEM); |
| 1234 | else |
| 1235 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1236 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1237 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1238 | break; |
| 1239 | } |
| 1240 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1241 | #if CONFIG_BZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1242 | case MATROSKA_TRACK_ENCODING_COMP_BZLIB: |
| 1243 | { |
| 1244 | bz_stream bzstream = { 0 }; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1245 | if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK) |
| 1246 | return -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1247 | bzstream.next_in = data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1248 | bzstream.avail_in = isize; |
| 1249 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1250 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1251 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 1252 | if (!newpktdata) { |
| 1253 | BZ2_bzDecompressEnd(&bzstream); |
| 1254 | goto failed; |
| 1255 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1256 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1257 | bzstream.avail_out = pkt_size - bzstream.total_out_lo32; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1258 | bzstream.next_out = pkt_data + bzstream.total_out_lo32; |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 1259 | if (pkt_data) { |
| 1260 | result = BZ2_bzDecompress(&bzstream); |
| 1261 | } else |
| 1262 | result = BZ_MEM_ERROR; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1263 | } while (result == BZ_OK && pkt_size < 10000000); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1264 | pkt_size = bzstream.total_out_lo32; |
| 1265 | BZ2_bzDecompressEnd(&bzstream); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1266 | if (result != BZ_STREAM_END) { |
| 1267 | if (result == BZ_MEM_ERROR) |
| 1268 | result = AVERROR(ENOMEM); |
| 1269 | else |
| 1270 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1271 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1272 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1273 | break; |
| 1274 | } |
| 1275 | #endif |
Aurelien Jacobs | 28f27e0 | 2008-08-20 23:08:07 | [diff] [blame] | 1276 | default: |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1277 | return AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1278 | } |
| 1279 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1280 | *buf = pkt_data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1281 | *buf_size = pkt_size; |
| 1282 | return 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1283 | |
| 1284 | failed: |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1285 | av_free(pkt_data); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1286 | return result; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1287 | } |
| 1288 | |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 1289 | #if FF_API_ASS_SSA |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1290 | static void matroska_fix_ass_packet(MatroskaDemuxContext *matroska, |
Aurelien Jacobs | e7d4b74 | 2008-09-28 22:55:28 | [diff] [blame] | 1291 | AVPacket *pkt, uint64_t display_duration) |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1292 | { |
Anton Khirnov | 1afddbe | 2012-10-31 07:53:18 | [diff] [blame] | 1293 | AVBufferRef *line; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1294 | char *layer, *ptr = pkt->data, *end = ptr + pkt->size; |
| 1295 | |
| 1296 | for (; *ptr != ',' && ptr < end - 1; ptr++) |
| 1297 | ; |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1298 | if (*ptr == ',') |
Clément Bœsch | b443447 | 2011-05-29 19:02:20 | [diff] [blame] | 1299 | ptr++; |
| 1300 | layer = ptr; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1301 | for (; *ptr != ',' && ptr < end - 1; ptr++) |
| 1302 | ; |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1303 | if (*ptr == ',') { |
Aurelien Jacobs | e7d4b74 | 2008-09-28 22:55:28 | [diff] [blame] | 1304 | int64_t end_pts = pkt->pts + display_duration; |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1305 | int sc = matroska->time_scale * pkt->pts / 10000000; |
| 1306 | int ec = matroska->time_scale * end_pts / 10000000; |
| 1307 | int sh, sm, ss, eh, em, es, len; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1308 | sh = sc / 360000; |
| 1309 | sc -= 360000 * sh; |
| 1310 | sm = sc / 6000; |
| 1311 | sc -= 6000 * sm; |
| 1312 | ss = sc / 100; |
| 1313 | sc -= 100 * ss; |
| 1314 | eh = ec / 360000; |
| 1315 | ec -= 360000 * eh; |
| 1316 | em = ec / 6000; |
| 1317 | ec -= 6000 * em; |
| 1318 | es = ec / 100; |
| 1319 | ec -= 100 * es; |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1320 | *ptr++ = '\0'; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1321 | len = 50 + end - ptr + FF_INPUT_BUFFER_PADDING_SIZE; |
Anton Khirnov | 1afddbe | 2012-10-31 07:53:18 | [diff] [blame] | 1322 | if (!(line = av_buffer_alloc(len))) |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1323 | return; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1324 | snprintf(line->data, len, |
| 1325 | "Dialogue: %s,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s\r\n", |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1326 | layer, sh, sm, ss, sc, eh, em, es, ec, ptr); |
Anton Khirnov | 1afddbe | 2012-10-31 07:53:18 | [diff] [blame] | 1327 | av_buffer_unref(&pkt->buf); |
| 1328 | pkt->buf = line; |
| 1329 | pkt->data = line->data; |
| 1330 | pkt->size = strlen(line->data); |
Aurelien Jacobs | 3eb9bfb | 2008-09-04 23:26:12 | [diff] [blame] | 1331 | } |
| 1332 | } |
| 1333 | |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 1334 | static int matroska_merge_packets(AVPacket *out, AVPacket *in) |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1335 | { |
Nicolas George | dcd207c | 2012-04-16 16:02:02 | [diff] [blame] | 1336 | int ret = av_grow_packet(out, in->size); |
| 1337 | if (ret < 0) |
| 1338 | return ret; |
Anton Khirnov | 34871be | 2012-11-01 05:34:41 | [diff] [blame] | 1339 | |
Nicolas George | dcd207c | 2012-04-16 16:02:02 | [diff] [blame] | 1340 | memcpy(out->data + out->size - in->size, in->data, in->size); |
Anton Khirnov | 34871be | 2012-11-01 05:34:41 | [diff] [blame] | 1341 | |
| 1342 | av_free_packet(in); |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1343 | av_free(in); |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 1344 | return 0; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1345 | } |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 1346 | #endif |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 1347 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1348 | static void matroska_convert_tag(AVFormatContext *s, EbmlList *list, |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1349 | AVDictionary **metadata, char *prefix) |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1350 | { |
| 1351 | MatroskaTag *tags = list->elem; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1352 | char key[1024]; |
| 1353 | int i; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1354 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1355 | for (i = 0; i < list->nb_elem; i++) { |
| 1356 | const char *lang = tags[i].lang && |
| 1357 | strcmp(tags[i].lang, "und") ? tags[i].lang : NULL; |
Anton Khirnov | bf800c7 | 2010-11-03 06:29:04 | [diff] [blame] | 1358 | |
| 1359 | if (!tags[i].name) { |
| 1360 | av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n"); |
| 1361 | continue; |
| 1362 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1363 | if (prefix) |
| 1364 | snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name); |
| 1365 | else |
| 1366 | av_strlcpy(key, tags[i].name, sizeof(key)); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1367 | if (tags[i].def || !lang) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1368 | av_dict_set(metadata, key, tags[i].string, 0); |
| 1369 | if (tags[i].sub.nb_elem) |
| 1370 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1371 | } |
| 1372 | if (lang) { |
| 1373 | av_strlcat(key, "-", sizeof(key)); |
| 1374 | av_strlcat(key, lang, sizeof(key)); |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1375 | av_dict_set(metadata, key, tags[i].string, 0); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1376 | if (tags[i].sub.nb_elem) |
| 1377 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
| 1378 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1379 | } |
Anton Khirnov | ad7768f | 2010-10-16 13:20:41 | [diff] [blame] | 1380 | ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1381 | } |
| 1382 | |
| 1383 | static void matroska_convert_tags(AVFormatContext *s) |
| 1384 | { |
| 1385 | MatroskaDemuxContext *matroska = s->priv_data; |
| 1386 | MatroskaTags *tags = matroska->tags.elem; |
| 1387 | int i, j; |
| 1388 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1389 | for (i = 0; i < matroska->tags.nb_elem; i++) { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1390 | if (tags[i].target.attachuid) { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 1391 | MatroskaAttachment *attachment = matroska->attachments.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1392 | for (j = 0; j < matroska->attachments.nb_elem; j++) |
| 1393 | if (attachment[j].uid == tags[i].target.attachuid && |
| 1394 | attachment[j].stream) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1395 | matroska_convert_tag(s, &tags[i].tag, |
| 1396 | &attachment[j].stream->metadata, NULL); |
| 1397 | } else if (tags[i].target.chapteruid) { |
| 1398 | MatroskaChapter *chapter = matroska->chapters.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1399 | for (j = 0; j < matroska->chapters.nb_elem; j++) |
| 1400 | if (chapter[j].uid == tags[i].target.chapteruid && |
| 1401 | chapter[j].chapter) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1402 | matroska_convert_tag(s, &tags[i].tag, |
| 1403 | &chapter[j].chapter->metadata, NULL); |
| 1404 | } else if (tags[i].target.trackuid) { |
| 1405 | MatroskaTrack *track = matroska->tracks.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1406 | for (j = 0; j < matroska->tracks.nb_elem; j++) |
Aurelien Jacobs | 2851b1f | 2011-03-23 23:28:19 | [diff] [blame] | 1407 | if (track[j].uid == tags[i].target.trackuid && track[j].stream) |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1408 | matroska_convert_tag(s, &tags[i].tag, |
| 1409 | &track[j].stream->metadata, NULL); |
| 1410 | } else { |
Aurelien Jacobs | 4f909c7 | 2009-06-13 22:29:38 | [diff] [blame] | 1411 | matroska_convert_tag(s, &tags[i].tag, &s->metadata, |
| 1412 | tags[i].target.type); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1413 | } |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1414 | } |
| 1415 | } |
| 1416 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1417 | static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, |
| 1418 | int idx) |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1419 | { |
| 1420 | EbmlList *seekhead_list = &matroska->seekhead; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1421 | uint32_t level_up = matroska->level_up; |
| 1422 | uint32_t saved_id = matroska->current_id; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1423 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 1424 | int64_t before_pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1425 | MatroskaLevel level; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1426 | int64_t offset; |
| 1427 | int ret = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1428 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1429 | if (idx >= seekhead_list->nb_elem || |
| 1430 | seekhead[idx].id == MATROSKA_ID_SEEKHEAD || |
| 1431 | seekhead[idx].id == MATROSKA_ID_CLUSTER) |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1432 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1433 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1434 | /* seek */ |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1435 | offset = seekhead[idx].pos + matroska->segment_start; |
| 1436 | if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) { |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1437 | /* We don't want to lose our seekhead level, so we add |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1438 | * a dummy. This is a crude hack. */ |
| 1439 | if (matroska->num_levels == EBML_MAX_DEPTH) { |
| 1440 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1441 | "Max EBML element depth (%d) reached, " |
| 1442 | "cannot parse further.\n", EBML_MAX_DEPTH); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1443 | ret = AVERROR_INVALIDDATA; |
| 1444 | } else { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1445 | level.start = 0; |
| 1446 | level.length = (uint64_t) -1; |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1447 | matroska->levels[matroska->num_levels] = level; |
| 1448 | matroska->num_levels++; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1449 | matroska->current_id = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1450 | |
Dustin Brody | 4a9628f | 2011-09-08 22:43:32 | [diff] [blame] | 1451 | ret = ebml_parse(matroska, matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1452 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1453 | /* remove dummy level */ |
| 1454 | while (matroska->num_levels) { |
| 1455 | uint64_t length = matroska->levels[--matroska->num_levels].length; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1456 | if (length == (uint64_t) -1) |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1457 | break; |
| 1458 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1459 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1460 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1461 | /* seek back */ |
Anton Khirnov | 6b4aa5d | 2011-02-28 13:57:54 | [diff] [blame] | 1462 | avio_seek(matroska->ctx->pb, before_pos, SEEK_SET); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1463 | matroska->level_up = level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1464 | matroska->current_id = saved_id; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1465 | |
| 1466 | return ret; |
| 1467 | } |
| 1468 | |
| 1469 | static void matroska_execute_seekhead(MatroskaDemuxContext *matroska) |
| 1470 | { |
| 1471 | EbmlList *seekhead_list = &matroska->seekhead; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1472 | int64_t before_pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | f06a488 | 2008-08-05 00:41:01 | [diff] [blame] | 1473 | int i; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1474 | |
Reimar Döffinger | 120a083 | 2010-06-08 19:31:08 | [diff] [blame] | 1475 | // we should not do any seeking in the streaming case |
Anton Khirnov | 8978fed | 2011-03-05 20:06:46 | [diff] [blame] | 1476 | if (!matroska->ctx->pb->seekable || |
Reimar Döffinger | 120a083 | 2010-06-08 19:31:08 | [diff] [blame] | 1477 | (matroska->ctx->flags & AVFMT_FLAG_IGNIDX)) |
| 1478 | return; |
| 1479 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1480 | for (i = 0; i < seekhead_list->nb_elem; i++) { |
Chris Evans | f35e037 | 2012-01-04 15:33:34 | [diff] [blame] | 1481 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1482 | if (seekhead[i].pos <= before_pos) |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1483 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1484 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1485 | // defer cues parsing until we actually need cue data. |
| 1486 | if (seekhead[i].id == MATROSKA_ID_CUES) { |
| 1487 | matroska->cues_parsing_deferred = 1; |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1488 | continue; |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1489 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1490 | |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 1491 | if (matroska_parse_seekhead_entry(matroska, i) < 0) { |
| 1492 | // mark index as broken |
| 1493 | matroska->cues_parsing_deferred = -1; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1494 | break; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 1495 | } |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1496 | } |
| 1497 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1498 | |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1499 | static void matroska_add_index_entries(MatroskaDemuxContext *matroska) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1500 | { |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1501 | EbmlList *index_list; |
| 1502 | MatroskaIndex *index; |
| 1503 | int index_scale = 1; |
| 1504 | int i, j; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1505 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1506 | index_list = &matroska->index; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1507 | index = index_list->elem; |
| 1508 | if (index_list->nb_elem && |
| 1509 | index[0].time > 1E14 / matroska->time_scale) { |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1510 | av_log(matroska->ctx, AV_LOG_WARNING, "Working around broken index.\n"); |
| 1511 | index_scale = matroska->time_scale; |
| 1512 | } |
| 1513 | for (i = 0; i < index_list->nb_elem; i++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1514 | EbmlList *pos_list = &index[i].pos; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1515 | MatroskaIndexPos *pos = pos_list->elem; |
| 1516 | for (j = 0; j < pos_list->nb_elem; j++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1517 | MatroskaTrack *track = matroska_find_track_by_num(matroska, |
| 1518 | pos[j].track); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1519 | if (track && track->stream) |
| 1520 | av_add_index_entry(track->stream, |
| 1521 | pos[j].pos + matroska->segment_start, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1522 | index[i].time / index_scale, 0, 0, |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1523 | AVINDEX_KEYFRAME); |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1524 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1525 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1526 | } |
| 1527 | |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1528 | static void matroska_parse_cues(MatroskaDemuxContext *matroska) { |
| 1529 | EbmlList *seekhead_list = &matroska->seekhead; |
| 1530 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
| 1531 | int i; |
| 1532 | |
| 1533 | for (i = 0; i < seekhead_list->nb_elem; i++) |
| 1534 | if (seekhead[i].id == MATROSKA_ID_CUES) |
| 1535 | break; |
Michael Niedermayer | ac75e0c | 2013-03-22 17:04:17 | [diff] [blame] | 1536 | av_assert1(i <= seekhead_list->nb_elem); |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1537 | |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 1538 | if (matroska_parse_seekhead_entry(matroska, i) < 0) |
| 1539 | matroska->cues_parsing_deferred = -1; |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1540 | matroska_add_index_entries(matroska); |
| 1541 | } |
| 1542 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1543 | static int matroska_aac_profile(char *codec_id) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1544 | { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1545 | static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" }; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1546 | int profile; |
| 1547 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1548 | for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1549 | if (strstr(codec_id, aac_profiles[profile])) |
| 1550 | break; |
| 1551 | return profile + 1; |
| 1552 | } |
| 1553 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1554 | static int matroska_aac_sri(int samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1555 | { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1556 | int sri; |
| 1557 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1558 | for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++) |
Anton Khirnov | 59a9a23 | 2011-10-17 07:28:53 | [diff] [blame] | 1559 | if (avpriv_mpeg4audio_sample_rates[sri] == samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1560 | break; |
| 1561 | return sri; |
| 1562 | } |
| 1563 | |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 1564 | static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc) |
| 1565 | { |
| 1566 | char buffer[32]; |
| 1567 | /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */ |
| 1568 | time_t creation_time = date_utc / 1000000000 + 978307200; |
| 1569 | struct tm *ptm = gmtime(&creation_time); |
| 1570 | if (!ptm) return; |
| 1571 | strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm); |
| 1572 | av_dict_set(metadata, "creation_time", buffer, 0); |
| 1573 | } |
| 1574 | |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1575 | static int matroska_parse_flac(AVFormatContext *s, |
| 1576 | MatroskaTrack *track, |
| 1577 | int *offset) |
| 1578 | { |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 1579 | AVStream *st = track->stream; |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1580 | uint8_t *p = track->codec_priv.data; |
| 1581 | int size = track->codec_priv.size; |
| 1582 | |
| 1583 | if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) { |
| 1584 | av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n"); |
| 1585 | track->codec_priv.size = 0; |
| 1586 | return 0; |
| 1587 | } |
| 1588 | *offset = 8; |
| 1589 | track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE; |
| 1590 | |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 1591 | p += track->codec_priv.size; |
| 1592 | size -= track->codec_priv.size; |
| 1593 | |
| 1594 | /* parse the remaining metadata blocks if present */ |
| 1595 | while (size >= 4) { |
| 1596 | int block_last, block_type, block_size; |
| 1597 | |
| 1598 | flac_parse_block_header(p, &block_last, &block_type, &block_size); |
| 1599 | |
| 1600 | p += 4; |
| 1601 | size -= 4; |
| 1602 | if (block_size > size) |
| 1603 | return 0; |
| 1604 | |
| 1605 | /* check for the channel mask */ |
| 1606 | if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) { |
| 1607 | AVDictionary *dict = NULL; |
| 1608 | AVDictionaryEntry *chmask; |
| 1609 | |
| 1610 | ff_vorbis_comment(s, &dict, p, block_size, 0); |
| 1611 | chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); |
| 1612 | if (chmask) { |
| 1613 | uint64_t mask = strtol(chmask->value, NULL, 0); |
| 1614 | if (!mask || mask & ~0x3ffffULL) { |
| 1615 | av_log(s, AV_LOG_WARNING, |
| 1616 | "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n"); |
| 1617 | } else |
| 1618 | st->codec->channel_layout = mask; |
| 1619 | } |
| 1620 | av_dict_free(&dict); |
| 1621 | } |
| 1622 | |
| 1623 | p += block_size; |
| 1624 | size -= block_size; |
| 1625 | } |
| 1626 | |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1627 | return 0; |
| 1628 | } |
| 1629 | |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 1630 | static int matroska_parse_tracks(AVFormatContext *s) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1631 | { |
| 1632 | MatroskaDemuxContext *matroska = s->priv_data; |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 1633 | MatroskaTrack *tracks = matroska->tracks.elem; |
Aurelien Jacobs | 9a9a3b0 | 2008-08-05 00:40:49 | [diff] [blame] | 1634 | AVStream *st; |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1635 | int i, j, ret; |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 1636 | int k; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1637 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1638 | for (i = 0; i < matroska->tracks.nb_elem; i++) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1639 | MatroskaTrack *track = &tracks[i]; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1640 | enum AVCodecID codec_id = AV_CODEC_ID_NONE; |
Aurelien Jacobs | dc6c36c | 2011-08-17 22:21:21 | [diff] [blame] | 1641 | EbmlList *encodings_list = &track->encodings; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1642 | MatroskaTrackEncoding *encodings = encodings_list->elem; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1643 | uint8_t *extradata = NULL; |
| 1644 | int extradata_size = 0; |
| 1645 | int extradata_offset = 0; |
Aurelien Jacobs | 5fec3a2 | 2011-06-13 23:58:11 | [diff] [blame] | 1646 | uint32_t fourcc = 0; |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 1647 | AVIOContext b; |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1648 | char* key_id_base64 = NULL; |
Carl Eugen Hoyos | 96fc290 | 2014-02-25 23:02:51 | [diff] [blame] | 1649 | int bit_depth = -1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1650 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1651 | /* Apply some sanity checks. */ |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1652 | if (track->type != MATROSKA_TRACK_TYPE_VIDEO && |
| 1653 | track->type != MATROSKA_TRACK_TYPE_AUDIO && |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 1654 | track->type != MATROSKA_TRACK_TYPE_SUBTITLE && |
| 1655 | track->type != MATROSKA_TRACK_TYPE_METADATA) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1656 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1657 | "Unknown or unsupported track type %"PRIu64"\n", |
| 1658 | track->type); |
| 1659 | continue; |
| 1660 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1661 | if (track->codec_id == NULL) |
| 1662 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1663 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1664 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
Mans Rullgard | 3c58300 | 2012-04-18 12:48:20 | [diff] [blame] | 1665 | if (!track->default_duration && track->video.frame_rate > 0) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1666 | track->default_duration = 1000000000 / track->video.frame_rate; |
Michael Niedermayer | f51ce34 | 2013-04-03 21:40:13 | [diff] [blame] | 1667 | if (track->video.display_width == -1) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1668 | track->video.display_width = track->video.pixel_width; |
Michael Niedermayer | f51ce34 | 2013-04-03 21:40:13 | [diff] [blame] | 1669 | if (track->video.display_height == -1) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1670 | track->video.display_height = track->video.pixel_height; |
Aurelien Jacobs | fdb5e02 | 2011-06-14 00:00:06 | [diff] [blame] | 1671 | if (track->video.color_space.size == 4) |
| 1672 | fourcc = AV_RL32(track->video.color_space.data); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1673 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
| 1674 | if (!track->audio.out_samplerate) |
| 1675 | track->audio.out_samplerate = track->audio.samplerate; |
| 1676 | } |
| 1677 | if (encodings_list->nb_elem > 1) { |
| 1678 | av_log(matroska->ctx, AV_LOG_ERROR, |
Dustin Brody | d7d2f0e | 2011-09-15 07:34:38 | [diff] [blame] | 1679 | "Multiple combined encodings not supported"); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1680 | } else if (encodings_list->nb_elem == 1) { |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1681 | if (encodings[0].type) { |
| 1682 | if (encodings[0].encryption.key_id.size > 0) { |
| 1683 | /* Save the encryption key id to be stored later as a |
| 1684 | metadata tag. */ |
| 1685 | const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size); |
| 1686 | key_id_base64 = av_malloc(b64_size); |
| 1687 | if (key_id_base64 == NULL) |
| 1688 | return AVERROR(ENOMEM); |
| 1689 | |
| 1690 | av_base64_encode(key_id_base64, b64_size, |
| 1691 | encodings[0].encryption.key_id.data, |
| 1692 | encodings[0].encryption.key_id.size); |
| 1693 | } else { |
| 1694 | encodings[0].scope = 0; |
| 1695 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1696 | "Unsupported encoding type"); |
| 1697 | } |
| 1698 | } else if ( |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1699 | #if CONFIG_ZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1700 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB && |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1701 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1702 | #if CONFIG_BZLIB |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1703 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB && |
| 1704 | #endif |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1705 | #if CONFIG_LZO |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1706 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO && |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1707 | #endif |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1708 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1709 | encodings[0].scope = 0; |
| 1710 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1711 | "Unsupported encoding type"); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1712 | } else if (track->codec_priv.size && encodings[0].scope & 2) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1713 | uint8_t *codec_priv = track->codec_priv.data; |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1714 | int ret = matroska_decode_buffer(&track->codec_priv.data, |
| 1715 | &track->codec_priv.size, |
| 1716 | track); |
| 1717 | if (ret < 0) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1718 | track->codec_priv.data = NULL; |
| 1719 | track->codec_priv.size = 0; |
| 1720 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1721 | "Failed to decode codec private data\n"); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1722 | } |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1723 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1724 | if (codec_priv != track->codec_priv.data) |
| 1725 | av_free(codec_priv); |
| 1726 | } |
| 1727 | } |
| 1728 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1729 | for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) { |
| 1730 | if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id, |
| 1731 | strlen(ff_mkv_codec_tags[j].str))) { |
| 1732 | codec_id = ff_mkv_codec_tags[j].id; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1733 | break; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1734 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1735 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1736 | |
Anton Khirnov | 3b3bbdd | 2011-06-18 09:43:24 | [diff] [blame] | 1737 | st = track->stream = avformat_new_stream(s, NULL); |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1738 | if (st == NULL) { |
| 1739 | av_free(key_id_base64); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1740 | return AVERROR(ENOMEM); |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | if (key_id_base64) { |
| 1744 | /* export encryption key id as base64 metadata tag */ |
| 1745 | av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0); |
| 1746 | av_freep(&key_id_base64); |
| 1747 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1748 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1749 | if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1750 | track->codec_priv.size >= 40 && |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1751 | track->codec_priv.data != NULL) { |
| 1752 | track->ms_compat = 1; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1753 | bit_depth = AV_RL16(track->codec_priv.data + 14); |
| 1754 | fourcc = AV_RL32(track->codec_priv.data + 16); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1755 | codec_id = ff_codec_get_id(ff_codec_bmp_tags, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1756 | fourcc); |
Carl Eugen Hoyos | ade5851 | 2014-04-27 07:34:13 | [diff] [blame] | 1757 | if (!codec_id) |
| 1758 | codec_id = ff_codec_get_id(ff_codec_movvideo_tags, |
| 1759 | fourcc); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1760 | extradata_offset = 40; |
| 1761 | } else if (!strcmp(track->codec_id, "A_MS/ACM") && |
| 1762 | track->codec_priv.size >= 14 && |
| 1763 | track->codec_priv.data != NULL) { |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 1764 | int ret; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1765 | ffio_init_context(&b, track->codec_priv.data, |
| 1766 | track->codec_priv.size, |
Michael Niedermayer | d0b4504 | 2013-01-04 12:00:14 | [diff] [blame] | 1767 | 0, NULL, NULL, NULL, NULL); |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 1768 | ret = ff_get_wav_header(&b, st->codec, track->codec_priv.size); |
| 1769 | if (ret < 0) |
| 1770 | return ret; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1771 | codec_id = st->codec->codec_id; |
Aurelien Jacobs | 038146e | 2009-10-01 21:14:05 | [diff] [blame] | 1772 | extradata_offset = FFMIN(track->codec_priv.size, 18); |
Michael Niedermayer | 4821858 | 2014-01-19 17:35:33 | [diff] [blame] | 1773 | } else if (!strcmp(track->codec_id, "A_QUICKTIME") |
| 1774 | && (track->codec_priv.size >= 86) |
| 1775 | && (track->codec_priv.data != NULL)) { |
| 1776 | fourcc = AV_RL32(track->codec_priv.data + 4); |
| 1777 | codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc); |
| 1778 | if (ff_codec_get_id(ff_codec_movaudio_tags, AV_RL32(track->codec_priv.data))) { |
| 1779 | fourcc = AV_RL32(track->codec_priv.data); |
| 1780 | codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc); |
| 1781 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1782 | } else if (!strcmp(track->codec_id, "V_QUICKTIME") && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1783 | (track->codec_priv.size >= 21) && |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1784 | (track->codec_priv.data != NULL)) { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1785 | fourcc = AV_RL32(track->codec_priv.data + 4); |
Michael Niedermayer | 6cb2085 | 2012-02-15 23:49:16 | [diff] [blame] | 1786 | codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc); |
Michael Niedermayer | 5800b08 | 2014-01-19 17:35:33 | [diff] [blame] | 1787 | if (ff_codec_get_id(ff_codec_movvideo_tags, AV_RL32(track->codec_priv.data))) { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1788 | fourcc = AV_RL32(track->codec_priv.data); |
Michael Niedermayer | 5800b08 | 2014-01-19 17:35:33 | [diff] [blame] | 1789 | codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc); |
| 1790 | } |
Michael Niedermayer | 9d13432 | 2014-01-19 19:13:38 | [diff] [blame] | 1791 | if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI ")) |
| 1792 | codec_id = AV_CODEC_ID_SVQ3; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1793 | } else if (codec_id == AV_CODEC_ID_PCM_S16BE) { |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 1794 | switch (track->audio.bitdepth) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1795 | case 8: |
| 1796 | codec_id = AV_CODEC_ID_PCM_U8; |
| 1797 | break; |
| 1798 | case 24: |
| 1799 | codec_id = AV_CODEC_ID_PCM_S24BE; |
| 1800 | break; |
| 1801 | case 32: |
| 1802 | codec_id = AV_CODEC_ID_PCM_S32BE; |
| 1803 | break; |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 1804 | } |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1805 | } else if (codec_id == AV_CODEC_ID_PCM_S16LE) { |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 1806 | switch (track->audio.bitdepth) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1807 | case 8: |
| 1808 | codec_id = AV_CODEC_ID_PCM_U8; |
| 1809 | break; |
| 1810 | case 24: |
| 1811 | codec_id = AV_CODEC_ID_PCM_S24LE; |
| 1812 | break; |
| 1813 | case 32: |
| 1814 | codec_id = AV_CODEC_ID_PCM_S32LE; |
| 1815 | break; |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 1816 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1817 | } else if (codec_id == AV_CODEC_ID_PCM_F32LE && |
| 1818 | track->audio.bitdepth == 64) { |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1819 | codec_id = AV_CODEC_ID_PCM_F64LE; |
| 1820 | } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1821 | int profile = matroska_aac_profile(track->codec_id); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1822 | int sri = matroska_aac_sri(track->audio.samplerate); |
| 1823 | extradata = av_mallocz(5 + FF_INPUT_BUFFER_PADDING_SIZE); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1824 | if (extradata == NULL) |
Aurelien Jacobs | 28f450a | 2008-08-05 00:40:09 | [diff] [blame] | 1825 | return AVERROR(ENOMEM); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1826 | extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1); |
| 1827 | extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1828 | if (strstr(track->codec_id, "SBR")) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1829 | sri = matroska_aac_sri(track->audio.out_samplerate); |
| 1830 | extradata[2] = 0x56; |
| 1831 | extradata[3] = 0xE5; |
| 1832 | extradata[4] = 0x80 | (sri << 3); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1833 | extradata_size = 5; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 1834 | } else |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1835 | extradata_size = 2; |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 1836 | } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - FF_INPUT_BUFFER_PADDING_SIZE) { |
| 1837 | /* Only ALAC's magic cookie is stored in Matroska's track headers. |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1838 | * Create the "atom size", "tag", and "tag version" fields the |
| 1839 | * decoder expects manually. */ |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 1840 | extradata_size = 12 + track->codec_priv.size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1841 | extradata = av_mallocz(extradata_size + |
| 1842 | FF_INPUT_BUFFER_PADDING_SIZE); |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 1843 | if (extradata == NULL) |
| 1844 | return AVERROR(ENOMEM); |
| 1845 | AV_WB32(extradata, extradata_size); |
| 1846 | memcpy(&extradata[4], "alac", 4); |
| 1847 | AV_WB32(&extradata[8], 0); |
| 1848 | memcpy(&extradata[12], track->codec_priv.data, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1849 | track->codec_priv.size); |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1850 | } else if (codec_id == AV_CODEC_ID_TTA) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1851 | extradata_size = 30; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1852 | extradata = av_mallocz(extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1853 | if (extradata == NULL) |
| 1854 | return AVERROR(ENOMEM); |
Anton Khirnov | ae99313 | 2011-02-20 10:04:13 | [diff] [blame] | 1855 | ffio_init_context(&b, extradata, extradata_size, 1, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1856 | NULL, NULL, NULL, NULL); |
Anton Khirnov | e9eb8d0 | 2011-02-21 18:28:17 | [diff] [blame] | 1857 | avio_write(&b, "TTA1", 4); |
| 1858 | avio_wl16(&b, 1); |
| 1859 | avio_wl16(&b, track->audio.channels); |
| 1860 | avio_wl16(&b, track->audio.bitdepth); |
Michael Niedermayer | 338f8b2 | 2013-08-18 00:20:54 | [diff] [blame] | 1861 | if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX) |
| 1862 | return AVERROR_INVALIDDATA; |
Anton Khirnov | e9eb8d0 | 2011-02-21 18:28:17 | [diff] [blame] | 1863 | avio_wl32(&b, track->audio.out_samplerate); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1864 | avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale), |
| 1865 | track->audio.out_samplerate, |
| 1866 | AV_TIME_BASE * 1000)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1867 | } else if (codec_id == AV_CODEC_ID_RV10 || |
| 1868 | codec_id == AV_CODEC_ID_RV20 || |
| 1869 | codec_id == AV_CODEC_ID_RV30 || |
| 1870 | codec_id == AV_CODEC_ID_RV40) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1871 | extradata_offset = 26; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1872 | } else if (codec_id == AV_CODEC_ID_RA_144) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1873 | track->audio.out_samplerate = 8000; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1874 | track->audio.channels = 1; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1875 | } else if ((codec_id == AV_CODEC_ID_RA_288 || |
| 1876 | codec_id == AV_CODEC_ID_COOK || |
| 1877 | codec_id == AV_CODEC_ID_ATRAC3 || |
| 1878 | codec_id == AV_CODEC_ID_SIPR) |
| 1879 | && track->codec_priv.data) { |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1880 | int flavor; |
Michael Niedermayer | 0b27136 | 2012-04-14 17:33:24 | [diff] [blame] | 1881 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1882 | ffio_init_context(&b, track->codec_priv.data, |
| 1883 | track->codec_priv.size, |
| 1884 | 0, NULL, NULL, NULL, NULL); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 1885 | avio_skip(&b, 22); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 1886 | flavor = avio_rb16(&b); |
| 1887 | track->audio.coded_framesize = avio_rb32(&b); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 1888 | avio_skip(&b, 12); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 1889 | track->audio.sub_packet_h = avio_rb16(&b); |
| 1890 | track->audio.frame_size = avio_rb16(&b); |
| 1891 | track->audio.sub_packet_size = avio_rb16(&b); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1892 | if (flavor < 0 || |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1893 | track->audio.coded_framesize <= 0 || |
| 1894 | track->audio.sub_packet_h <= 0 || |
| 1895 | track->audio.frame_size <= 0 || |
Martin Storsjö | 569d18a | 2013-09-16 12:36:24 | [diff] [blame] | 1896 | track->audio.sub_packet_size <= 0) |
| 1897 | return AVERROR_INVALIDDATA; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1898 | track->audio.buf = av_malloc_array(track->audio.sub_packet_h, |
| 1899 | track->audio.frame_size); |
Paul B Mahol | 3e2a5b3 | 2013-09-16 18:03:27 | [diff] [blame] | 1900 | if (!track->audio.buf) |
| 1901 | return AVERROR(ENOMEM); |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1902 | if (codec_id == AV_CODEC_ID_RA_288) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1903 | st->codec->block_align = track->audio.coded_framesize; |
| 1904 | track->codec_priv.size = 0; |
| 1905 | } else { |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1906 | if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) { |
Michael Niedermayer | 62cf5c1 | 2013-08-04 19:18:49 | [diff] [blame] | 1907 | static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 }; |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1908 | track->audio.sub_packet_size = ff_sipr_subpk_size[flavor]; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1909 | st->codec->bit_rate = sipr_bit_rate[flavor]; |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 1910 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1911 | st->codec->block_align = track->audio.sub_packet_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1912 | extradata_offset = 78; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1913 | } |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1914 | } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) { |
| 1915 | ret = matroska_parse_flac(s, track, &extradata_offset); |
| 1916 | if (ret < 0) |
| 1917 | return ret; |
Carl Eugen Hoyos | 3d5c859 | 2014-04-06 18:54:48 | [diff] [blame] | 1918 | } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) { |
| 1919 | fourcc = AV_RL32(track->codec_priv.data); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1920 | } |
Aurelien Jacobs | e264440 | 2009-08-24 13:40:30 | [diff] [blame] | 1921 | track->codec_priv.size -= extradata_offset; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1922 | |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1923 | if (codec_id == AV_CODEC_ID_NONE) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1924 | av_log(matroska->ctx, AV_LOG_INFO, |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1925 | "Unknown/unsupported AVCodecID %s.\n", track->codec_id); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1926 | |
Aurelien Jacobs | 3fc9d7c | 2008-09-09 11:23:48 | [diff] [blame] | 1927 | if (track->time_scale < 0.01) |
| 1928 | track->time_scale = 1.0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1929 | avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale, |
| 1930 | 1000 * 1000 * 1000); /* 64 bit pts in ns */ |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1931 | |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 1932 | /* convert the delay from ns to the track timebase */ |
| 1933 | track->codec_delay = av_rescale_q(track->codec_delay, |
| 1934 | (AVRational){ 1, 1000000000 }, |
| 1935 | st->time_base); |
| 1936 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1937 | st->codec->codec_id = codec_id; |
Alex Sukhanov | 251c96a | 2013-12-23 09:41:35 | [diff] [blame] | 1938 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1939 | if (strcmp(track->language, "und")) |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1940 | av_dict_set(&st->metadata, "language", track->language, 0); |
| 1941 | av_dict_set(&st->metadata, "title", track->name, 0); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1942 | |
| 1943 | if (track->flag_default) |
| 1944 | st->disposition |= AV_DISPOSITION_DEFAULT; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 1945 | if (track->flag_forced) |
| 1946 | st->disposition |= AV_DISPOSITION_FORCED; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1947 | |
Aurelien Jacobs | ff0d5a7 | 2009-10-01 21:14:46 | [diff] [blame] | 1948 | if (!st->codec->extradata) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1949 | if (extradata) { |
| 1950 | st->codec->extradata = extradata; |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 1951 | st->codec->extradata_size = extradata_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1952 | } else if (track->codec_priv.data && track->codec_priv.size > 0) { |
Paul B Mahol | a807c68 | 2013-10-13 10:30:59 | [diff] [blame] | 1953 | if (ff_alloc_extradata(st->codec, track->codec_priv.size)) |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 1954 | return AVERROR(ENOMEM); |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 1955 | memcpy(st->codec->extradata, |
| 1956 | track->codec_priv.data + extradata_offset, |
| 1957 | track->codec_priv.size); |
| 1958 | } |
Aurelien Jacobs | ff0d5a7 | 2009-10-01 21:14:46 | [diff] [blame] | 1959 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1960 | |
| 1961 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 1962 | MatroskaTrackPlane *planes = track->operation.combine_planes.elem; |
| 1963 | |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 1964 | st->codec->codec_type = AVMEDIA_TYPE_VIDEO; |
Aurelien Jacobs | 5fec3a2 | 2011-06-13 23:58:11 | [diff] [blame] | 1965 | st->codec->codec_tag = fourcc; |
Carl Eugen Hoyos | 96fc290 | 2014-02-25 23:02:51 | [diff] [blame] | 1966 | if (bit_depth >= 0) |
| 1967 | st->codec->bits_per_coded_sample = bit_depth; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1968 | st->codec->width = track->video.pixel_width; |
| 1969 | st->codec->height = track->video.pixel_height; |
Aurelien Jacobs | 5972945 | 2008-08-23 23:43:20 | [diff] [blame] | 1970 | av_reduce(&st->sample_aspect_ratio.num, |
| 1971 | &st->sample_aspect_ratio.den, |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1972 | st->codec->height * track->video.display_width, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1973 | st->codec->width * track->video.display_height, |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1974 | 255); |
Yusuke Nakamura | 16b6839 | 2013-10-12 09:55:46 | [diff] [blame] | 1975 | if (st->codec->codec_id != AV_CODEC_ID_HEVC) |
| 1976 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Michael Niedermayer | 0fbeeb9 | 2013-11-01 16:57:57 | [diff] [blame] | 1977 | |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 1978 | if (track->default_duration) { |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 1979 | av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den, |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 1980 | 1000000000, track->default_duration, 30000); |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 1981 | #if FF_API_R_FRAME_RATE |
Michael Niedermayer | 6853e40 | 2013-10-05 22:07:28 | [diff] [blame] | 1982 | if (st->avg_frame_rate.num < st->avg_frame_rate.den * 1000L) |
| 1983 | st->r_frame_rate = st->avg_frame_rate; |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 1984 | #endif |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 1985 | } |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 1986 | |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 1987 | /* export stereo mode flag as metadata tag */ |
| 1988 | if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREO_MODE_COUNT) |
Clément Bœsch | ca81e3b | 2012-09-16 00:58:40 | [diff] [blame] | 1989 | av_dict_set(&st->metadata, "stereo_mode", ff_matroska_video_stereo_mode[track->video.stereo_mode], 0); |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 1990 | |
Vignesh Venkatasubramanian | ce6a8e5 | 2013-02-04 23:17:52 | [diff] [blame] | 1991 | /* export alpha mode flag as metadata tag */ |
| 1992 | if (track->video.alpha_mode) |
| 1993 | av_dict_set(&st->metadata, "alpha_mode", "1", 0); |
| 1994 | |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 1995 | /* if we have virtual track, mark the real tracks */ |
| 1996 | for (j=0; j < track->operation.combine_planes.nb_elem; j++) { |
| 1997 | char buf[32]; |
Aurelien Jacobs | b44bbf9 | 2011-05-24 21:26:24 | [diff] [blame] | 1998 | if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT) |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 1999 | continue; |
| 2000 | snprintf(buf, sizeof(buf), "%s_%d", |
Clément Bœsch | ca81e3b | 2012-09-16 00:58:40 | [diff] [blame] | 2001 | ff_matroska_video_stereo_plane[planes[j].type], i); |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2002 | for (k=0; k < matroska->tracks.nb_elem; k++) |
| 2003 | if (planes[j].uid == tracks[k].uid) { |
Aurelien Jacobs | e6ba3d4 | 2011-06-13 17:02:50 | [diff] [blame] | 2004 | av_dict_set(&s->streams[k]->metadata, |
| 2005 | "stereo_mode", buf, 0); |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 2006 | break; |
| 2007 | } |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 2008 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2009 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2010 | st->codec->codec_type = AVMEDIA_TYPE_AUDIO; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2011 | st->codec->sample_rate = track->audio.out_samplerate; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2012 | st->codec->channels = track->audio.channels; |
Carl Eugen Hoyos | 1132937 | 2014-01-15 22:37:47 | [diff] [blame] | 2013 | if (!st->codec->bits_per_coded_sample) |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2014 | st->codec->bits_per_coded_sample = track->audio.bitdepth; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2015 | if (st->codec->codec_id != AV_CODEC_ID_AAC) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2016 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 2017 | if (track->codec_delay > 0) { |
| 2018 | st->codec->delay = av_rescale_q(track->codec_delay, |
Michael Niedermayer | 8bf9056 | 2014-05-01 02:27:17 | [diff] [blame] | 2019 | st->time_base, |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 2020 | (AVRational){1, st->codec->sample_rate}); |
| 2021 | } |
| 2022 | if (track->seek_preroll > 0) { |
| 2023 | av_codec_set_seek_preroll(st->codec, |
| 2024 | av_rescale_q(track->seek_preroll, |
| 2025 | (AVRational){1, 1000000000}, |
| 2026 | (AVRational){1, st->codec->sample_rate})); |
| 2027 | } |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2028 | } else if (codec_id == AV_CODEC_ID_WEBVTT) { |
| 2029 | st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; |
| 2030 | |
| 2031 | if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) { |
| 2032 | st->disposition |= AV_DISPOSITION_CAPTIONS; |
| 2033 | } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) { |
| 2034 | st->disposition |= AV_DISPOSITION_DESCRIPTIONS; |
| 2035 | } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) { |
| 2036 | st->disposition |= AV_DISPOSITION_METADATA; |
| 2037 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2038 | } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) { |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 2039 | st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 2040 | #if FF_API_ASS_SSA |
| 2041 | if (st->codec->codec_id == AV_CODEC_ID_SSA || |
| 2042 | st->codec->codec_id == AV_CODEC_ID_ASS) |
| 2043 | #else |
| 2044 | if (st->codec->codec_id == AV_CODEC_ID_ASS) |
| 2045 | #endif |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2046 | matroska->contains_ssa = 1; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2047 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2048 | } |
| 2049 | |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2050 | return 0; |
| 2051 | } |
| 2052 | |
| 2053 | static int matroska_read_header(AVFormatContext *s) |
| 2054 | { |
| 2055 | MatroskaDemuxContext *matroska = s->priv_data; |
| 2056 | EbmlList *attachments_list = &matroska->attachments; |
| 2057 | EbmlList *chapters_list = &matroska->chapters; |
| 2058 | MatroskaAttachment *attachments; |
| 2059 | MatroskaChapter *chapters; |
| 2060 | uint64_t max_start = 0; |
| 2061 | int64_t pos; |
| 2062 | Ebml ebml = { 0 }; |
| 2063 | int i, j, res; |
| 2064 | |
| 2065 | matroska->ctx = s; |
| 2066 | |
| 2067 | /* First read the EBML header. */ |
| 2068 | if (ebml_parse(matroska, ebml_syntax, &ebml) || |
| 2069 | ebml.version > EBML_VERSION || |
| 2070 | ebml.max_size > sizeof(uint64_t) || |
| 2071 | ebml.id_length > sizeof(uint32_t) || |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 2072 | ebml.doctype_version > 3 || |
| 2073 | !ebml.doctype) { |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2074 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2075 | "EBML header using unsupported features\n" |
| 2076 | "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n", |
| 2077 | ebml.version, ebml.doctype, ebml.doctype_version); |
| 2078 | ebml_free(ebml_syntax, &ebml); |
| 2079 | return AVERROR_PATCHWELCOME; |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 2080 | } else if (ebml.doctype_version == 3) { |
| 2081 | av_log(matroska->ctx, AV_LOG_WARNING, |
| 2082 | "EBML header using unsupported features\n" |
| 2083 | "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n", |
| 2084 | ebml.version, ebml.doctype, ebml.doctype_version); |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2085 | } |
| 2086 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) |
| 2087 | if (!strcmp(ebml.doctype, matroska_doctypes[i])) |
| 2088 | break; |
| 2089 | if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) { |
| 2090 | av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype); |
| 2091 | if (matroska->ctx->error_recognition & AV_EF_EXPLODE) { |
| 2092 | ebml_free(ebml_syntax, &ebml); |
| 2093 | return AVERROR_INVALIDDATA; |
| 2094 | } |
| 2095 | } |
| 2096 | ebml_free(ebml_syntax, &ebml); |
| 2097 | |
| 2098 | /* The next thing is a segment. */ |
| 2099 | pos = avio_tell(matroska->ctx->pb); |
| 2100 | res = ebml_parse(matroska, matroska_segments, matroska); |
| 2101 | // try resyncing until we find a EBML_STOP type element. |
| 2102 | while (res != 1) { |
| 2103 | res = matroska_resync(matroska, pos); |
| 2104 | if (res < 0) |
| 2105 | return res; |
| 2106 | pos = avio_tell(matroska->ctx->pb); |
| 2107 | res = ebml_parse(matroska, matroska_segment, matroska); |
| 2108 | } |
| 2109 | matroska_execute_seekhead(matroska); |
| 2110 | |
| 2111 | if (!matroska->time_scale) |
| 2112 | matroska->time_scale = 1000000; |
| 2113 | if (matroska->duration) |
| 2114 | matroska->ctx->duration = matroska->duration * matroska->time_scale * |
| 2115 | 1000 / AV_TIME_BASE; |
| 2116 | av_dict_set(&s->metadata, "title", matroska->title, 0); |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 2117 | av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0); |
| 2118 | |
| 2119 | if (matroska->date_utc.size == 8) |
| 2120 | matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data)); |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2121 | |
| 2122 | res = matroska_parse_tracks(s); |
| 2123 | if (res < 0) |
| 2124 | return res; |
| 2125 | |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2126 | attachments = attachments_list->elem; |
| 2127 | for (j = 0; j < attachments_list->nb_elem; j++) { |
| 2128 | if (!(attachments[j].filename && attachments[j].mime && |
| 2129 | attachments[j].bin.data && attachments[j].bin.size > 0)) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2130 | av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n"); |
| 2131 | } else { |
Anton Khirnov | 3b3bbdd | 2011-06-18 09:43:24 | [diff] [blame] | 2132 | AVStream *st = avformat_new_stream(s, NULL); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2133 | if (st == NULL) |
| 2134 | break; |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2135 | av_dict_set(&st->metadata, "filename", attachments[j].filename, 0); |
| 2136 | av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2137 | st->codec->codec_id = AV_CODEC_ID_NONE; |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 2138 | st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT; |
Michael Niedermayer | fabf69f | 2014-03-07 23:13:20 | [diff] [blame] | 2139 | if (ff_alloc_extradata(st->codec, attachments[j].bin.size)) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2140 | break; |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2141 | memcpy(st->codec->extradata, attachments[j].bin.data, |
| 2142 | attachments[j].bin.size); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2143 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2144 | for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2145 | if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime, |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2146 | strlen(ff_mkv_mime_tags[i].str))) { |
| 2147 | st->codec->codec_id = ff_mkv_mime_tags[i].id; |
| 2148 | break; |
| 2149 | } |
| 2150 | } |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2151 | attachments[j].stream = st; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2152 | } |
| 2153 | } |
| 2154 | |
| 2155 | chapters = chapters_list->elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2156 | for (i = 0; i < chapters_list->nb_elem; i++) |
| 2157 | if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid && |
| 2158 | (max_start == 0 || chapters[i].start > max_start)) { |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 2159 | chapters[i].chapter = |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2160 | avpriv_new_chapter(s, chapters[i].uid, |
| 2161 | (AVRational) { 1, 1000000000 }, |
| 2162 | chapters[i].start, chapters[i].end, |
| 2163 | chapters[i].title); |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 2164 | av_dict_set(&chapters[i].chapter->metadata, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2165 | "title", chapters[i].title, 0); |
Aurelien Jacobs | e0e4be5 | 2009-01-15 00:42:57 | [diff] [blame] | 2166 | max_start = chapters[i].start; |
| 2167 | } |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2168 | |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 2169 | matroska_add_index_entries(matroska); |
| 2170 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 2171 | matroska_convert_tags(s); |
| 2172 | |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 2173 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2174 | } |
| 2175 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2176 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2177 | * Put one packet in an application-supplied AVPacket struct. |
| 2178 | * Returns 0 on success or -1 on failure. |
| 2179 | */ |
| 2180 | static int matroska_deliver_packet(MatroskaDemuxContext *matroska, |
| 2181 | AVPacket *pkt) |
| 2182 | { |
| 2183 | if (matroska->num_packets > 0) { |
| 2184 | memcpy(pkt, matroska->packets[0], sizeof(AVPacket)); |
| 2185 | av_free(matroska->packets[0]); |
| 2186 | if (matroska->num_packets > 1) { |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2187 | void *newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2188 | memmove(&matroska->packets[0], &matroska->packets[1], |
| 2189 | (matroska->num_packets - 1) * sizeof(AVPacket *)); |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2190 | newpackets = av_realloc(matroska->packets, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2191 | (matroska->num_packets - 1) * |
| 2192 | sizeof(AVPacket *)); |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2193 | if (newpackets) |
| 2194 | matroska->packets = newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2195 | } else { |
| 2196 | av_freep(&matroska->packets); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2197 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2198 | } |
| 2199 | matroska->num_packets--; |
| 2200 | return 0; |
| 2201 | } |
| 2202 | |
| 2203 | return -1; |
| 2204 | } |
| 2205 | |
| 2206 | /* |
| 2207 | * Free all packets in our internal queue. |
| 2208 | */ |
| 2209 | static void matroska_clear_queue(MatroskaDemuxContext *matroska) |
| 2210 | { |
Dale Curtis | ae3d416 | 2013-01-10 19:05:29 | [diff] [blame] | 2211 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2212 | if (matroska->packets) { |
| 2213 | int n; |
| 2214 | for (n = 0; n < matroska->num_packets; n++) { |
| 2215 | av_free_packet(matroska->packets[n]); |
| 2216 | av_free(matroska->packets[n]); |
| 2217 | } |
Aurelien Jacobs | 00a3431 | 2008-08-06 00:21:10 | [diff] [blame] | 2218 | av_freep(&matroska->packets); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2219 | matroska->num_packets = 0; |
| 2220 | } |
| 2221 | } |
| 2222 | |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2223 | static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2224 | int *buf_size, int type, |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2225 | uint32_t **lace_buf, int *laces) |
| 2226 | { |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 2227 | int res = 0, n, size = *buf_size; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2228 | uint8_t *data = *buf; |
| 2229 | uint32_t *lace_size; |
| 2230 | |
| 2231 | if (!type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2232 | *laces = 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2233 | *lace_buf = av_mallocz(sizeof(int)); |
| 2234 | if (!*lace_buf) |
| 2235 | return AVERROR(ENOMEM); |
| 2236 | |
| 2237 | *lace_buf[0] = size; |
| 2238 | return 0; |
| 2239 | } |
| 2240 | |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2241 | av_assert0(size > 0); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2242 | *laces = *data + 1; |
| 2243 | data += 1; |
| 2244 | size -= 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2245 | lace_size = av_mallocz(*laces * sizeof(int)); |
| 2246 | if (!lace_size) |
| 2247 | return AVERROR(ENOMEM); |
| 2248 | |
| 2249 | switch (type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2250 | case 0x1: /* Xiph lacing */ |
| 2251 | { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2252 | uint8_t temp; |
| 2253 | uint32_t total = 0; |
| 2254 | for (n = 0; res == 0 && n < *laces - 1; n++) { |
| 2255 | while (1) { |
Michael Niedermayer | 115c3bc | 2013-04-04 13:17:57 | [diff] [blame] | 2256 | if (size <= total) { |
Michael Niedermayer | 14de77d | 2013-04-04 13:13:53 | [diff] [blame] | 2257 | res = AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2258 | break; |
| 2259 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2260 | temp = *data; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2261 | total += temp; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2262 | lace_size[n] += temp; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2263 | data += 1; |
| 2264 | size -= 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2265 | if (temp != 0xff) |
| 2266 | break; |
| 2267 | } |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2268 | } |
| 2269 | if (size <= total) { |
| 2270 | res = AVERROR_INVALIDDATA; |
| 2271 | break; |
| 2272 | } |
| 2273 | |
| 2274 | lace_size[n] = size - total; |
| 2275 | break; |
| 2276 | } |
| 2277 | |
| 2278 | case 0x2: /* fixed-size lacing */ |
Anton Khirnov | 87b017a | 2012-09-20 18:04:56 | [diff] [blame] | 2279 | if (size % (*laces)) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2280 | res = AVERROR_INVALIDDATA; |
| 2281 | break; |
| 2282 | } |
| 2283 | for (n = 0; n < *laces; n++) |
| 2284 | lace_size[n] = size / *laces; |
| 2285 | break; |
| 2286 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2287 | case 0x3: /* EBML lacing */ |
| 2288 | { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2289 | uint64_t num; |
Luca Barbato | 8a96df7 | 2013-03-28 10:52:52 | [diff] [blame] | 2290 | uint64_t total; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2291 | n = matroska_ebmlnum_uint(matroska, data, size, &num); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2292 | if (n < 0 || num > INT_MAX) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2293 | av_log(matroska->ctx, AV_LOG_INFO, |
| 2294 | "EBML block data error\n"); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2295 | res = n<0 ? n : AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2296 | break; |
| 2297 | } |
| 2298 | data += n; |
| 2299 | size -= n; |
| 2300 | total = lace_size[0] = num; |
| 2301 | for (n = 1; res == 0 && n < *laces - 1; n++) { |
| 2302 | int64_t snum; |
| 2303 | int r; |
| 2304 | r = matroska_ebmlnum_sint(matroska, data, size, &snum); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2305 | if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2306 | av_log(matroska->ctx, AV_LOG_INFO, |
| 2307 | "EBML block data error\n"); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2308 | res = r<0 ? r : AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2309 | break; |
| 2310 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2311 | data += r; |
| 2312 | size -= r; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2313 | lace_size[n] = lace_size[n - 1] + snum; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2314 | total += lace_size[n]; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2315 | } |
| 2316 | if (size <= total) { |
| 2317 | res = AVERROR_INVALIDDATA; |
| 2318 | break; |
| 2319 | } |
| 2320 | lace_size[*laces - 1] = size - total; |
| 2321 | break; |
| 2322 | } |
| 2323 | } |
| 2324 | |
| 2325 | *buf = data; |
| 2326 | *lace_buf = lace_size; |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 2327 | *buf_size = size; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2328 | |
| 2329 | return res; |
| 2330 | } |
| 2331 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2332 | static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2333 | MatroskaTrack *track, AVStream *st, |
| 2334 | uint8_t *data, int size, uint64_t timecode, |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2335 | int64_t pos) |
| 2336 | { |
| 2337 | int a = st->codec->block_align; |
| 2338 | int sps = track->audio.sub_packet_size; |
| 2339 | int cfs = track->audio.coded_framesize; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2340 | int h = track->audio.sub_packet_h; |
| 2341 | int y = track->audio.sub_packet_cnt; |
| 2342 | int w = track->audio.frame_size; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2343 | int x; |
| 2344 | |
| 2345 | if (!track->audio.pkt_cnt) { |
| 2346 | if (track->audio.sub_packet_cnt == 0) |
| 2347 | track->audio.buf_timecode = timecode; |
| 2348 | if (st->codec->codec_id == AV_CODEC_ID_RA_288) { |
| 2349 | if (size < cfs * h / 2) { |
| 2350 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2351 | "Corrupt int4 RM-style audio packet size\n"); |
| 2352 | return AVERROR_INVALIDDATA; |
| 2353 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2354 | for (x = 0; x < h / 2; x++) |
| 2355 | memcpy(track->audio.buf + x * 2 * w + y * cfs, |
| 2356 | data + x * cfs, cfs); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2357 | } else if (st->codec->codec_id == AV_CODEC_ID_SIPR) { |
| 2358 | if (size < w) { |
| 2359 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2360 | "Corrupt sipr RM-style audio packet size\n"); |
| 2361 | return AVERROR_INVALIDDATA; |
| 2362 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2363 | memcpy(track->audio.buf + y * w, data, w); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2364 | } else { |
Michael Niedermayer | a1ed1c2 | 2014-01-10 22:10:47 | [diff] [blame] | 2365 | if (size < sps * w / sps || h<=0 || w%sps) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2366 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2367 | "Corrupt generic RM-style audio packet size\n"); |
| 2368 | return AVERROR_INVALIDDATA; |
| 2369 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2370 | for (x = 0; x < w / sps; x++) |
| 2371 | memcpy(track->audio.buf + |
| 2372 | sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)), |
| 2373 | data + x * sps, sps); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2374 | } |
| 2375 | |
| 2376 | if (++track->audio.sub_packet_cnt >= h) { |
| 2377 | if (st->codec->codec_id == AV_CODEC_ID_SIPR) |
| 2378 | ff_rm_reorder_sipr_data(track->audio.buf, h, w); |
| 2379 | track->audio.sub_packet_cnt = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2380 | track->audio.pkt_cnt = h * w / a; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2381 | } |
| 2382 | } |
| 2383 | |
| 2384 | while (track->audio.pkt_cnt) { |
Michael Niedermayer | 1116491 | 2012-10-20 14:55:45 | [diff] [blame] | 2385 | AVPacket *pkt = NULL; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2386 | if (!(pkt = av_mallocz(sizeof(AVPacket))) || av_new_packet(pkt, a) < 0) { |
Michael Niedermayer | 1116491 | 2012-10-20 14:55:45 | [diff] [blame] | 2387 | av_free(pkt); |
| 2388 | return AVERROR(ENOMEM); |
| 2389 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2390 | memcpy(pkt->data, |
| 2391 | track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--), |
| 2392 | a); |
| 2393 | pkt->pts = track->audio.buf_timecode; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2394 | track->audio.buf_timecode = AV_NOPTS_VALUE; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2395 | pkt->pos = pos; |
| 2396 | pkt->stream_index = st->index; |
| 2397 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2398 | } |
| 2399 | |
| 2400 | return 0; |
| 2401 | } |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2402 | |
| 2403 | /* reconstruct full wavpack blocks from mangled matroska ones */ |
| 2404 | static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src, |
| 2405 | uint8_t **pdst, int *size) |
| 2406 | { |
| 2407 | uint8_t *dst = NULL; |
| 2408 | int dstlen = 0; |
| 2409 | int srclen = *size; |
| 2410 | uint32_t samples; |
| 2411 | uint16_t ver; |
| 2412 | int ret, offset = 0; |
| 2413 | |
| 2414 | if (srclen < 12 || track->stream->codec->extradata_size < 2) |
| 2415 | return AVERROR_INVALIDDATA; |
| 2416 | |
| 2417 | ver = AV_RL16(track->stream->codec->extradata); |
| 2418 | |
| 2419 | samples = AV_RL32(src); |
| 2420 | src += 4; |
| 2421 | srclen -= 4; |
| 2422 | |
| 2423 | while (srclen >= 8) { |
| 2424 | int multiblock; |
| 2425 | uint32_t blocksize; |
| 2426 | uint8_t *tmp; |
| 2427 | |
| 2428 | uint32_t flags = AV_RL32(src); |
| 2429 | uint32_t crc = AV_RL32(src + 4); |
| 2430 | src += 8; |
| 2431 | srclen -= 8; |
| 2432 | |
| 2433 | multiblock = (flags & 0x1800) != 0x1800; |
| 2434 | if (multiblock) { |
| 2435 | if (srclen < 4) { |
| 2436 | ret = AVERROR_INVALIDDATA; |
| 2437 | goto fail; |
| 2438 | } |
| 2439 | blocksize = AV_RL32(src); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2440 | src += 4; |
| 2441 | srclen -= 4; |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2442 | } else |
| 2443 | blocksize = srclen; |
| 2444 | |
| 2445 | if (blocksize > srclen) { |
| 2446 | ret = AVERROR_INVALIDDATA; |
| 2447 | goto fail; |
| 2448 | } |
| 2449 | |
| 2450 | tmp = av_realloc(dst, dstlen + blocksize + 32); |
| 2451 | if (!tmp) { |
| 2452 | ret = AVERROR(ENOMEM); |
| 2453 | goto fail; |
| 2454 | } |
| 2455 | dst = tmp; |
| 2456 | dstlen += blocksize + 32; |
| 2457 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2458 | AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k')); // tag |
| 2459 | AV_WL32(dst + offset + 4, blocksize + 24); // blocksize - 8 |
| 2460 | AV_WL16(dst + offset + 8, ver); // version |
| 2461 | AV_WL16(dst + offset + 10, 0); // track/index_no |
| 2462 | AV_WL32(dst + offset + 12, 0); // total samples |
| 2463 | AV_WL32(dst + offset + 16, 0); // block index |
| 2464 | AV_WL32(dst + offset + 20, samples); // number of samples |
| 2465 | AV_WL32(dst + offset + 24, flags); // flags |
| 2466 | AV_WL32(dst + offset + 28, crc); // crc |
| 2467 | memcpy(dst + offset + 32, src, blocksize); // block data |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2468 | |
| 2469 | src += blocksize; |
| 2470 | srclen -= blocksize; |
| 2471 | offset += blocksize + 32; |
| 2472 | } |
| 2473 | |
| 2474 | *pdst = dst; |
| 2475 | *size = dstlen; |
| 2476 | |
| 2477 | return 0; |
| 2478 | |
| 2479 | fail: |
| 2480 | av_freep(&dst); |
| 2481 | return ret; |
| 2482 | } |
| 2483 | |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2484 | static int matroska_parse_webvtt(MatroskaDemuxContext *matroska, |
| 2485 | MatroskaTrack *track, |
| 2486 | AVStream *st, |
| 2487 | uint8_t *data, int data_len, |
| 2488 | uint64_t timecode, |
| 2489 | uint64_t duration, |
| 2490 | int64_t pos) |
| 2491 | { |
| 2492 | AVPacket *pkt; |
| 2493 | uint8_t *id, *settings, *text, *buf; |
| 2494 | int id_len, settings_len, text_len; |
| 2495 | uint8_t *p, *q; |
| 2496 | int err; |
| 2497 | |
| 2498 | if (data_len <= 0) |
| 2499 | return AVERROR_INVALIDDATA; |
| 2500 | |
| 2501 | p = data; |
| 2502 | q = data + data_len; |
| 2503 | |
| 2504 | id = p; |
| 2505 | id_len = -1; |
| 2506 | while (p < q) { |
| 2507 | if (*p == '\r' || *p == '\n') { |
| 2508 | id_len = p - id; |
| 2509 | if (*p == '\r') |
| 2510 | p++; |
| 2511 | break; |
| 2512 | } |
| 2513 | p++; |
| 2514 | } |
| 2515 | |
| 2516 | if (p >= q || *p != '\n') |
| 2517 | return AVERROR_INVALIDDATA; |
| 2518 | p++; |
| 2519 | |
| 2520 | settings = p; |
| 2521 | settings_len = -1; |
| 2522 | while (p < q) { |
| 2523 | if (*p == '\r' || *p == '\n') { |
| 2524 | settings_len = p - settings; |
| 2525 | if (*p == '\r') |
| 2526 | p++; |
| 2527 | break; |
| 2528 | } |
| 2529 | p++; |
| 2530 | } |
| 2531 | |
| 2532 | if (p >= q || *p != '\n') |
| 2533 | return AVERROR_INVALIDDATA; |
| 2534 | p++; |
| 2535 | |
| 2536 | text = p; |
| 2537 | text_len = q - p; |
| 2538 | while (text_len > 0) { |
| 2539 | const int len = text_len - 1; |
| 2540 | const uint8_t c = p[len]; |
| 2541 | if (c != '\r' && c != '\n') |
| 2542 | break; |
| 2543 | text_len = len; |
| 2544 | } |
| 2545 | |
| 2546 | if (text_len <= 0) |
| 2547 | return AVERROR_INVALIDDATA; |
| 2548 | |
| 2549 | pkt = av_mallocz(sizeof(*pkt)); |
| 2550 | err = av_new_packet(pkt, text_len); |
| 2551 | if (err < 0) { |
| 2552 | av_free(pkt); |
| 2553 | return AVERROR(err); |
| 2554 | } |
| 2555 | |
| 2556 | memcpy(pkt->data, text, text_len); |
| 2557 | |
| 2558 | if (id_len > 0) { |
| 2559 | buf = av_packet_new_side_data(pkt, |
| 2560 | AV_PKT_DATA_WEBVTT_IDENTIFIER, |
| 2561 | id_len); |
| 2562 | if (buf == NULL) { |
| 2563 | av_free(pkt); |
| 2564 | return AVERROR(ENOMEM); |
| 2565 | } |
| 2566 | memcpy(buf, id, id_len); |
| 2567 | } |
| 2568 | |
| 2569 | if (settings_len > 0) { |
| 2570 | buf = av_packet_new_side_data(pkt, |
| 2571 | AV_PKT_DATA_WEBVTT_SETTINGS, |
| 2572 | settings_len); |
| 2573 | if (buf == NULL) { |
| 2574 | av_free(pkt); |
| 2575 | return AVERROR(ENOMEM); |
| 2576 | } |
| 2577 | memcpy(buf, settings, settings_len); |
| 2578 | } |
| 2579 | |
| 2580 | // Do we need this for subtitles? |
| 2581 | // pkt->flags = AV_PKT_FLAG_KEY; |
| 2582 | |
| 2583 | pkt->stream_index = st->index; |
| 2584 | pkt->pts = timecode; |
| 2585 | |
| 2586 | // Do we need this for subtitles? |
| 2587 | // pkt->dts = timecode; |
| 2588 | |
| 2589 | pkt->duration = duration; |
| 2590 | pkt->pos = pos; |
| 2591 | |
| 2592 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
| 2593 | matroska->prev_pkt = pkt; |
| 2594 | |
| 2595 | return 0; |
| 2596 | } |
| 2597 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2598 | static int matroska_parse_frame(MatroskaDemuxContext *matroska, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2599 | MatroskaTrack *track, AVStream *st, |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2600 | uint8_t *data, int pkt_size, |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2601 | uint64_t timecode, uint64_t lace_duration, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2602 | int64_t pos, int is_keyframe, |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 2603 | uint8_t *additional, uint64_t additional_id, int additional_size, |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 2604 | int64_t discard_padding) |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2605 | { |
| 2606 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
| 2607 | uint8_t *pkt_data = data; |
| 2608 | int offset = 0, res; |
| 2609 | AVPacket *pkt; |
| 2610 | |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 2611 | if (encodings && !encodings->type && encodings->scope & 1) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2612 | res = matroska_decode_buffer(&pkt_data, &pkt_size, track); |
| 2613 | if (res < 0) |
| 2614 | return res; |
| 2615 | } |
| 2616 | |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2617 | if (st->codec->codec_id == AV_CODEC_ID_WAVPACK) { |
| 2618 | uint8_t *wv_data; |
| 2619 | res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size); |
| 2620 | if (res < 0) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2621 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2622 | "Error parsing a wavpack block.\n"); |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2623 | goto fail; |
| 2624 | } |
| 2625 | if (pkt_data != data) |
| 2626 | av_freep(&pkt_data); |
| 2627 | pkt_data = wv_data; |
| 2628 | } |
| 2629 | |
Carl Eugen Hoyos | 6c18200 | 2014-04-17 12:46:11 | [diff] [blame] | 2630 | if (st->codec->codec_id == AV_CODEC_ID_PRORES && |
| 2631 | AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f')) |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2632 | offset = 8; |
| 2633 | |
| 2634 | pkt = av_mallocz(sizeof(AVPacket)); |
| 2635 | /* XXX: prevent data copy... */ |
| 2636 | if (av_new_packet(pkt, pkt_size + offset) < 0) { |
| 2637 | av_free(pkt); |
Michael Niedermayer | 2fe4b62 | 2013-06-03 14:07:06 | [diff] [blame] | 2638 | res = AVERROR(ENOMEM); |
| 2639 | goto fail; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2640 | } |
| 2641 | |
Carl Eugen Hoyos | 6c18200 | 2014-04-17 12:46:11 | [diff] [blame] | 2642 | if (st->codec->codec_id == AV_CODEC_ID_PRORES && offset == 8) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2643 | uint8_t *buf = pkt->data; |
| 2644 | bytestream_put_be32(&buf, pkt_size); |
| 2645 | bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f')); |
| 2646 | } |
| 2647 | |
| 2648 | memcpy(pkt->data + offset, pkt_data, pkt_size); |
| 2649 | |
| 2650 | if (pkt_data != data) |
Michael Niedermayer | 0722b4d | 2013-06-03 14:05:09 | [diff] [blame] | 2651 | av_freep(&pkt_data); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2652 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2653 | pkt->flags = is_keyframe; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2654 | pkt->stream_index = st->index; |
| 2655 | |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2656 | if (additional_size > 0) { |
| 2657 | uint8_t *side_data = av_packet_new_side_data(pkt, |
| 2658 | AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL, |
Michael Niedermayer | a08ebf0 | 2013-02-13 23:55:25 | [diff] [blame] | 2659 | additional_size + 8); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2660 | if (side_data == NULL) { |
Michael Niedermayer | fdda9b4 | 2013-03-19 13:07:39 | [diff] [blame] | 2661 | av_free_packet(pkt); |
| 2662 | av_free(pkt); |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2663 | return AVERROR(ENOMEM); |
| 2664 | } |
Michael Niedermayer | a08ebf0 | 2013-02-13 23:55:25 | [diff] [blame] | 2665 | AV_WB64(side_data, additional_id); |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2666 | memcpy(side_data + 8, additional, additional_size); |
| 2667 | } |
| 2668 | |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 2669 | if (discard_padding) { |
| 2670 | uint8_t *side_data = av_packet_new_side_data(pkt, |
| 2671 | AV_PKT_DATA_SKIP_SAMPLES, |
| 2672 | 10); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2673 | if (side_data == NULL) { |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 2674 | av_free_packet(pkt); |
| 2675 | av_free(pkt); |
| 2676 | return AVERROR(ENOMEM); |
| 2677 | } |
| 2678 | AV_WL32(side_data, 0); |
| 2679 | AV_WL32(side_data + 4, av_rescale_q(discard_padding, |
| 2680 | (AVRational){1, 1000000000}, |
| 2681 | (AVRational){1, st->codec->sample_rate})); |
| 2682 | } |
| 2683 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2684 | if (track->ms_compat) |
| 2685 | pkt->dts = timecode; |
| 2686 | else |
| 2687 | pkt->pts = timecode; |
| 2688 | pkt->pos = pos; |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2689 | if (st->codec->codec_id == AV_CODEC_ID_SUBRIP) { |
| 2690 | /* |
| 2691 | * For backward compatibility. |
| 2692 | * Historically, we have put subtitle duration |
| 2693 | * in convergence_duration, on the off chance |
| 2694 | * that the time_scale is less than 1us, which |
| 2695 | * could result in a 32bit overflow on the |
| 2696 | * normal duration field. |
| 2697 | */ |
| 2698 | pkt->convergence_duration = lace_duration; |
| 2699 | } |
| 2700 | |
| 2701 | if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE || |
| 2702 | lace_duration <= INT_MAX) { |
| 2703 | /* |
| 2704 | * For non subtitle tracks, just store the duration |
| 2705 | * as normal. |
| 2706 | * |
| 2707 | * If it's a subtitle track and duration value does |
| 2708 | * not overflow a uint32, then also store it normally. |
| 2709 | */ |
| 2710 | pkt->duration = lace_duration; |
| 2711 | } |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2712 | |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 2713 | #if FF_API_ASS_SSA |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2714 | if (st->codec->codec_id == AV_CODEC_ID_SSA) |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2715 | matroska_fix_ass_packet(matroska, pkt, lace_duration); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2716 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2717 | if (matroska->prev_pkt && |
| 2718 | timecode != AV_NOPTS_VALUE && |
| 2719 | matroska->prev_pkt->pts == timecode && |
| 2720 | matroska->prev_pkt->stream_index == st->index && |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2721 | st->codec->codec_id == AV_CODEC_ID_SSA) |
| 2722 | matroska_merge_packets(matroska->prev_pkt, pkt); |
| 2723 | else { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2724 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2725 | matroska->prev_pkt = pkt; |
| 2726 | } |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 2727 | #else |
| 2728 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
| 2729 | matroska->prev_pkt = pkt; |
| 2730 | #endif |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2731 | |
| 2732 | return 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2733 | |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2734 | fail: |
| 2735 | if (pkt_data != data) |
| 2736 | av_freep(&pkt_data); |
| 2737 | return res; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2738 | } |
| 2739 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 2740 | static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, |
| 2741 | int size, int64_t pos, uint64_t cluster_time, |
Luca Barbato | 7d84310 | 2012-09-17 00:48:02 | [diff] [blame] | 2742 | uint64_t block_duration, int is_keyframe, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2743 | uint8_t *additional, uint64_t additional_id, int additional_size, |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 2744 | int64_t cluster_pos, int64_t discard_padding) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2745 | { |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 2746 | uint64_t timecode = AV_NOPTS_VALUE; |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 2747 | MatroskaTrack *track; |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 2748 | int res = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2749 | AVStream *st; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2750 | int16_t block_time; |
| 2751 | uint32_t *lace_size = NULL; |
| 2752 | int n, flags, laces = 0; |
| 2753 | uint64_t num; |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 2754 | int trust_default_duration = 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2755 | |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 2756 | if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2757 | av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n"); |
Luca Barbato | 721af29 | 2012-04-30 00:39:31 | [diff] [blame] | 2758 | return n; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2759 | } |
| 2760 | data += n; |
| 2761 | size -= n; |
| 2762 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2763 | track = matroska_find_track_by_num(matroska, num); |
Ronald S. Bultje | d31fb1a | 2011-10-29 23:17:51 | [diff] [blame] | 2764 | if (!track || !track->stream) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2765 | av_log(matroska->ctx, AV_LOG_INFO, |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 2766 | "Invalid stream %"PRIu64" or size %u\n", num, size); |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 2767 | return AVERROR_INVALIDDATA; |
Ronald S. Bultje | d31fb1a | 2011-10-29 23:17:51 | [diff] [blame] | 2768 | } else if (size <= 3) |
| 2769 | return 0; |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 2770 | st = track->stream; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 2771 | if (st->discard >= AVDISCARD_ALL) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2772 | return res; |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 2773 | av_assert1(block_duration != AV_NOPTS_VALUE); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2774 | |
Michael Niedermayer | 729fa55 | 2013-05-19 21:38:01 | [diff] [blame] | 2775 | block_time = sign_extend(AV_RB16(data), 16); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2776 | data += 2; |
| 2777 | flags = *data++; |
| 2778 | size -= 3; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2779 | if (is_keyframe == -1) |
Jean-Daniel Dupas | cc947f0 | 2010-03-31 12:29:58 | [diff] [blame] | 2780 | is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2781 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2782 | if (cluster_time != (uint64_t) -1 && |
| 2783 | (block_time >= 0 || cluster_time >= -block_time)) { |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 2784 | timecode = cluster_time + block_time - track->codec_delay; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2785 | if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE && |
| 2786 | timecode < track->end_timecode) |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 2787 | is_keyframe = 0; /* overlapping subtitles are not key frame */ |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 2788 | if (is_keyframe) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2789 | av_add_index_entry(st, cluster_pos, timecode, 0, 0, |
| 2790 | AVINDEX_KEYFRAME); |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 2791 | } |
| 2792 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2793 | if (matroska->skip_to_keyframe && |
| 2794 | track->type != MATROSKA_TRACK_TYPE_SUBTITLE) { |
Reimar Döffinger | 4a95876 | 2012-04-13 22:17:30 | [diff] [blame] | 2795 | if (timecode < matroska->skip_to_timecode) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2796 | return res; |
Monty Montgomery | f6622f9 | 2013-09-11 06:00:31 | [diff] [blame] | 2797 | if (is_keyframe) |
| 2798 | matroska->skip_to_keyframe = 0; |
| 2799 | else if (!st->skip_to_keyframe) { |
Reimar Döffinger | 4a95876 | 2012-04-13 22:17:30 | [diff] [blame] | 2800 | av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n"); |
| 2801 | matroska->skip_to_keyframe = 0; |
| 2802 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2803 | } |
| 2804 | |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 2805 | res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1, |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2806 | &lace_size, &laces); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2807 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2808 | if (res) |
| 2809 | goto end; |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 2810 | |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 2811 | if (track->audio.samplerate == 8000) { |
| 2812 | // If this is needed for more codecs, then add them here |
| 2813 | if (st->codec->codec_id == AV_CODEC_ID_AC3) { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2814 | if (track->audio.samplerate != st->codec->sample_rate || !st->codec->frame_size) |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 2815 | trust_default_duration = 0; |
| 2816 | } |
| 2817 | } |
| 2818 | |
| 2819 | if (!block_duration && trust_default_duration) |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 2820 | block_duration = track->default_duration * laces / matroska->time_scale; |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2821 | |
| 2822 | if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time)) |
Luca Barbato | 7d84310 | 2012-09-17 00:48:02 | [diff] [blame] | 2823 | track->end_timecode = |
| 2824 | FFMAX(track->end_timecode, timecode + block_duration); |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2825 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2826 | for (n = 0; n < laces; n++) { |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 2827 | int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces; |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2828 | |
| 2829 | if (lace_size[n] > size) { |
| 2830 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n"); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2831 | break; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2832 | } |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2833 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2834 | if ((st->codec->codec_id == AV_CODEC_ID_RA_288 || |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2835 | st->codec->codec_id == AV_CODEC_ID_COOK || |
| 2836 | st->codec->codec_id == AV_CODEC_ID_SIPR || |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2837 | st->codec->codec_id == AV_CODEC_ID_ATRAC3) && |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2838 | st->codec->block_align && track->audio.sub_packet_size) { |
Luca Barbato | 25a80a9 | 2013-03-29 11:51:51 | [diff] [blame] | 2839 | res = matroska_parse_rm_audio(matroska, track, st, data, |
| 2840 | lace_size[n], |
Michael Niedermayer | a6ec1e4 | 2012-09-20 21:43:20 | [diff] [blame] | 2841 | timecode, pos); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2842 | if (res) |
| 2843 | goto end; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2844 | |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2845 | } else if (st->codec->codec_id == AV_CODEC_ID_WEBVTT) { |
| 2846 | res = matroska_parse_webvtt(matroska, track, st, |
| 2847 | data, lace_size[n], |
| 2848 | timecode, lace_duration, |
| 2849 | pos); |
| 2850 | if (res) |
| 2851 | goto end; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2852 | } else { |
| 2853 | res = matroska_parse_frame(matroska, track, st, data, lace_size[n], |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2854 | timecode, lace_duration, pos, |
| 2855 | !n ? is_keyframe : 0, |
| 2856 | additional, additional_id, additional_size, |
| 2857 | discard_padding); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2858 | if (res) |
| 2859 | goto end; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2860 | } |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2861 | |
| 2862 | if (timecode != AV_NOPTS_VALUE) |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2863 | timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2864 | data += lace_size[n]; |
| 2865 | size -= lace_size[n]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2866 | } |
| 2867 | |
Dale Curtis | 3116858 | 2012-04-13 04:24:04 | [diff] [blame] | 2868 | end: |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2869 | av_free(lace_size); |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 2870 | return res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2871 | } |
| 2872 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2873 | static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska) |
| 2874 | { |
| 2875 | EbmlList *blocks_list; |
| 2876 | MatroskaBlock *blocks; |
| 2877 | int i, res; |
| 2878 | res = ebml_parse(matroska, |
| 2879 | matroska_cluster_incremental_parsing, |
| 2880 | &matroska->current_cluster); |
| 2881 | if (res == 1) { |
| 2882 | /* New Cluster */ |
| 2883 | if (matroska->current_cluster_pos) |
| 2884 | ebml_level_end(matroska); |
| 2885 | ebml_free(matroska_cluster, &matroska->current_cluster); |
| 2886 | memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster)); |
| 2887 | matroska->current_cluster_num_blocks = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2888 | matroska->current_cluster_pos = avio_tell(matroska->ctx->pb); |
| 2889 | matroska->prev_pkt = NULL; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2890 | /* sizeof the ID which was already read */ |
| 2891 | if (matroska->current_id) |
| 2892 | matroska->current_cluster_pos -= 4; |
| 2893 | res = ebml_parse(matroska, |
| 2894 | matroska_clusters_incremental, |
| 2895 | &matroska->current_cluster); |
| 2896 | /* Try parsing the block again. */ |
| 2897 | if (res == 1) |
| 2898 | res = ebml_parse(matroska, |
| 2899 | matroska_cluster_incremental_parsing, |
| 2900 | &matroska->current_cluster); |
| 2901 | } |
| 2902 | |
| 2903 | if (!res && |
| 2904 | matroska->current_cluster_num_blocks < |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2905 | matroska->current_cluster.blocks.nb_elem) { |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2906 | blocks_list = &matroska->current_cluster.blocks; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2907 | blocks = blocks_list->elem; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2908 | |
| 2909 | matroska->current_cluster_num_blocks = blocks_list->nb_elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2910 | i = blocks_list->nb_elem - 1; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2911 | if (blocks[i].bin.size > 0 && blocks[i].bin.data) { |
| 2912 | int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2913 | uint8_t* additional = blocks[i].additional.size > 0 ? |
| 2914 | blocks[i].additional.data : NULL; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2915 | if (!blocks[i].non_simple) |
Michael Niedermayer | 3bbf3f7 | 2012-04-23 22:19:55 | [diff] [blame] | 2916 | blocks[i].duration = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2917 | res = matroska_parse_block(matroska, blocks[i].bin.data, |
| 2918 | blocks[i].bin.size, blocks[i].bin.pos, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2919 | matroska->current_cluster.timecode, |
| 2920 | blocks[i].duration, is_keyframe, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 2921 | additional, blocks[i].additional_id, |
| 2922 | blocks[i].additional.size, |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 2923 | matroska->current_cluster_pos, |
| 2924 | blocks[i].discard_padding); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2925 | } |
| 2926 | } |
| 2927 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2928 | return res; |
| 2929 | } |
| 2930 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 2931 | static int matroska_parse_cluster(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2932 | { |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 2933 | MatroskaCluster cluster = { 0 }; |
| 2934 | EbmlList *blocks_list; |
| 2935 | MatroskaBlock *blocks; |
Aurelien Jacobs | 24c3da1 | 2008-09-06 23:39:59 | [diff] [blame] | 2936 | int i, res; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2937 | int64_t pos; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2938 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2939 | if (!matroska->contains_ssa) |
| 2940 | return matroska_parse_cluster_incremental(matroska); |
| 2941 | pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 2942 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 8070203 | 2010-06-11 16:36:51 | [diff] [blame] | 2943 | if (matroska->current_id) |
Aurelien Jacobs | 8bc98ba | 2008-08-25 00:09:08 | [diff] [blame] | 2944 | pos -= 4; /* sizeof the ID which was already read */ |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2945 | res = ebml_parse(matroska, matroska_clusters, &cluster); |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 2946 | blocks_list = &cluster.blocks; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2947 | blocks = blocks_list->elem; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2948 | for (i = 0; i < blocks_list->nb_elem; i++) |
Aurelien Jacobs | 37dd235 | 2010-05-25 22:55:12 | [diff] [blame] | 2949 | if (blocks[i].bin.size > 0 && blocks[i].bin.data) { |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 2950 | int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2951 | res = matroska_parse_block(matroska, blocks[i].bin.data, |
| 2952 | blocks[i].bin.size, blocks[i].bin.pos, |
| 2953 | cluster.timecode, blocks[i].duration, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2954 | is_keyframe, NULL, 0, 0, pos, |
| 2955 | blocks[i].discard_padding); |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 2956 | } |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 2957 | ebml_free(matroska_cluster, &cluster); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2958 | return res; |
| 2959 | } |
| 2960 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 2961 | static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2962 | { |
| 2963 | MatroskaDemuxContext *matroska = s->priv_data; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2964 | |
Hendrik Leppkes | 8689d87 | 2011-07-06 17:57:11 | [diff] [blame] | 2965 | while (matroska_deliver_packet(matroska, pkt)) { |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 2966 | int64_t pos = avio_tell(matroska->ctx->pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2967 | if (matroska->done) |
Aurelien Jacobs | 9ebeea8 | 2009-02-19 21:01:45 | [diff] [blame] | 2968 | return AVERROR_EOF; |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 2969 | if (matroska_parse_cluster(matroska) < 0) |
| 2970 | matroska_resync(matroska, pos); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2971 | } |
| 2972 | |
Hendrik Leppkes | 8689d87 | 2011-07-06 17:57:11 | [diff] [blame] | 2973 | return 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2974 | } |
| 2975 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 2976 | static int matroska_read_seek(AVFormatContext *s, int stream_index, |
| 2977 | int64_t timestamp, int flags) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2978 | { |
| 2979 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 2980 | MatroskaTrack *tracks = matroska->tracks.elem; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2981 | AVStream *st = s->streams[stream_index]; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 2982 | int i, index, index_sub, index_min; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2983 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 2984 | /* Parse the CUES now since we need the index data to seek. */ |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 2985 | if (matroska->cues_parsing_deferred > 0) { |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 2986 | matroska->cues_parsing_deferred = 0; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 2987 | matroska_parse_cues(matroska); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 2988 | } |
| 2989 | |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 2990 | if (!st->nb_index_entries) |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 2991 | goto err; |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 2992 | timestamp = FFMAX(timestamp, st->index_entries[0].timestamp); |
Aurelien Jacobs | dfbbbdc | 2008-08-24 23:57:29 | [diff] [blame] | 2993 | |
Aurelien Jacobs | 6bef5f9 | 2008-08-27 19:57:42 | [diff] [blame] | 2994 | if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2995 | avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos, |
| 2996 | SEEK_SET); |
John Stebbins | cdc2c1c | 2011-07-01 15:57:42 | [diff] [blame] | 2997 | matroska->current_id = 0; |
Aurelien Jacobs | 0dbddda | 2008-08-27 19:58:55 | [diff] [blame] | 2998 | while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0) { |
| 2999 | matroska_clear_queue(matroska); |
| 3000 | if (matroska_parse_cluster(matroska) < 0) |
| 3001 | break; |
| 3002 | } |
Aurelien Jacobs | 6bef5f9 | 2008-08-27 19:57:42 | [diff] [blame] | 3003 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3004 | |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 3005 | matroska_clear_queue(matroska); |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3006 | if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1)) |
| 3007 | goto err; |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 3008 | |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 3009 | index_min = index; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3010 | for (i = 0; i < matroska->tracks.nb_elem; i++) { |
| 3011 | tracks[i].audio.pkt_cnt = 0; |
Reimar Döffinger | b09e506 | 2011-02-26 11:52:01 | [diff] [blame] | 3012 | tracks[i].audio.sub_packet_cnt = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3013 | tracks[i].audio.buf_timecode = AV_NOPTS_VALUE; |
| 3014 | tracks[i].end_timecode = 0; |
| 3015 | if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3016 | tracks[i].stream->discard != AVDISCARD_ALL) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3017 | index_sub = av_index_search_timestamp( |
| 3018 | tracks[i].stream, st->index_entries[index].timestamp, |
| 3019 | AVSEEK_FLAG_BACKWARD); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3020 | while (index_sub >= 0 && |
Michael Niedermayer | b3dfebd | 2014-05-30 03:21:24 | [diff] [blame^] | 3021 | index_min > 0 && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3022 | tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos && |
| 3023 | st->index_entries[index].timestamp - tracks[i].stream->index_entries[index_sub].timestamp < 30000000000 / matroska->time_scale) |
Michael Niedermayer | 4758e32 | 2013-05-20 02:00:30 | [diff] [blame] | 3024 | index_min--; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 3025 | } |
| 3026 | } |
| 3027 | |
Anton Khirnov | f59d8ff | 2011-02-28 13:57:54 | [diff] [blame] | 3028 | avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3029 | matroska->current_id = 0; |
Michael Niedermayer | 7c00d85 | 2013-02-07 20:34:35 | [diff] [blame] | 3030 | if (flags & AVSEEK_FLAG_ANY) { |
| 3031 | st->skip_to_keyframe = 0; |
| 3032 | matroska->skip_to_timecode = timestamp; |
| 3033 | } else { |
| 3034 | st->skip_to_keyframe = 1; |
| 3035 | matroska->skip_to_timecode = st->index_entries[index].timestamp; |
| 3036 | } |
| 3037 | matroska->skip_to_keyframe = 1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3038 | matroska->done = 0; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3039 | matroska->num_levels = 0; |
Anton Khirnov | a2faa95 | 2011-10-16 13:03:30 | [diff] [blame] | 3040 | ff_update_cur_dts(s, st, st->index_entries[index].timestamp); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3041 | return 0; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3042 | err: |
| 3043 | // slightly hackish but allows proper fallback to |
| 3044 | // the generic seeking code. |
| 3045 | matroska_clear_queue(matroska); |
| 3046 | matroska->current_id = 0; |
Reimar Döffinger | 4a95876 | 2012-04-13 22:17:30 | [diff] [blame] | 3047 | st->skip_to_keyframe = |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3048 | matroska->skip_to_keyframe = 0; |
| 3049 | matroska->done = 0; |
| 3050 | matroska->num_levels = 0; |
| 3051 | return -1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3052 | } |
| 3053 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3054 | static int matroska_read_close(AVFormatContext *s) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3055 | { |
| 3056 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 3057 | MatroskaTrack *tracks = matroska->tracks.elem; |
Aurelien Jacobs | 70109c0 | 2008-08-05 00:41:13 | [diff] [blame] | 3058 | int n; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3059 | |
Aurelien Jacobs | 34c9c1b | 2007-12-29 18:32:47 | [diff] [blame] | 3060 | matroska_clear_queue(matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3061 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3062 | for (n = 0; n < matroska->tracks.nb_elem; n++) |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 3063 | if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO) |
| 3064 | av_free(tracks[n].audio.buf); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3065 | ebml_free(matroska_cluster, &matroska->current_cluster); |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 3066 | ebml_free(matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3067 | |
| 3068 | return 0; |
| 3069 | } |
| 3070 | |
Diego Elio Pettenò | 66355be | 2011-01-25 22:03:28 | [diff] [blame] | 3071 | AVInputFormat ff_matroska_demuxer = { |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 3072 | .name = "matroska,webm", |
Diego Biurrun | 6774247 | 2012-07-24 21:51:41 | [diff] [blame] | 3073 | .long_name = NULL_IF_CONFIG_SMALL("Matroska / WebM"), |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 3074 | .priv_data_size = sizeof(MatroskaDemuxContext), |
| 3075 | .read_probe = matroska_probe, |
| 3076 | .read_header = matroska_read_header, |
| 3077 | .read_packet = matroska_read_packet, |
| 3078 | .read_close = matroska_read_close, |
| 3079 | .read_seek = matroska_read_seek, |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3080 | }; |