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> |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 35 | |
| 36 | #include "libavutil/avstring.h" |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 37 | #include "libavutil/base64.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 38 | #include "libavutil/dict.h" |
| 39 | #include "libavutil/intfloat.h" |
| 40 | #include "libavutil/intreadwrite.h" |
| 41 | #include "libavutil/lzo.h" |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 42 | #include "libavutil/mastering_display_metadata.h" |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 43 | #include "libavutil/mathematics.h" |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 44 | #include "libavutil/opt.h" |
Michael Niedermayer | a52cb42 | 2014-11-02 18:19:07 | [diff] [blame] | 45 | #include "libavutil/time_internal.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 46 | |
| 47 | #include "libavcodec/bytestream.h" |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 48 | #include "libavcodec/flac.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 49 | #include "libavcodec/mpeg4audio.h" |
| 50 | |
| 51 | #include "avformat.h" |
| 52 | #include "avio_internal.h" |
| 53 | #include "internal.h" |
| 54 | #include "isom.h" |
| 55 | #include "matroska.h" |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 56 | #include "oggdec.h" |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 57 | /* For ff_codec_get_id(). */ |
| 58 | #include "riff.h" |
| 59 | #include "rmsipr.h" |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 60 | |
Matthew Oliver | 0167fa0 | 2014-11-27 08:00:36 | [diff] [blame] | 61 | #if CONFIG_BZLIB |
| 62 | #include <bzlib.h> |
| 63 | #endif |
| 64 | #if CONFIG_ZLIB |
| 65 | #include <zlib.h> |
| 66 | #endif |
| 67 | |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 68 | #include "qtpalette.h" |
| 69 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 70 | typedef enum { |
| 71 | EBML_NONE, |
| 72 | EBML_UINT, |
| 73 | EBML_FLOAT, |
| 74 | EBML_STR, |
| 75 | EBML_UTF8, |
| 76 | EBML_BIN, |
| 77 | EBML_NEST, |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 78 | EBML_LEVEL1, |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 79 | EBML_PASS, |
| 80 | EBML_STOP, |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 81 | EBML_SINT, |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 82 | EBML_TYPE_COUNT |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 83 | } EbmlType; |
| 84 | |
| 85 | typedef const struct EbmlSyntax { |
| 86 | uint32_t id; |
| 87 | EbmlType type; |
| 88 | int list_elem_size; |
| 89 | int data_offset; |
| 90 | union { |
| 91 | uint64_t u; |
| 92 | double f; |
| 93 | const char *s; |
| 94 | const struct EbmlSyntax *n; |
| 95 | } def; |
| 96 | } EbmlSyntax; |
| 97 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 98 | typedef struct EbmlList { |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 99 | int nb_elem; |
| 100 | void *elem; |
| 101 | } EbmlList; |
| 102 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 103 | typedef struct EbmlBin { |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 104 | int size; |
| 105 | uint8_t *data; |
| 106 | int64_t pos; |
| 107 | } EbmlBin; |
| 108 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 109 | typedef struct Ebml { |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 110 | uint64_t version; |
| 111 | uint64_t max_size; |
| 112 | uint64_t id_length; |
| 113 | char *doctype; |
| 114 | uint64_t doctype_version; |
| 115 | } Ebml; |
| 116 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 117 | typedef struct MatroskaTrackCompression { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 118 | uint64_t algo; |
| 119 | EbmlBin settings; |
| 120 | } MatroskaTrackCompression; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 121 | |
Michael Niedermayer | a0fe1a2 | 2015-02-14 20:07:40 | [diff] [blame] | 122 | typedef struct MatroskaTrackEncryption { |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 123 | uint64_t algo; |
| 124 | EbmlBin key_id; |
| 125 | } MatroskaTrackEncryption; |
| 126 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 127 | typedef struct MatroskaTrackEncoding { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 128 | uint64_t scope; |
| 129 | uint64_t type; |
| 130 | MatroskaTrackCompression compression; |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 131 | MatroskaTrackEncryption encryption; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 132 | } MatroskaTrackEncoding; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 133 | |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 134 | typedef struct MatroskaMasteringMeta { |
| 135 | double r_x; |
| 136 | double r_y; |
| 137 | double g_x; |
| 138 | double g_y; |
| 139 | double b_x; |
| 140 | double b_y; |
| 141 | double white_x; |
| 142 | double white_y; |
| 143 | double max_luminance; |
| 144 | double min_luminance; |
| 145 | } MatroskaMasteringMeta; |
| 146 | |
| 147 | typedef struct MatroskaTrackVideoColor { |
| 148 | uint64_t matrix_coefficients; |
| 149 | uint64_t bits_per_channel; |
| 150 | uint64_t chroma_sub_horz; |
| 151 | uint64_t chroma_sub_vert; |
| 152 | uint64_t cb_sub_horz; |
| 153 | uint64_t cb_sub_vert; |
| 154 | uint64_t chroma_siting_horz; |
| 155 | uint64_t chroma_siting_vert; |
| 156 | uint64_t range; |
| 157 | uint64_t transfer_characteristics; |
| 158 | uint64_t primaries; |
| 159 | uint64_t max_cll; |
| 160 | uint64_t max_fall; |
| 161 | MatroskaMasteringMeta mastering_meta; |
| 162 | } MatroskaTrackVideoColor; |
| 163 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 164 | typedef struct MatroskaTrackVideo { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 165 | double frame_rate; |
| 166 | uint64_t display_width; |
| 167 | uint64_t display_height; |
| 168 | uint64_t pixel_width; |
| 169 | uint64_t pixel_height; |
Aurelien Jacobs | fdb5e02 | 2011-06-14 00:00:06 | [diff] [blame] | 170 | EbmlBin color_space; |
James Almer | bad8bbc | 2016-10-15 21:01:50 | [diff] [blame] | 171 | uint64_t display_unit; |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 172 | uint64_t interlaced; |
| 173 | uint64_t field_order; |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 174 | uint64_t stereo_mode; |
Vignesh Venkatasubramanian | ce6a8e5 | 2013-02-04 23:17:52 | [diff] [blame] | 175 | uint64_t alpha_mode; |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 176 | MatroskaTrackVideoColor color; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 177 | } MatroskaTrackVideo; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 178 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 179 | typedef struct MatroskaTrackAudio { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 180 | double samplerate; |
| 181 | double out_samplerate; |
| 182 | uint64_t bitdepth; |
| 183 | uint64_t channels; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 184 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 185 | /* real audio header (extracted from extradata) */ |
| 186 | int coded_framesize; |
| 187 | int sub_packet_h; |
| 188 | int frame_size; |
| 189 | int sub_packet_size; |
| 190 | int sub_packet_cnt; |
| 191 | int pkt_cnt; |
Reimar Döffinger | b09e506 | 2011-02-26 11:52:01 | [diff] [blame] | 192 | uint64_t buf_timecode; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 193 | uint8_t *buf; |
| 194 | } MatroskaTrackAudio; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 195 | |
Michael Niedermayer | a0fe1a2 | 2015-02-14 20:07:40 | [diff] [blame] | 196 | typedef struct MatroskaTrackPlane { |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 197 | uint64_t uid; |
| 198 | uint64_t type; |
| 199 | } MatroskaTrackPlane; |
| 200 | |
Michael Niedermayer | a0fe1a2 | 2015-02-14 20:07:40 | [diff] [blame] | 201 | typedef struct MatroskaTrackOperation { |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 202 | EbmlList combine_planes; |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 203 | } MatroskaTrackOperation; |
| 204 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 205 | typedef struct MatroskaTrack { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 206 | uint64_t num; |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 207 | uint64_t uid; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 208 | uint64_t type; |
Aurelien Jacobs | 38766e0 | 2009-02-15 15:29:09 | [diff] [blame] | 209 | char *name; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 210 | char *codec_id; |
| 211 | EbmlBin codec_priv; |
| 212 | char *language; |
Anton Khirnov | 7ff9708 | 2008-06-01 13:54:11 | [diff] [blame] | 213 | double time_scale; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 214 | uint64_t default_duration; |
Aurelien Jacobs | 4eff974 | 2008-08-05 00:39:53 | [diff] [blame] | 215 | uint64_t flag_default; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 216 | uint64_t flag_forced; |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 217 | uint64_t seek_preroll; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 218 | MatroskaTrackVideo video; |
| 219 | MatroskaTrackAudio audio; |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 220 | MatroskaTrackOperation operation; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 221 | EbmlList encodings; |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 222 | uint64_t codec_delay; |
Michael Niedermayer | b5bc436 | 2016-06-06 02:23:16 | [diff] [blame] | 223 | uint64_t codec_delay_in_track_tb; |
Aurelien Jacobs | fc4d335 | 2008-08-05 00:40:06 | [diff] [blame] | 224 | |
| 225 | AVStream *stream; |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 226 | int64_t end_timecode; |
Joakim Plate | 3e93c8e | 2010-03-03 21:46:43 | [diff] [blame] | 227 | int ms_compat; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 228 | uint64_t max_block_additional_id; |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 229 | |
| 230 | uint32_t palette[AVPALETTE_COUNT]; |
| 231 | int has_palette; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 232 | } MatroskaTrack; |
| 233 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 234 | typedef struct MatroskaAttachment { |
Aurelien Jacobs | 325ace3 | 2009-02-15 15:34:22 | [diff] [blame] | 235 | uint64_t uid; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 236 | char *filename; |
| 237 | char *mime; |
| 238 | EbmlBin bin; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 239 | |
| 240 | AVStream *stream; |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 241 | } MatroskaAttachment; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 242 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 243 | typedef struct MatroskaChapter { |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 244 | uint64_t start; |
| 245 | uint64_t end; |
| 246 | uint64_t uid; |
| 247 | char *title; |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 248 | |
| 249 | AVChapter *chapter; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 250 | } MatroskaChapter; |
| 251 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 252 | typedef struct MatroskaIndexPos { |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 253 | uint64_t track; |
| 254 | uint64_t pos; |
| 255 | } MatroskaIndexPos; |
| 256 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 257 | typedef struct MatroskaIndex { |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 258 | uint64_t time; |
| 259 | EbmlList pos; |
| 260 | } MatroskaIndex; |
| 261 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 262 | typedef struct MatroskaTag { |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 263 | char *name; |
| 264 | char *string; |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 265 | char *lang; |
| 266 | uint64_t def; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 267 | EbmlList sub; |
| 268 | } MatroskaTag; |
| 269 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 270 | typedef struct MatroskaTagTarget { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 271 | char *type; |
| 272 | uint64_t typevalue; |
| 273 | uint64_t trackuid; |
| 274 | uint64_t chapteruid; |
| 275 | uint64_t attachuid; |
| 276 | } MatroskaTagTarget; |
| 277 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 278 | typedef struct MatroskaTags { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 279 | MatroskaTagTarget target; |
| 280 | EbmlList tag; |
| 281 | } MatroskaTags; |
| 282 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 283 | typedef struct MatroskaSeekhead { |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 284 | uint64_t id; |
| 285 | uint64_t pos; |
| 286 | } MatroskaSeekhead; |
| 287 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 288 | typedef struct MatroskaLevel { |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 289 | uint64_t start; |
| 290 | uint64_t length; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 291 | } MatroskaLevel; |
| 292 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 293 | typedef struct MatroskaCluster { |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 294 | uint64_t timecode; |
| 295 | EbmlList blocks; |
| 296 | } MatroskaCluster; |
| 297 | |
Michael Niedermayer | a0fe1a2 | 2015-02-14 20:07:40 | [diff] [blame] | 298 | typedef struct MatroskaLevel1Element { |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 299 | uint64_t id; |
| 300 | uint64_t pos; |
| 301 | int parsed; |
| 302 | } MatroskaLevel1Element; |
| 303 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 304 | typedef struct MatroskaDemuxContext { |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 305 | const AVClass *class; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 306 | AVFormatContext *ctx; |
| 307 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 308 | /* EBML stuff */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 309 | int num_levels; |
| 310 | MatroskaLevel levels[EBML_MAX_DEPTH]; |
| 311 | int level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 312 | uint32_t current_id; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 313 | |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 314 | uint64_t time_scale; |
| 315 | double duration; |
| 316 | char *title; |
James Almer | 2c759d7 | 2013-11-24 08:31:48 | [diff] [blame] | 317 | char *muxingapp; |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 318 | EbmlBin date_utc; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 319 | EbmlList tracks; |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 320 | EbmlList attachments; |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 321 | EbmlList chapters; |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 322 | EbmlList index; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 323 | EbmlList tags; |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 324 | EbmlList seekhead; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 325 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 326 | /* byte position of the segment inside the stream */ |
Diego Biurrun | bc5c918 | 2008-10-03 10:16:29 | [diff] [blame] | 327 | int64_t segment_start; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 328 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 329 | /* the packet queue */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 330 | AVPacket **packets; |
| 331 | int num_packets; |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 332 | AVPacket *prev_pkt; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 333 | |
Aurelien Jacobs | 8d75b5a | 2007-06-04 22:35:16 | [diff] [blame] | 334 | int done; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 335 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 336 | /* What to skip before effectively reading a packet. */ |
| 337 | int skip_to_keyframe; |
Aurelien Jacobs | 20f7466 | 2008-09-09 12:01:51 | [diff] [blame] | 338 | uint64_t skip_to_timecode; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 339 | |
| 340 | /* File has a CUES element, but we defer parsing until it is needed. */ |
| 341 | int cues_parsing_deferred; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 342 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 343 | /* Level1 elements and whether they were read yet */ |
| 344 | MatroskaLevel1Element level1_elems[64]; |
| 345 | int num_level1_elems; |
| 346 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 347 | int current_cluster_num_blocks; |
| 348 | int64_t current_cluster_pos; |
| 349 | MatroskaCluster current_cluster; |
| 350 | |
| 351 | /* File has SSA subtitles which prevent incremental cluster parsing. */ |
| 352 | int contains_ssa; |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 353 | |
| 354 | /* WebM DASH Manifest live flag/ */ |
| 355 | int is_live; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 356 | } MatroskaDemuxContext; |
| 357 | |
Diego Biurrun | daf8cf3 | 2014-09-22 07:19:33 | [diff] [blame] | 358 | typedef struct MatroskaBlock { |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 359 | uint64_t duration; |
| 360 | int64_t reference; |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 361 | uint64_t non_simple; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 362 | EbmlBin bin; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 363 | uint64_t additional_id; |
| 364 | EbmlBin additional; |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 365 | int64_t discard_padding; |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 366 | } MatroskaBlock; |
| 367 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 368 | static const EbmlSyntax ebml_header[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 369 | { EBML_ID_EBMLREADVERSION, EBML_UINT, 0, offsetof(Ebml, version), { .u = EBML_VERSION } }, |
| 370 | { EBML_ID_EBMLMAXSIZELENGTH, EBML_UINT, 0, offsetof(Ebml, max_size), { .u = 8 } }, |
| 371 | { EBML_ID_EBMLMAXIDLENGTH, EBML_UINT, 0, offsetof(Ebml, id_length), { .u = 4 } }, |
| 372 | { EBML_ID_DOCTYPE, EBML_STR, 0, offsetof(Ebml, doctype), { .s = "(none)" } }, |
| 373 | { EBML_ID_DOCTYPEREADVERSION, EBML_UINT, 0, offsetof(Ebml, doctype_version), { .u = 1 } }, |
| 374 | { EBML_ID_EBMLVERSION, EBML_NONE }, |
| 375 | { EBML_ID_DOCTYPEVERSION, EBML_NONE }, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 376 | { 0 } |
| 377 | }; |
| 378 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 379 | static const EbmlSyntax ebml_syntax[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 380 | { EBML_ID_HEADER, EBML_NEST, 0, 0, { .n = ebml_header } }, |
Aurelien Jacobs | 6351132 | 2008-08-05 00:40:02 | [diff] [blame] | 381 | { 0 } |
| 382 | }; |
| 383 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 384 | static const EbmlSyntax matroska_info[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 385 | { MATROSKA_ID_TIMECODESCALE, EBML_UINT, 0, offsetof(MatroskaDemuxContext, time_scale), { .u = 1000000 } }, |
| 386 | { MATROSKA_ID_DURATION, EBML_FLOAT, 0, offsetof(MatroskaDemuxContext, duration) }, |
| 387 | { MATROSKA_ID_TITLE, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, title) }, |
| 388 | { MATROSKA_ID_WRITINGAPP, EBML_NONE }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 389 | { MATROSKA_ID_MUXINGAPP, EBML_UTF8, 0, offsetof(MatroskaDemuxContext, muxingapp) }, |
| 390 | { MATROSKA_ID_DATEUTC, EBML_BIN, 0, offsetof(MatroskaDemuxContext, date_utc) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 391 | { MATROSKA_ID_SEGMENTUID, EBML_NONE }, |
Aurelien Jacobs | 2970858 | 2008-08-05 00:40:27 | [diff] [blame] | 392 | { 0 } |
| 393 | }; |
| 394 | |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 395 | static const EbmlSyntax matroska_mastering_meta[] = { |
| 396 | { MATROSKA_ID_VIDEOCOLOR_RX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, r_x), { .f=-1 } }, |
| 397 | { MATROSKA_ID_VIDEOCOLOR_RY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, r_y), { .f=-1 } }, |
| 398 | { MATROSKA_ID_VIDEOCOLOR_GX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, g_x), { .f=-1 } }, |
| 399 | { MATROSKA_ID_VIDEOCOLOR_GY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, g_y), { .f=-1 } }, |
| 400 | { MATROSKA_ID_VIDEOCOLOR_BX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, b_x), { .f=-1 } }, |
| 401 | { MATROSKA_ID_VIDEOCOLOR_BY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, b_y), { .f=-1 } }, |
| 402 | { MATROSKA_ID_VIDEOCOLOR_WHITEX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, white_x), { .f=-1 } }, |
| 403 | { MATROSKA_ID_VIDEOCOLOR_WHITEY, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, white_y), { .f=-1 } }, |
| 404 | { MATROSKA_ID_VIDEOCOLOR_LUMINANCEMIN, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, min_luminance), { .f=-1 } }, |
| 405 | { MATROSKA_ID_VIDEOCOLOR_LUMINANCEMAX, EBML_FLOAT, 0, offsetof(MatroskaMasteringMeta, max_luminance), { .f=-1 } }, |
| 406 | { 0 } |
| 407 | }; |
| 408 | |
| 409 | static const EbmlSyntax matroska_track_video_color[] = { |
James Almer | f5cfc0c | 2016-10-19 02:40:09 | [diff] [blame] | 410 | { MATROSKA_ID_VIDEOCOLORMATRIXCOEFF, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, matrix_coefficients), { .u = AVCOL_SPC_UNSPECIFIED } }, |
James Almer | 0ad71ed | 2016-10-19 02:55:32 | [diff] [blame] | 411 | { MATROSKA_ID_VIDEOCOLORBITSPERCHANNEL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, bits_per_channel), { .u=0 } }, |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 412 | { MATROSKA_ID_VIDEOCOLORCHROMASUBHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_sub_horz), { .u=0 } }, |
| 413 | { MATROSKA_ID_VIDEOCOLORCHROMASUBVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_sub_vert), { .u=0 } }, |
| 414 | { MATROSKA_ID_VIDEOCOLORCBSUBHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, cb_sub_horz), { .u=0 } }, |
| 415 | { MATROSKA_ID_VIDEOCOLORCBSUBVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, cb_sub_vert), { .u=0 } }, |
James Almer | f5cfc0c | 2016-10-19 02:40:09 | [diff] [blame] | 416 | { MATROSKA_ID_VIDEOCOLORCHROMASITINGHORZ, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_siting_horz), { .u = MATROSKA_COLOUR_CHROMASITINGHORZ_UNDETERMINED } }, |
| 417 | { MATROSKA_ID_VIDEOCOLORCHROMASITINGVERT, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, chroma_siting_vert), { .u = MATROSKA_COLOUR_CHROMASITINGVERT_UNDETERMINED } }, |
| 418 | { MATROSKA_ID_VIDEOCOLORRANGE, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, range), { .u = AVCOL_RANGE_UNSPECIFIED } }, |
| 419 | { MATROSKA_ID_VIDEOCOLORTRANSFERCHARACTERISTICS, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, transfer_characteristics), { .u = AVCOL_TRC_UNSPECIFIED } }, |
| 420 | { MATROSKA_ID_VIDEOCOLORPRIMARIES, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, primaries), { .u = AVCOL_PRI_UNSPECIFIED } }, |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 421 | { MATROSKA_ID_VIDEOCOLORMAXCLL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, max_cll), { .u=0 } }, |
| 422 | { MATROSKA_ID_VIDEOCOLORMAXFALL, EBML_UINT, 0, offsetof(MatroskaTrackVideoColor, max_fall), { .u=0 } }, |
| 423 | { MATROSKA_ID_VIDEOCOLORMASTERINGMETA, EBML_NEST, 0, offsetof(MatroskaTrackVideoColor, mastering_meta), { .n = matroska_mastering_meta } }, |
| 424 | { 0 } |
| 425 | }; |
| 426 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 427 | static const EbmlSyntax matroska_track_video[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 428 | { MATROSKA_ID_VIDEOFRAMERATE, EBML_FLOAT, 0, offsetof(MatroskaTrackVideo, frame_rate) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 429 | { MATROSKA_ID_VIDEODISPLAYWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_width), { .u=-1 } }, |
| 430 | { MATROSKA_ID_VIDEODISPLAYHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_height), { .u=-1 } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 431 | { MATROSKA_ID_VIDEOPIXELWIDTH, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_width) }, |
| 432 | { MATROSKA_ID_VIDEOPIXELHEIGHT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, pixel_height) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 433 | { MATROSKA_ID_VIDEOCOLORSPACE, EBML_BIN, 0, offsetof(MatroskaTrackVideo, color_space) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 434 | { MATROSKA_ID_VIDEOALPHAMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, alpha_mode) }, |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 435 | { MATROSKA_ID_VIDEOCOLOR, EBML_NEST, 0, offsetof(MatroskaTrackVideo, color), { .n = matroska_track_video_color } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 436 | { MATROSKA_ID_VIDEOPIXELCROPB, EBML_NONE }, |
| 437 | { MATROSKA_ID_VIDEOPIXELCROPT, EBML_NONE }, |
| 438 | { MATROSKA_ID_VIDEOPIXELCROPL, EBML_NONE }, |
| 439 | { MATROSKA_ID_VIDEOPIXELCROPR, EBML_NONE }, |
James Almer | bad8bbc | 2016-10-15 21:01:50 | [diff] [blame] | 440 | { MATROSKA_ID_VIDEODISPLAYUNIT, EBML_UINT, 0, offsetof(MatroskaTrackVideo, display_unit), { .u= MATROSKA_VIDEO_DISPLAYUNIT_PIXELS } }, |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 441 | { MATROSKA_ID_VIDEOFLAGINTERLACED, EBML_UINT, 0, offsetof(MatroskaTrackVideo, interlaced), { .u = MATROSKA_VIDEO_INTERLACE_FLAG_UNDETERMINED } }, |
| 442 | { MATROSKA_ID_VIDEOFIELDORDER, EBML_UINT, 0, offsetof(MatroskaTrackVideo, field_order), { .u = MATROSKA_VIDEO_FIELDORDER_UNDETERMINED } }, |
Vittorio Giovara | d4ae8ac | 2014-08-12 21:28:49 | [diff] [blame] | 443 | { MATROSKA_ID_VIDEOSTEREOMODE, EBML_UINT, 0, offsetof(MatroskaTrackVideo, stereo_mode), { .u = MATROSKA_VIDEO_STEREOMODE_TYPE_NB } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 444 | { MATROSKA_ID_VIDEOASPECTRATIO, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 445 | { 0 } |
| 446 | }; |
| 447 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 448 | static const EbmlSyntax matroska_track_audio[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 449 | { MATROSKA_ID_AUDIOSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, samplerate), { .f = 8000.0 } }, |
| 450 | { MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, EBML_FLOAT, 0, offsetof(MatroskaTrackAudio, out_samplerate) }, |
| 451 | { MATROSKA_ID_AUDIOBITDEPTH, EBML_UINT, 0, offsetof(MatroskaTrackAudio, bitdepth) }, |
| 452 | { MATROSKA_ID_AUDIOCHANNELS, EBML_UINT, 0, offsetof(MatroskaTrackAudio, channels), { .u = 1 } }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 453 | { 0 } |
| 454 | }; |
| 455 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 456 | static const EbmlSyntax matroska_track_encoding_compression[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 457 | { MATROSKA_ID_ENCODINGCOMPALGO, EBML_UINT, 0, offsetof(MatroskaTrackCompression, algo), { .u = 0 } }, |
| 458 | { MATROSKA_ID_ENCODINGCOMPSETTINGS, EBML_BIN, 0, offsetof(MatroskaTrackCompression, settings) }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 459 | { 0 } |
| 460 | }; |
| 461 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 462 | static const EbmlSyntax matroska_track_encoding_encryption[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 463 | { MATROSKA_ID_ENCODINGENCALGO, EBML_UINT, 0, offsetof(MatroskaTrackEncryption,algo), {.u = 0} }, |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 464 | { MATROSKA_ID_ENCODINGENCKEYID, EBML_BIN, 0, offsetof(MatroskaTrackEncryption,key_id) }, |
| 465 | { MATROSKA_ID_ENCODINGENCAESSETTINGS, EBML_NONE }, |
| 466 | { MATROSKA_ID_ENCODINGSIGALGO, EBML_NONE }, |
| 467 | { MATROSKA_ID_ENCODINGSIGHASHALGO, EBML_NONE }, |
| 468 | { MATROSKA_ID_ENCODINGSIGKEYID, EBML_NONE }, |
| 469 | { MATROSKA_ID_ENCODINGSIGNATURE, EBML_NONE }, |
| 470 | { 0 } |
| 471 | }; |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 472 | static const EbmlSyntax matroska_track_encoding[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 473 | { MATROSKA_ID_ENCODINGSCOPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, scope), { .u = 1 } }, |
| 474 | { MATROSKA_ID_ENCODINGTYPE, EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type), { .u = 0 } }, |
| 475 | { 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] | 476 | { 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] | 477 | { MATROSKA_ID_ENCODINGORDER, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 478 | { 0 } |
| 479 | }; |
| 480 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 481 | static const EbmlSyntax matroska_track_encodings[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 482 | { 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] | 483 | { 0 } |
| 484 | }; |
| 485 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 486 | static const EbmlSyntax matroska_track_plane[] = { |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 487 | { MATROSKA_ID_TRACKPLANEUID, EBML_UINT, 0, offsetof(MatroskaTrackPlane,uid) }, |
| 488 | { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) }, |
| 489 | { 0 } |
| 490 | }; |
| 491 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 492 | static const EbmlSyntax matroska_track_combine_planes[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 493 | { 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] | 494 | { 0 } |
| 495 | }; |
| 496 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 497 | static const EbmlSyntax matroska_track_operation[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 498 | { MATROSKA_ID_TRACKCOMBINEPLANES, EBML_NEST, 0, 0, {.n = matroska_track_combine_planes} }, |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 499 | { 0 } |
| 500 | }; |
| 501 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 502 | static const EbmlSyntax matroska_track[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 503 | { MATROSKA_ID_TRACKNUMBER, EBML_UINT, 0, offsetof(MatroskaTrack, num) }, |
| 504 | { MATROSKA_ID_TRACKNAME, EBML_UTF8, 0, offsetof(MatroskaTrack, name) }, |
| 505 | { MATROSKA_ID_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTrack, uid) }, |
| 506 | { MATROSKA_ID_TRACKTYPE, EBML_UINT, 0, offsetof(MatroskaTrack, type) }, |
| 507 | { MATROSKA_ID_CODECID, EBML_STR, 0, offsetof(MatroskaTrack, codec_id) }, |
| 508 | { MATROSKA_ID_CODECPRIVATE, EBML_BIN, 0, offsetof(MatroskaTrack, codec_priv) }, |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 509 | { MATROSKA_ID_CODECDELAY, EBML_UINT, 0, offsetof(MatroskaTrack, codec_delay) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 510 | { MATROSKA_ID_TRACKLANGUAGE, EBML_UTF8, 0, offsetof(MatroskaTrack, language), { .s = "eng" } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 511 | { MATROSKA_ID_TRACKDEFAULTDURATION, EBML_UINT, 0, offsetof(MatroskaTrack, default_duration) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 512 | { MATROSKA_ID_TRACKTIMECODESCALE, EBML_FLOAT, 0, offsetof(MatroskaTrack, time_scale), { .f = 1.0 } }, |
| 513 | { MATROSKA_ID_TRACKFLAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTrack, flag_default), { .u = 1 } }, |
| 514 | { MATROSKA_ID_TRACKFLAGFORCED, EBML_UINT, 0, offsetof(MatroskaTrack, flag_forced), { .u = 0 } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 515 | { MATROSKA_ID_TRACKVIDEO, EBML_NEST, 0, offsetof(MatroskaTrack, video), { .n = matroska_track_video } }, |
| 516 | { MATROSKA_ID_TRACKAUDIO, EBML_NEST, 0, offsetof(MatroskaTrack, audio), { .n = matroska_track_audio } }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 517 | { MATROSKA_ID_TRACKOPERATION, EBML_NEST, 0, offsetof(MatroskaTrack, operation), { .n = matroska_track_operation } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 518 | { MATROSKA_ID_TRACKCONTENTENCODINGS, EBML_NEST, 0, 0, { .n = matroska_track_encodings } }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 519 | { MATROSKA_ID_TRACKMAXBLKADDID, EBML_UINT, 0, offsetof(MatroskaTrack, max_block_additional_id) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 520 | { MATROSKA_ID_SEEKPREROLL, EBML_UINT, 0, offsetof(MatroskaTrack, seek_preroll) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 521 | { MATROSKA_ID_TRACKFLAGENABLED, EBML_NONE }, |
| 522 | { MATROSKA_ID_TRACKFLAGLACING, EBML_NONE }, |
| 523 | { MATROSKA_ID_CODECNAME, EBML_NONE }, |
| 524 | { MATROSKA_ID_CODECDECODEALL, EBML_NONE }, |
| 525 | { MATROSKA_ID_CODECINFOURL, EBML_NONE }, |
| 526 | { MATROSKA_ID_CODECDOWNLOADURL, EBML_NONE }, |
| 527 | { MATROSKA_ID_TRACKMINCACHE, EBML_NONE }, |
| 528 | { MATROSKA_ID_TRACKMAXCACHE, EBML_NONE }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 529 | { 0 } |
| 530 | }; |
| 531 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 532 | static const EbmlSyntax matroska_tracks[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 533 | { MATROSKA_ID_TRACKENTRY, EBML_NEST, sizeof(MatroskaTrack), offsetof(MatroskaDemuxContext, tracks), { .n = matroska_track } }, |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 534 | { 0 } |
| 535 | }; |
| 536 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 537 | static const EbmlSyntax matroska_attachment[] = { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 538 | { MATROSKA_ID_FILEUID, EBML_UINT, 0, offsetof(MatroskaAttachment, uid) }, |
| 539 | { MATROSKA_ID_FILENAME, EBML_UTF8, 0, offsetof(MatroskaAttachment, filename) }, |
| 540 | { MATROSKA_ID_FILEMIMETYPE, EBML_STR, 0, offsetof(MatroskaAttachment, mime) }, |
| 541 | { MATROSKA_ID_FILEDATA, EBML_BIN, 0, offsetof(MatroskaAttachment, bin) }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 542 | { MATROSKA_ID_FILEDESC, EBML_NONE }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 543 | { 0 } |
| 544 | }; |
| 545 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 546 | static const EbmlSyntax matroska_attachments[] = { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 547 | { MATROSKA_ID_ATTACHEDFILE, EBML_NEST, sizeof(MatroskaAttachment), offsetof(MatroskaDemuxContext, attachments), { .n = matroska_attachment } }, |
Aurelien Jacobs | b414cb8 | 2008-08-05 00:40:24 | [diff] [blame] | 548 | { 0 } |
| 549 | }; |
| 550 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 551 | static const EbmlSyntax matroska_chapter_display[] = { |
Rodger Combs | cf2719a | 2015-09-20 14:34:05 | [diff] [blame] | 552 | { MATROSKA_ID_CHAPSTRING, EBML_UTF8, 0, offsetof(MatroskaChapter, title) }, |
| 553 | { MATROSKA_ID_CHAPLANG, EBML_NONE }, |
| 554 | { MATROSKA_ID_CHAPCOUNTRY, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 555 | { 0 } |
| 556 | }; |
| 557 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 558 | static const EbmlSyntax matroska_chapter_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 559 | { MATROSKA_ID_CHAPTERTIMESTART, EBML_UINT, 0, offsetof(MatroskaChapter, start), { .u = AV_NOPTS_VALUE } }, |
| 560 | { MATROSKA_ID_CHAPTERTIMEEND, EBML_UINT, 0, offsetof(MatroskaChapter, end), { .u = AV_NOPTS_VALUE } }, |
| 561 | { MATROSKA_ID_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaChapter, uid) }, |
| 562 | { MATROSKA_ID_CHAPTERDISPLAY, EBML_NEST, 0, 0, { .n = matroska_chapter_display } }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 563 | { MATROSKA_ID_CHAPTERFLAGHIDDEN, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 564 | { MATROSKA_ID_CHAPTERFLAGENABLED, EBML_NONE }, |
| 565 | { MATROSKA_ID_CHAPTERPHYSEQUIV, EBML_NONE }, |
| 566 | { MATROSKA_ID_CHAPTERATOM, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 567 | { 0 } |
| 568 | }; |
| 569 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 570 | static const EbmlSyntax matroska_chapter[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 571 | { 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] | 572 | { MATROSKA_ID_EDITIONUID, EBML_NONE }, |
| 573 | { MATROSKA_ID_EDITIONFLAGHIDDEN, EBML_NONE }, |
| 574 | { MATROSKA_ID_EDITIONFLAGDEFAULT, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 575 | { MATROSKA_ID_EDITIONFLAGORDERED, EBML_NONE }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 576 | { 0 } |
| 577 | }; |
| 578 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 579 | static const EbmlSyntax matroska_chapters[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 580 | { MATROSKA_ID_EDITIONENTRY, EBML_NEST, 0, 0, { .n = matroska_chapter } }, |
Aurelien Jacobs | 6bbd7c7 | 2008-08-05 00:40:21 | [diff] [blame] | 581 | { 0 } |
| 582 | }; |
| 583 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 584 | static const EbmlSyntax matroska_index_pos[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 585 | { MATROSKA_ID_CUETRACK, EBML_UINT, 0, offsetof(MatroskaIndexPos, track) }, |
| 586 | { MATROSKA_ID_CUECLUSTERPOSITION, EBML_UINT, 0, offsetof(MatroskaIndexPos, pos) }, |
James Almer | 5ab7b3b | 2013-09-15 09:32:36 | [diff] [blame] | 587 | { MATROSKA_ID_CUERELATIVEPOSITION,EBML_NONE }, |
James Almer | 56f1740 | 2013-09-21 01:15:49 | [diff] [blame] | 588 | { MATROSKA_ID_CUEDURATION, EBML_NONE }, |
Aurelien Jacobs | 5df3cc6 | 2008-08-13 21:15:15 | [diff] [blame] | 589 | { MATROSKA_ID_CUEBLOCKNUMBER, EBML_NONE }, |
Aurelien Jacobs | e5929fd | 2008-08-05 00:40:15 | [diff] [blame] | 590 | { 0 } |
| 591 | }; |
| 592 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 593 | static const EbmlSyntax matroska_index_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 594 | { MATROSKA_ID_CUETIME, EBML_UINT, 0, offsetof(MatroskaIndex, time) }, |
| 595 | { 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] | 596 | { 0 } |
| 597 | }; |
| 598 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 599 | static const EbmlSyntax matroska_index[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 600 | { 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] | 601 | { 0 } |
| 602 | }; |
| 603 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 604 | static const EbmlSyntax matroska_simpletag[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 605 | { MATROSKA_ID_TAGNAME, EBML_UTF8, 0, offsetof(MatroskaTag, name) }, |
| 606 | { MATROSKA_ID_TAGSTRING, EBML_UTF8, 0, offsetof(MatroskaTag, string) }, |
| 607 | { MATROSKA_ID_TAGLANG, EBML_STR, 0, offsetof(MatroskaTag, lang), { .s = "und" } }, |
| 608 | { MATROSKA_ID_TAGDEFAULT, EBML_UINT, 0, offsetof(MatroskaTag, def) }, |
| 609 | { MATROSKA_ID_TAGDEFAULT_BUG, EBML_UINT, 0, offsetof(MatroskaTag, def) }, |
| 610 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTag, sub), { .n = matroska_simpletag } }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 611 | { 0 } |
| 612 | }; |
| 613 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 614 | static const EbmlSyntax matroska_tagtargets[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 615 | { MATROSKA_ID_TAGTARGETS_TYPE, EBML_STR, 0, offsetof(MatroskaTagTarget, type) }, |
| 616 | { MATROSKA_ID_TAGTARGETS_TYPEVALUE, EBML_UINT, 0, offsetof(MatroskaTagTarget, typevalue), { .u = 50 } }, |
| 617 | { MATROSKA_ID_TAGTARGETS_TRACKUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, trackuid) }, |
| 618 | { MATROSKA_ID_TAGTARGETS_CHAPTERUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, chapteruid) }, |
| 619 | { MATROSKA_ID_TAGTARGETS_ATTACHUID, EBML_UINT, 0, offsetof(MatroskaTagTarget, attachuid) }, |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 620 | { 0 } |
| 621 | }; |
| 622 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 623 | static const EbmlSyntax matroska_tag[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 624 | { MATROSKA_ID_SIMPLETAG, EBML_NEST, sizeof(MatroskaTag), offsetof(MatroskaTags, tag), { .n = matroska_simpletag } }, |
| 625 | { MATROSKA_ID_TAGTARGETS, EBML_NEST, 0, offsetof(MatroskaTags, target), { .n = matroska_tagtargets } }, |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 626 | { 0 } |
| 627 | }; |
| 628 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 629 | static const EbmlSyntax matroska_tags[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 630 | { MATROSKA_ID_TAG, EBML_NEST, sizeof(MatroskaTags), offsetof(MatroskaDemuxContext, tags), { .n = matroska_tag } }, |
Aurelien Jacobs | 434d496 | 2008-08-05 00:40:18 | [diff] [blame] | 631 | { 0 } |
| 632 | }; |
| 633 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 634 | static const EbmlSyntax matroska_seekhead_entry[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 635 | { MATROSKA_ID_SEEKID, EBML_UINT, 0, offsetof(MatroskaSeekhead, id) }, |
| 636 | { MATROSKA_ID_SEEKPOSITION, EBML_UINT, 0, offsetof(MatroskaSeekhead, pos), { .u = -1 } }, |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 637 | { 0 } |
| 638 | }; |
| 639 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 640 | static const EbmlSyntax matroska_seekhead[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 641 | { 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] | 642 | { 0 } |
| 643 | }; |
| 644 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 645 | static const EbmlSyntax matroska_segment[] = { |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 646 | { MATROSKA_ID_INFO, EBML_LEVEL1, 0, 0, { .n = matroska_info } }, |
| 647 | { MATROSKA_ID_TRACKS, EBML_LEVEL1, 0, 0, { .n = matroska_tracks } }, |
| 648 | { MATROSKA_ID_ATTACHMENTS, EBML_LEVEL1, 0, 0, { .n = matroska_attachments } }, |
| 649 | { MATROSKA_ID_CHAPTERS, EBML_LEVEL1, 0, 0, { .n = matroska_chapters } }, |
| 650 | { MATROSKA_ID_CUES, EBML_LEVEL1, 0, 0, { .n = matroska_index } }, |
| 651 | { MATROSKA_ID_TAGS, EBML_LEVEL1, 0, 0, { .n = matroska_tags } }, |
| 652 | { MATROSKA_ID_SEEKHEAD, EBML_LEVEL1, 0, 0, { .n = matroska_seekhead } }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 653 | { MATROSKA_ID_CLUSTER, EBML_STOP }, |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 654 | { 0 } |
| 655 | }; |
| 656 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 657 | static const EbmlSyntax matroska_segments[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 658 | { MATROSKA_ID_SEGMENT, EBML_NEST, 0, 0, { .n = matroska_segment } }, |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 659 | { 0 } |
| 660 | }; |
| 661 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 662 | static const EbmlSyntax matroska_blockmore[] = { |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 663 | { MATROSKA_ID_BLOCKADDID, EBML_UINT, 0, offsetof(MatroskaBlock,additional_id) }, |
| 664 | { MATROSKA_ID_BLOCKADDITIONAL, EBML_BIN, 0, offsetof(MatroskaBlock,additional) }, |
| 665 | { 0 } |
| 666 | }; |
| 667 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 668 | static const EbmlSyntax matroska_blockadditions[] = { |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 669 | { MATROSKA_ID_BLOCKMORE, EBML_NEST, 0, 0, {.n = matroska_blockmore} }, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 670 | { 0 } |
| 671 | }; |
| 672 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 673 | static const EbmlSyntax matroska_blockgroup[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 674 | { MATROSKA_ID_BLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 675 | { MATROSKA_ID_BLOCKADDITIONS, EBML_NEST, 0, 0, { .n = matroska_blockadditions} }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 676 | { MATROSKA_ID_SIMPLEBLOCK, EBML_BIN, 0, offsetof(MatroskaBlock, bin) }, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 677 | { MATROSKA_ID_BLOCKDURATION, EBML_UINT, 0, offsetof(MatroskaBlock, duration) }, |
| 678 | { MATROSKA_ID_DISCARDPADDING, EBML_SINT, 0, offsetof(MatroskaBlock, discard_padding) }, |
| 679 | { MATROSKA_ID_BLOCKREFERENCE, EBML_SINT, 0, offsetof(MatroskaBlock, reference) }, |
Anton Khirnov | 564b7e0 | 2013-05-15 13:48:15 | [diff] [blame] | 680 | { MATROSKA_ID_CODECSTATE, EBML_NONE }, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 681 | { 1, EBML_UINT, 0, offsetof(MatroskaBlock, non_simple), { .u = 1 } }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 682 | { 0 } |
| 683 | }; |
| 684 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 685 | static const EbmlSyntax matroska_cluster[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 686 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 687 | { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 688 | { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 689 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 690 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 691 | { 0 } |
| 692 | }; |
| 693 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 694 | static const EbmlSyntax matroska_clusters[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 695 | { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster } }, |
| 696 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 697 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 698 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 699 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 700 | { 0 } |
| 701 | }; |
| 702 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 703 | static const EbmlSyntax matroska_cluster_incremental_parsing[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 704 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 705 | { MATROSKA_ID_BLOCKGROUP, EBML_NEST, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 706 | { MATROSKA_ID_SIMPLEBLOCK, EBML_PASS, sizeof(MatroskaBlock), offsetof(MatroskaCluster, blocks), { .n = matroska_blockgroup } }, |
| 707 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 708 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
| 709 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 710 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 711 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 712 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
| 713 | { MATROSKA_ID_CLUSTER, EBML_STOP }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 714 | { 0 } |
| 715 | }; |
| 716 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 717 | static const EbmlSyntax matroska_cluster_incremental[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 718 | { MATROSKA_ID_CLUSTERTIMECODE, EBML_UINT, 0, offsetof(MatroskaCluster, timecode) }, |
| 719 | { MATROSKA_ID_BLOCKGROUP, EBML_STOP }, |
| 720 | { MATROSKA_ID_SIMPLEBLOCK, EBML_STOP }, |
| 721 | { MATROSKA_ID_CLUSTERPOSITION, EBML_NONE }, |
| 722 | { MATROSKA_ID_CLUSTERPREVSIZE, EBML_NONE }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 723 | { 0 } |
| 724 | }; |
| 725 | |
Michael Niedermayer | c187217 | 2015-05-02 11:27:18 | [diff] [blame] | 726 | static const EbmlSyntax matroska_clusters_incremental[] = { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 727 | { MATROSKA_ID_CLUSTER, EBML_NEST, 0, 0, { .n = matroska_cluster_incremental } }, |
| 728 | { MATROSKA_ID_INFO, EBML_NONE }, |
| 729 | { MATROSKA_ID_CUES, EBML_NONE }, |
| 730 | { MATROSKA_ID_TAGS, EBML_NONE }, |
| 731 | { MATROSKA_ID_SEEKHEAD, EBML_NONE }, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 732 | { 0 } |
| 733 | }; |
| 734 | |
Alex Converse | b0f29db | 2012-02-20 08:42:33 | [diff] [blame] | 735 | static const char *const matroska_doctypes[] = { "matroska", "webm" }; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 736 | |
Michael Niedermayer | f573acc | 2016-06-24 16:26:46 | [diff] [blame] | 737 | static int matroska_read_close(AVFormatContext *s); |
| 738 | |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 739 | static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos) |
| 740 | { |
| 741 | AVIOContext *pb = matroska->ctx->pb; |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 742 | int64_t ret; |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 743 | uint32_t id; |
| 744 | matroska->current_id = 0; |
| 745 | matroska->num_levels = 0; |
| 746 | |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 747 | /* seek to next position to resync from */ |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 748 | if ((ret = avio_seek(pb, last_pos + 1, SEEK_SET)) < 0) { |
| 749 | matroska->done = 1; |
| 750 | return ret; |
| 751 | } |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 752 | |
| 753 | id = avio_rb32(pb); |
| 754 | |
| 755 | // try to find a toplevel element |
James Almer | d34ec64 | 2014-08-07 20:12:41 | [diff] [blame] | 756 | while (!avio_feof(pb)) { |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 757 | if (id == MATROSKA_ID_INFO || id == MATROSKA_ID_TRACKS || |
| 758 | id == MATROSKA_ID_CUES || id == MATROSKA_ID_TAGS || |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 759 | id == MATROSKA_ID_SEEKHEAD || id == MATROSKA_ID_ATTACHMENTS || |
Sean McGovern | 8835c55 | 2013-05-27 22:11:50 | [diff] [blame] | 760 | id == MATROSKA_ID_CLUSTER || id == MATROSKA_ID_CHAPTERS) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 761 | matroska->current_id = id; |
| 762 | return 0; |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 763 | } |
| 764 | id = (id << 8) | avio_r8(pb); |
| 765 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 766 | |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 767 | matroska->done = 1; |
| 768 | return AVERROR_EOF; |
| 769 | } |
| 770 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 771 | /* |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 772 | * 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] | 773 | */ |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 774 | static int ebml_level_end(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 775 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 776 | AVIOContext *pb = matroska->ctx->pb; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 777 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 778 | |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 779 | if (matroska->num_levels > 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 780 | MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1]; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 781 | if (pos - level->start >= level->length || matroska->current_id) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 782 | matroska->num_levels--; |
Aurelien Jacobs | 592110c | 2008-08-05 00:42:08 | [diff] [blame] | 783 | return 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 784 | } |
| 785 | } |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 786 | return (matroska->is_live && matroska->ctx->pb->eof_reached) ? 1 : 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | /* |
| 790 | * Read: an "EBML number", which is defined as a variable-length |
| 791 | * array of bytes. The first byte indicates the length by giving a |
| 792 | * number of 0-bits followed by a one. The position of the first |
| 793 | * "one" bit inside the first byte indicates the length of this |
| 794 | * number. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 795 | * Returns: number of bytes read, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 796 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 797 | static int ebml_read_num(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 798 | int max_size, uint64_t *number) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 799 | { |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 800 | int read = 1, n = 1; |
| 801 | uint64_t total = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 802 | |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 803 | /* The first byte tells us the length in bytes - avio_r8() can normally |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 804 | * return 0, but since that's not a valid first ebmlID byte, we can |
| 805 | * use it safely here to catch EOS. */ |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 806 | if (!(total = avio_r8(pb))) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 807 | /* we might encounter EOS here */ |
James Almer | d34ec64 | 2014-08-07 20:12:41 | [diff] [blame] | 808 | if (!avio_feof(pb)) { |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 809 | int64_t pos = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 810 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 811 | "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", |
| 812 | pos, pos); |
Anton Khirnov | 721113b | 2012-07-21 08:48:39 | [diff] [blame] | 813 | return pb->error ? pb->error : AVERROR(EIO); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 814 | } |
Anton Khirnov | 721113b | 2012-07-21 08:48:39 | [diff] [blame] | 815 | return AVERROR_EOF; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | /* get the length of the EBML number */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 819 | read = 8 - ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 820 | if (read > max_size) { |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 821 | int64_t pos = avio_tell(pb) - 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 822 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 823 | "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n", |
| 824 | (uint8_t) total, pos, pos); |
| 825 | return AVERROR_INVALIDDATA; |
| 826 | } |
| 827 | |
| 828 | /* read out length */ |
Reimar Döffinger | ff6a5fc | 2010-09-02 19:17:46 | [diff] [blame] | 829 | total ^= 1 << ff_log2_tab[total]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 830 | while (n++ < read) |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 831 | total = (total << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 832 | |
| 833 | *number = total; |
| 834 | |
| 835 | return read; |
| 836 | } |
| 837 | |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 838 | /** |
| 839 | * Read a EBML length value. |
| 840 | * This needs special handling for the "unknown length" case which has multiple |
| 841 | * encodings. |
| 842 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 843 | static int ebml_read_length(MatroskaDemuxContext *matroska, AVIOContext *pb, |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 844 | uint64_t *number) |
| 845 | { |
| 846 | int res = ebml_read_num(matroska, pb, 8, number); |
| 847 | if (res > 0 && *number + 1 == 1ULL << (7 * res)) |
| 848 | *number = 0xffffffffffffffULL; |
| 849 | return res; |
| 850 | } |
| 851 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 852 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 853 | * Read the next element as an unsigned int. |
| 854 | * 0 is success, < 0 is failure. |
| 855 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 856 | static int ebml_read_uint(AVIOContext *pb, int size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 857 | { |
Aurelien Jacobs | c6cd2b3 | 2008-08-05 00:41:55 | [diff] [blame] | 858 | int n = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 859 | |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 860 | if (size > 8) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 861 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 862 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 863 | /* big-endian ordering; build up number */ |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 864 | *num = 0; |
| 865 | while (n++ < size) |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 866 | *num = (*num << 8) | avio_r8(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 867 | |
| 868 | return 0; |
| 869 | } |
| 870 | |
| 871 | /* |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 872 | * Read the next element as a signed int. |
| 873 | * 0 is success, < 0 is failure. |
| 874 | */ |
| 875 | static int ebml_read_sint(AVIOContext *pb, int size, int64_t *num) |
| 876 | { |
| 877 | int n = 1; |
| 878 | |
| 879 | if (size > 8) |
| 880 | return AVERROR_INVALIDDATA; |
| 881 | |
| 882 | if (size == 0) { |
| 883 | *num = 0; |
| 884 | } else { |
Michael Niedermayer | cddd15b | 2013-11-15 20:30:30 | [diff] [blame] | 885 | *num = sign_extend(avio_r8(pb), 8); |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 886 | |
| 887 | /* big-endian ordering; build up number */ |
| 888 | while (n++ < size) |
Michael Niedermayer | 2f8c816 | 2015-07-01 09:59:57 | [diff] [blame] | 889 | *num = ((uint64_t)*num << 8) | avio_r8(pb); |
Jan Gerber | d03eea3 | 2013-11-15 18:00:37 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | return 0; |
| 893 | } |
| 894 | |
| 895 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 896 | * Read the next element as a float. |
| 897 | * 0 is success, < 0 is failure. |
| 898 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 899 | static int ebml_read_float(AVIOContext *pb, int size, double *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 900 | { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 901 | if (size == 0) |
Aurelien Jacobs | 4a194c8 | 2010-09-05 21:37:40 | [diff] [blame] | 902 | *num = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 903 | else if (size == 4) |
Mans Rullgard | 3383a53 | 2011-11-27 14:04:16 | [diff] [blame] | 904 | *num = av_int2float(avio_rb32(pb)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 905 | else if (size == 8) |
Mans Rullgard | 3383a53 | 2011-11-27 14:04:16 | [diff] [blame] | 906 | *num = av_int2double(avio_rb64(pb)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 907 | else |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 908 | return AVERROR_INVALIDDATA; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 909 | |
| 910 | return 0; |
| 911 | } |
| 912 | |
| 913 | /* |
| 914 | * Read the next element as an ASCII string. |
| 915 | * 0 is success, < 0 is failure. |
| 916 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 917 | static int ebml_read_ascii(AVIOContext *pb, int size, char **str) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 918 | { |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 919 | char *res; |
| 920 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 921 | /* EBML strings are usually not 0-terminated, so we allocate one |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 922 | * byte more, read the string and NULL-terminate it ourselves. */ |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 923 | if (!(res = av_malloc(size + 1))) |
Panagiotis Issaris | 769e10f | 2007-07-19 15:21:30 | [diff] [blame] | 924 | return AVERROR(ENOMEM); |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 925 | if (avio_read(pb, (uint8_t *) res, size) != size) { |
| 926 | av_free(res); |
Panagiotis Issaris | 6f3e0b2 | 2007-07-19 15:23:32 | [diff] [blame] | 927 | return AVERROR(EIO); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 928 | } |
Ronald S. Bultje | cd40c31 | 2012-02-25 00:12:18 | [diff] [blame] | 929 | (res)[size] = '\0'; |
| 930 | av_free(*str); |
| 931 | *str = res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 932 | |
| 933 | return 0; |
| 934 | } |
| 935 | |
| 936 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 937 | * Read the next element as binary data. |
| 938 | * 0 is success, < 0 is failure. |
| 939 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 940 | static int ebml_read_binary(AVIOContext *pb, int length, EbmlBin *bin) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 941 | { |
Michael Niedermayer | c63e76b | 2012-11-09 21:58:10 | [diff] [blame] | 942 | av_fast_padded_malloc(&bin->data, &bin->size, length); |
| 943 | if (!bin->data) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 944 | return AVERROR(ENOMEM); |
| 945 | |
| 946 | bin->size = length; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 947 | bin->pos = avio_tell(pb); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 948 | if (avio_read(pb, bin->data, length) != length) { |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 949 | av_freep(&bin->data); |
Michael Niedermayer | 5e1bacf | 2012-12-04 02:30:40 | [diff] [blame] | 950 | bin->size = 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 951 | return AVERROR(EIO); |
David Conrad | 5549aa6 | 2010-05-18 21:21:37 | [diff] [blame] | 952 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 953 | |
| 954 | return 0; |
| 955 | } |
| 956 | |
| 957 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 958 | * Read the next element, but only the header. The contents |
| 959 | * are supposed to be sub-elements which can be read separately. |
| 960 | * 0 is success, < 0 is failure. |
| 961 | */ |
Aurelien Jacobs | bddd1d9 | 2010-06-11 17:16:43 | [diff] [blame] | 962 | static int ebml_read_master(MatroskaDemuxContext *matroska, uint64_t length) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 963 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 964 | AVIOContext *pb = matroska->ctx->pb; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 965 | MatroskaLevel *level; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 966 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 967 | if (matroska->num_levels >= EBML_MAX_DEPTH) { |
| 968 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 969 | "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH); |
Panagiotis Issaris | 85565db | 2007-07-19 15:38:33 | [diff] [blame] | 970 | return AVERROR(ENOSYS); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 971 | } |
| 972 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 973 | level = &matroska->levels[matroska->num_levels++]; |
| 974 | level->start = avio_tell(pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 975 | level->length = length; |
| 976 | |
| 977 | return 0; |
| 978 | } |
| 979 | |
| 980 | /* |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 981 | * Read signed/unsigned "EBML" numbers. |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 982 | * Return: number of bytes processed, < 0 on error |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 983 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 984 | static int matroska_ebmlnum_uint(MatroskaDemuxContext *matroska, |
| 985 | uint8_t *data, uint32_t size, uint64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 986 | { |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 987 | AVIOContext pb; |
Anton Khirnov | ae99313 | 2011-02-20 10:04:13 | [diff] [blame] | 988 | ffio_init_context(&pb, data, size, 0, NULL, NULL, NULL, NULL); |
David Conrad | 465c28b | 2010-05-18 21:21:32 | [diff] [blame] | 989 | return ebml_read_num(matroska, &pb, FFMIN(size, 8), num); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | /* |
| 993 | * Same as above, but signed. |
| 994 | */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 995 | static int matroska_ebmlnum_sint(MatroskaDemuxContext *matroska, |
| 996 | uint8_t *data, uint32_t size, int64_t *num) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 997 | { |
| 998 | uint64_t unum; |
| 999 | int res; |
| 1000 | |
| 1001 | /* read as unsigned number first */ |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 1002 | if ((res = matroska_ebmlnum_uint(matroska, data, size, &unum)) < 0) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1003 | return res; |
| 1004 | |
| 1005 | /* make signed (weird way) */ |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1006 | *num = unum - ((1LL << (7 * res - 1)) - 1); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1007 | |
| 1008 | return res; |
| 1009 | } |
| 1010 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1011 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1012 | EbmlSyntax *syntax, void *data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1013 | |
| 1014 | static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 1015 | uint32_t id, void *data) |
| 1016 | { |
| 1017 | int i; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1018 | for (i = 0; syntax[i].id; i++) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1019 | if (id == syntax[i].id) |
| 1020 | break; |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 1021 | if (!syntax[i].id && id == MATROSKA_ID_CLUSTER && |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1022 | matroska->num_levels > 0 && |
| 1023 | matroska->levels[matroska->num_levels - 1].length == 0xffffffffffffff) |
Aurelien Jacobs | 8dbe48f | 2010-06-11 16:43:47 | [diff] [blame] | 1024 | return 0; // we reached the end of an unknown size cluster |
Anton Khirnov | 5b7a88f | 2012-07-07 15:15:27 | [diff] [blame] | 1025 | if (!syntax[i].id && id != EBML_ID_VOID && id != EBML_ID_CRC32) { |
wm4 | 6938a09 | 2015-02-09 19:38:58 | [diff] [blame] | 1026 | av_log(matroska->ctx, AV_LOG_DEBUG, "Unknown entry 0x%"PRIX32"\n", id); |
Anton Khirnov | 5b7a88f | 2012-07-07 15:15:27 | [diff] [blame] | 1027 | } |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1028 | return ebml_parse_elem(matroska, &syntax[i], data); |
| 1029 | } |
| 1030 | |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 1031 | static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
| 1032 | void *data) |
| 1033 | { |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1034 | if (!matroska->current_id) { |
Aurelien Jacobs | 7391781 | 2010-06-11 16:45:38 | [diff] [blame] | 1035 | uint64_t id; |
| 1036 | int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id); |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 1037 | if (res < 0) { |
| 1038 | // in live mode, finish parsing if EOF is reached. |
| 1039 | return (matroska->is_live && matroska->ctx->pb->eof_reached && |
| 1040 | res == AVERROR_EOF) ? 1 : res; |
| 1041 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1042 | matroska->current_id = id | 1 << 7 * res; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1043 | } |
| 1044 | return ebml_parse_id(matroska, syntax, matroska->current_id, data); |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 1045 | } |
| 1046 | |
Aurelien Jacobs | 9bcb92c | 2008-08-05 00:42:13 | [diff] [blame] | 1047 | static int ebml_parse_nest(MatroskaDemuxContext *matroska, EbmlSyntax *syntax, |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 1048 | void *data) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1049 | { |
Aurelien Jacobs | c005b3f | 2008-08-05 00:42:10 | [diff] [blame] | 1050 | int i, res = 0; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1051 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1052 | for (i = 0; syntax[i].id; i++) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1053 | switch (syntax[i].type) { |
| 1054 | case EBML_UINT: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1055 | *(uint64_t *) ((char *) data + syntax[i].data_offset) = syntax[i].def.u; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1056 | break; |
| 1057 | case EBML_FLOAT: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1058 | *(double *) ((char *) data + syntax[i].data_offset) = syntax[i].def.f; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1059 | break; |
| 1060 | case EBML_STR: |
| 1061 | case EBML_UTF8: |
Anton Khirnov | 668643b | 2013-09-04 06:55:17 | [diff] [blame] | 1062 | // the default may be NULL |
| 1063 | if (syntax[i].def.s) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1064 | uint8_t **dst = (uint8_t **) ((uint8_t *) data + syntax[i].data_offset); |
Anton Khirnov | 668643b | 2013-09-04 06:55:17 | [diff] [blame] | 1065 | *dst = av_strdup(syntax[i].def.s); |
| 1066 | if (!*dst) |
| 1067 | return AVERROR(ENOMEM); |
| 1068 | } |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1069 | break; |
| 1070 | } |
| 1071 | |
Aurelien Jacobs | 6314cca | 2008-08-05 00:42:23 | [diff] [blame] | 1072 | while (!res && !ebml_level_end(matroska)) |
Aurelien Jacobs | 66a37e0 | 2008-08-05 00:42:17 | [diff] [blame] | 1073 | res = ebml_parse(matroska, syntax, data); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1074 | |
| 1075 | return res; |
| 1076 | } |
| 1077 | |
wm4 | 7e240f9 | 2015-06-12 11:11:41 | [diff] [blame] | 1078 | static int is_ebml_id_valid(uint32_t id) |
| 1079 | { |
| 1080 | // Due to endian nonsense in Matroska, the highest byte with any bits set |
| 1081 | // will contain the leading length bit. This bit in turn identifies the |
| 1082 | // total byte length of the element by its position within the byte. |
| 1083 | unsigned int bits = av_log2(id); |
| 1084 | return id && (bits + 7) / 8 == (8 - bits % 8); |
| 1085 | } |
| 1086 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1087 | /* |
| 1088 | * Allocate and return the entry for the level1 element with the given ID. If |
| 1089 | * an entry already exists, return the existing entry. |
| 1090 | */ |
| 1091 | static MatroskaLevel1Element *matroska_find_level1_elem(MatroskaDemuxContext *matroska, |
| 1092 | uint32_t id) |
| 1093 | { |
| 1094 | int i; |
| 1095 | MatroskaLevel1Element *elem; |
| 1096 | |
wm4 | 7e240f9 | 2015-06-12 11:11:41 | [diff] [blame] | 1097 | if (!is_ebml_id_valid(id)) |
| 1098 | return NULL; |
| 1099 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1100 | // Some files link to all clusters; useless. |
| 1101 | if (id == MATROSKA_ID_CLUSTER) |
| 1102 | return NULL; |
| 1103 | |
| 1104 | // There can be multiple seekheads. |
| 1105 | if (id != MATROSKA_ID_SEEKHEAD) { |
| 1106 | for (i = 0; i < matroska->num_level1_elems; i++) { |
| 1107 | if (matroska->level1_elems[i].id == id) |
| 1108 | return &matroska->level1_elems[i]; |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | // Only a completely broken file would have more elements. |
| 1113 | // It also provides a low-effort way to escape from circular seekheads |
| 1114 | // (every iteration will add a level1 entry). |
| 1115 | if (matroska->num_level1_elems >= FF_ARRAY_ELEMS(matroska->level1_elems)) { |
| 1116 | av_log(matroska->ctx, AV_LOG_ERROR, "Too many level1 elements or circular seekheads.\n"); |
| 1117 | return NULL; |
| 1118 | } |
| 1119 | |
| 1120 | elem = &matroska->level1_elems[matroska->num_level1_elems++]; |
| 1121 | *elem = (MatroskaLevel1Element){.id = id}; |
| 1122 | |
| 1123 | return elem; |
| 1124 | } |
| 1125 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1126 | static int ebml_parse_elem(MatroskaDemuxContext *matroska, |
| 1127 | EbmlSyntax *syntax, void *data) |
| 1128 | { |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 1129 | static const uint64_t max_lengths[EBML_TYPE_COUNT] = { |
| 1130 | [EBML_UINT] = 8, |
| 1131 | [EBML_FLOAT] = 8, |
| 1132 | // max. 16 MB for strings |
| 1133 | [EBML_STR] = 0x1000000, |
| 1134 | [EBML_UTF8] = 0x1000000, |
| 1135 | // max. 256 MB for binary data |
| 1136 | [EBML_BIN] = 0x10000000, |
| 1137 | // no limits for anything else |
| 1138 | }; |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 1139 | AVIOContext *pb = matroska->ctx->pb; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1140 | uint32_t id = syntax->id; |
| 1141 | uint64_t length; |
| 1142 | int res; |
Michael Niedermayer | 32805f8 | 2013-09-11 10:13:44 | [diff] [blame] | 1143 | void *newelem; |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1144 | MatroskaLevel1Element *level1_elem; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1145 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1146 | data = (char *) data + syntax->data_offset; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1147 | if (syntax->list_elem_size) { |
| 1148 | EbmlList *list = data; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1149 | 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] | 1150 | if (!newelem) |
| 1151 | return AVERROR(ENOMEM); |
| 1152 | list->elem = newelem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1153 | data = (char *) list->elem + list->nb_elem * syntax->list_elem_size; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1154 | memset(data, 0, syntax->list_elem_size); |
| 1155 | list->nb_elem++; |
| 1156 | } |
| 1157 | |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1158 | if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) { |
| 1159 | matroska->current_id = 0; |
Reimar Döffinger | 1b4d327 | 2010-09-06 17:51:44 | [diff] [blame] | 1160 | if ((res = ebml_read_length(matroska, pb, &length)) < 0) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1161 | return res; |
Reimar Döffinger | 14d735b | 2011-02-06 10:32:03 | [diff] [blame] | 1162 | if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) { |
| 1163 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1164 | "Invalid length 0x%"PRIx64" > 0x%"PRIx64" for syntax element %i\n", |
| 1165 | length, max_lengths[syntax->type], syntax->type); |
| 1166 | return AVERROR_INVALIDDATA; |
| 1167 | } |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1168 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1169 | |
| 1170 | switch (syntax->type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1171 | case EBML_UINT: |
| 1172 | res = ebml_read_uint(pb, length, data); |
| 1173 | break; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1174 | case EBML_SINT: |
| 1175 | res = ebml_read_sint(pb, length, data); |
| 1176 | break; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1177 | case EBML_FLOAT: |
| 1178 | res = ebml_read_float(pb, length, data); |
| 1179 | break; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1180 | case EBML_STR: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1181 | case EBML_UTF8: |
| 1182 | res = ebml_read_ascii(pb, length, data); |
| 1183 | break; |
| 1184 | case EBML_BIN: |
| 1185 | res = ebml_read_binary(pb, length, data); |
| 1186 | break; |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1187 | case EBML_LEVEL1: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1188 | case EBML_NEST: |
| 1189 | if ((res = ebml_read_master(matroska, length)) < 0) |
| 1190 | return res; |
| 1191 | if (id == MATROSKA_ID_SEGMENT) |
| 1192 | matroska->segment_start = avio_tell(matroska->ctx->pb); |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1193 | if (id == MATROSKA_ID_CUES) |
| 1194 | matroska->cues_parsing_deferred = 0; |
| 1195 | if (syntax->type == EBML_LEVEL1 && |
| 1196 | (level1_elem = matroska_find_level1_elem(matroska, syntax->id))) { |
| 1197 | if (level1_elem->parsed) |
| 1198 | av_log(matroska->ctx, AV_LOG_ERROR, "Duplicate element\n"); |
| 1199 | level1_elem->parsed = 1; |
| 1200 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1201 | return ebml_parse_nest(matroska, syntax->def.n, data); |
| 1202 | case EBML_PASS: |
| 1203 | return ebml_parse_id(matroska, syntax->def.n, id, data); |
| 1204 | case EBML_STOP: |
| 1205 | return 1; |
Michael Niedermayer | 668c873 | 2012-08-04 00:27:51 | [diff] [blame] | 1206 | default: |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1207 | if (ffio_limit(pb, length) != length) |
Michael Niedermayer | 668c873 | 2012-08-04 00:27:51 | [diff] [blame] | 1208 | return AVERROR(EIO); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1209 | return avio_skip(pb, length) < 0 ? AVERROR(EIO) : 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1210 | } |
| 1211 | if (res == AVERROR_INVALIDDATA) |
| 1212 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid element\n"); |
| 1213 | else if (res == AVERROR(EIO)) |
| 1214 | av_log(matroska->ctx, AV_LOG_ERROR, "Read error\n"); |
| 1215 | return res; |
| 1216 | } |
| 1217 | |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1218 | static void ebml_free(EbmlSyntax *syntax, void *data) |
| 1219 | { |
| 1220 | int i, j; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1221 | for (i = 0; syntax[i].id; i++) { |
| 1222 | void *data_off = (char *) data + syntax[i].data_offset; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1223 | switch (syntax[i].type) { |
| 1224 | case EBML_STR: |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1225 | case EBML_UTF8: |
| 1226 | av_freep(data_off); |
| 1227 | break; |
| 1228 | case EBML_BIN: |
| 1229 | av_freep(&((EbmlBin *) data_off)->data); |
| 1230 | break; |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1231 | case EBML_LEVEL1: |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1232 | case EBML_NEST: |
| 1233 | if (syntax[i].list_elem_size) { |
| 1234 | EbmlList *list = data_off; |
| 1235 | char *ptr = list->elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1236 | for (j = 0; j < list->nb_elem; |
| 1237 | j++, ptr += syntax[i].list_elem_size) |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1238 | ebml_free(syntax[i].def.n, ptr); |
Michael Niedermayer | 6e70e4a | 2015-01-06 11:48:38 | [diff] [blame] | 1239 | av_freep(&list->elem); |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1240 | } else |
| 1241 | ebml_free(syntax[i].def.n, data_off); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1242 | default: |
| 1243 | break; |
Aurelien Jacobs | 789ed10 | 2008-08-05 00:40:00 | [diff] [blame] | 1244 | } |
| 1245 | } |
| 1246 | } |
| 1247 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1248 | /* |
| 1249 | * Autodetecting... |
| 1250 | */ |
| 1251 | static int matroska_probe(AVProbeData *p) |
| 1252 | { |
| 1253 | uint64_t total = 0; |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1254 | int len_mask = 0x80, size = 1, n = 1, i; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1255 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1256 | /* EBML header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1257 | if (AV_RB32(p->buf) != EBML_ID_HEADER) |
| 1258 | return 0; |
| 1259 | |
| 1260 | /* length of header */ |
| 1261 | total = p->buf[4]; |
| 1262 | while (size <= 8 && !(total & len_mask)) { |
| 1263 | size++; |
| 1264 | len_mask >>= 1; |
| 1265 | } |
| 1266 | if (size > 8) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1267 | return 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1268 | total &= (len_mask - 1); |
| 1269 | while (n < size) |
| 1270 | total = (total << 8) | p->buf[4 + n++]; |
| 1271 | |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1272 | /* Does the probe data contain the whole header? */ |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1273 | if (p->buf_size < 4 + size + total) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1274 | return 0; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1275 | |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1276 | /* The header should contain a known document type. For now, |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1277 | * we don't parse the whole header but simply check for the |
| 1278 | * availability of that array of characters inside the header. |
| 1279 | * Not fully fool-proof, but good enough. */ |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1280 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) { |
Michael Niedermayer | 17b2630 | 2015-05-11 01:51:17 | [diff] [blame] | 1281 | size_t probelen = strlen(matroska_doctypes[i]); |
Chris Evans | 69619a1 | 2011-07-20 00:51:48 | [diff] [blame] | 1282 | if (total < probelen) |
| 1283 | continue; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1284 | for (n = 4 + size; n <= 4 + size + total - probelen; n++) |
| 1285 | if (!memcmp(p->buf + n, matroska_doctypes[i], probelen)) |
James Zern | 470491f | 2010-05-22 01:41:32 | [diff] [blame] | 1286 | return AVPROBE_SCORE_MAX; |
| 1287 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1288 | |
David Conrad | c7b913c | 2010-05-22 01:41:35 | [diff] [blame] | 1289 | // probably valid EBML header but no recognized doctype |
Diego Biurrun | e0f8be6 | 2013-03-25 15:12:51 | [diff] [blame] | 1290 | return AVPROBE_SCORE_EXTENSION; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | static MatroskaTrack *matroska_find_track_by_num(MatroskaDemuxContext *matroska, |
| 1294 | int num) |
| 1295 | { |
| 1296 | MatroskaTrack *tracks = matroska->tracks.elem; |
| 1297 | int i; |
| 1298 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1299 | for (i = 0; i < matroska->tracks.nb_elem; i++) |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 1300 | if (tracks[i].num == num) |
| 1301 | return &tracks[i]; |
| 1302 | |
| 1303 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid track number %d\n", num); |
| 1304 | return NULL; |
| 1305 | } |
| 1306 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1307 | static int matroska_decode_buffer(uint8_t **buf, int *buf_size, |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1308 | MatroskaTrack *track) |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1309 | { |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1310 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1311 | uint8_t *data = *buf; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1312 | int isize = *buf_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1313 | uint8_t *pkt_data = NULL; |
Diego Biurrun | 529506b | 2012-02-12 09:58:46 | [diff] [blame] | 1314 | uint8_t av_unused *newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1315 | int pkt_size = isize; |
| 1316 | int result = 0; |
| 1317 | int olen; |
| 1318 | |
Michael Niedermayer | 4b7c523 | 2012-06-14 23:29:30 | [diff] [blame] | 1319 | if (pkt_size >= 10000000U) |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1320 | return AVERROR_INVALIDDATA; |
Aurelien Jacobs | 4f90688 | 2010-08-17 14:05:23 | [diff] [blame] | 1321 | |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 1322 | switch (encodings[0].compression.algo) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1323 | case MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP: |
| 1324 | { |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1325 | int header_size = encodings[0].compression.settings.size; |
| 1326 | uint8_t *header = encodings[0].compression.settings.data; |
| 1327 | |
Michael Niedermayer | 1df2e3c | 2012-09-20 11:30:44 | [diff] [blame] | 1328 | if (header_size && !header) { |
Michael Niedermayer | 0efcf16 | 2012-11-23 17:10:02 | [diff] [blame] | 1329 | 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] | 1330 | return -1; |
| 1331 | } |
Michael Niedermayer | 1df2e3c | 2012-09-20 11:30:44 | [diff] [blame] | 1332 | |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 1333 | if (!header_size) |
| 1334 | return 0; |
| 1335 | |
| 1336 | pkt_size = isize + header_size; |
| 1337 | pkt_data = av_malloc(pkt_size); |
| 1338 | if (!pkt_data) |
| 1339 | return AVERROR(ENOMEM); |
| 1340 | |
| 1341 | memcpy(pkt_data, header, header_size); |
| 1342 | memcpy(pkt_data + header_size, data, isize); |
| 1343 | break; |
| 1344 | } |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1345 | #if CONFIG_LZO |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1346 | case MATROSKA_TRACK_ENCODING_COMP_LZO: |
| 1347 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1348 | olen = pkt_size *= 3; |
Luca Barbato | 581281e | 2012-09-14 16:39:58 | [diff] [blame] | 1349 | newpktdata = av_realloc(pkt_data, pkt_size + AV_LZO_OUTPUT_PADDING); |
| 1350 | if (!newpktdata) { |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1351 | result = AVERROR(ENOMEM); |
Luca Barbato | 581281e | 2012-09-14 16:39:58 | [diff] [blame] | 1352 | goto failed; |
| 1353 | } |
| 1354 | pkt_data = newpktdata; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1355 | result = av_lzo1x_decode(pkt_data, &olen, data, &isize); |
| 1356 | } while (result == AV_LZO_OUTPUT_FULL && pkt_size < 10000000); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1357 | if (result) { |
| 1358 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1359 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1360 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1361 | pkt_size -= olen; |
| 1362 | break; |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1363 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1364 | #if CONFIG_ZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1365 | case MATROSKA_TRACK_ENCODING_COMP_ZLIB: |
| 1366 | { |
| 1367 | z_stream zstream = { 0 }; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1368 | if (inflateInit(&zstream) != Z_OK) |
| 1369 | return -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1370 | zstream.next_in = data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1371 | zstream.avail_in = isize; |
| 1372 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1373 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1374 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 1375 | if (!newpktdata) { |
| 1376 | inflateEnd(&zstream); |
Michael Niedermayer | 171af59 | 2015-05-12 16:32:12 | [diff] [blame] | 1377 | result = AVERROR(ENOMEM); |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1378 | goto failed; |
| 1379 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1380 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1381 | zstream.avail_out = pkt_size - zstream.total_out; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1382 | zstream.next_out = pkt_data + zstream.total_out; |
Michael Niedermayer | 171af59 | 2015-05-12 16:32:12 | [diff] [blame] | 1383 | result = inflate(&zstream, Z_NO_FLUSH); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1384 | } while (result == Z_OK && pkt_size < 10000000); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1385 | pkt_size = zstream.total_out; |
| 1386 | inflateEnd(&zstream); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1387 | if (result != Z_STREAM_END) { |
| 1388 | if (result == Z_MEM_ERROR) |
| 1389 | result = AVERROR(ENOMEM); |
| 1390 | else |
| 1391 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1392 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1393 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1394 | break; |
| 1395 | } |
| 1396 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1397 | #if CONFIG_BZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1398 | case MATROSKA_TRACK_ENCODING_COMP_BZLIB: |
| 1399 | { |
| 1400 | bz_stream bzstream = { 0 }; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1401 | if (BZ2_bzDecompressInit(&bzstream, 0, 0) != BZ_OK) |
| 1402 | return -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1403 | bzstream.next_in = data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1404 | bzstream.avail_in = isize; |
| 1405 | do { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1406 | pkt_size *= 3; |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1407 | newpktdata = av_realloc(pkt_data, pkt_size); |
| 1408 | if (!newpktdata) { |
| 1409 | BZ2_bzDecompressEnd(&bzstream); |
Michael Niedermayer | 171af59 | 2015-05-12 16:32:12 | [diff] [blame] | 1410 | result = AVERROR(ENOMEM); |
Michael Niedermayer | 77d2ef1 | 2011-07-28 12:59:54 | [diff] [blame] | 1411 | goto failed; |
| 1412 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1413 | pkt_data = newpktdata; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1414 | bzstream.avail_out = pkt_size - bzstream.total_out_lo32; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1415 | bzstream.next_out = pkt_data + bzstream.total_out_lo32; |
Michael Niedermayer | 171af59 | 2015-05-12 16:32:12 | [diff] [blame] | 1416 | result = BZ2_bzDecompress(&bzstream); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1417 | } while (result == BZ_OK && pkt_size < 10000000); |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1418 | pkt_size = bzstream.total_out_lo32; |
| 1419 | BZ2_bzDecompressEnd(&bzstream); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1420 | if (result != BZ_STREAM_END) { |
| 1421 | if (result == BZ_MEM_ERROR) |
| 1422 | result = AVERROR(ENOMEM); |
| 1423 | else |
| 1424 | result = AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1425 | goto failed; |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1426 | } |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1427 | break; |
| 1428 | } |
| 1429 | #endif |
Aurelien Jacobs | 28f27e0 | 2008-08-20 23:08:07 | [diff] [blame] | 1430 | default: |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1431 | return AVERROR_INVALIDDATA; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1432 | } |
| 1433 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1434 | *buf = pkt_data; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1435 | *buf_size = pkt_size; |
| 1436 | return 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1437 | |
| 1438 | failed: |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1439 | av_free(pkt_data); |
Luca Barbato | c9a39ce | 2012-09-14 18:03:37 | [diff] [blame] | 1440 | return result; |
Evgeniy Stepanov | 935ec5a | 2008-06-22 15:49:44 | [diff] [blame] | 1441 | } |
| 1442 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1443 | static void matroska_convert_tag(AVFormatContext *s, EbmlList *list, |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1444 | AVDictionary **metadata, char *prefix) |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1445 | { |
| 1446 | MatroskaTag *tags = list->elem; |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1447 | char key[1024]; |
| 1448 | int i; |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1449 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1450 | for (i = 0; i < list->nb_elem; i++) { |
| 1451 | const char *lang = tags[i].lang && |
| 1452 | strcmp(tags[i].lang, "und") ? tags[i].lang : NULL; |
Anton Khirnov | bf800c7 | 2010-11-03 06:29:04 | [diff] [blame] | 1453 | |
| 1454 | if (!tags[i].name) { |
| 1455 | av_log(s, AV_LOG_WARNING, "Skipping invalid tag with no TagName.\n"); |
| 1456 | continue; |
| 1457 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1458 | if (prefix) |
| 1459 | snprintf(key, sizeof(key), "%s/%s", prefix, tags[i].name); |
| 1460 | else |
| 1461 | av_strlcpy(key, tags[i].name, sizeof(key)); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1462 | if (tags[i].def || !lang) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1463 | av_dict_set(metadata, key, tags[i].string, 0); |
| 1464 | if (tags[i].sub.nb_elem) |
| 1465 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1466 | } |
| 1467 | if (lang) { |
| 1468 | av_strlcat(key, "-", sizeof(key)); |
| 1469 | av_strlcat(key, lang, sizeof(key)); |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 1470 | av_dict_set(metadata, key, tags[i].string, 0); |
Aurelien Jacobs | f702df3 | 2009-02-15 16:05:37 | [diff] [blame] | 1471 | if (tags[i].sub.nb_elem) |
| 1472 | matroska_convert_tag(s, &tags[i].sub, metadata, key); |
| 1473 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1474 | } |
Anton Khirnov | ad7768f | 2010-10-16 13:20:41 | [diff] [blame] | 1475 | ff_metadata_conv(metadata, NULL, ff_mkv_metadata_conv); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | static void matroska_convert_tags(AVFormatContext *s) |
| 1479 | { |
| 1480 | MatroskaDemuxContext *matroska = s->priv_data; |
| 1481 | MatroskaTags *tags = matroska->tags.elem; |
| 1482 | int i, j; |
| 1483 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1484 | for (i = 0; i < matroska->tags.nb_elem; i++) { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1485 | if (tags[i].target.attachuid) { |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 1486 | MatroskaAttachment *attachment = matroska->attachments.elem; |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1487 | int found = 0; |
| 1488 | for (j = 0; j < matroska->attachments.nb_elem; j++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1489 | if (attachment[j].uid == tags[i].target.attachuid && |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1490 | attachment[j].stream) { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1491 | matroska_convert_tag(s, &tags[i].tag, |
| 1492 | &attachment[j].stream->metadata, NULL); |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1493 | found = 1; |
| 1494 | } |
| 1495 | } |
| 1496 | if (!found) { |
| 1497 | av_log(NULL, AV_LOG_WARNING, |
| 1498 | "The tags at index %d refer to a " |
| 1499 | "non-existent attachment %"PRId64".\n", |
| 1500 | i, tags[i].target.attachuid); |
| 1501 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1502 | } else if (tags[i].target.chapteruid) { |
| 1503 | MatroskaChapter *chapter = matroska->chapters.elem; |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1504 | int found = 0; |
| 1505 | for (j = 0; j < matroska->chapters.nb_elem; j++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1506 | if (chapter[j].uid == tags[i].target.chapteruid && |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1507 | chapter[j].chapter) { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1508 | matroska_convert_tag(s, &tags[i].tag, |
| 1509 | &chapter[j].chapter->metadata, NULL); |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1510 | found = 1; |
| 1511 | } |
| 1512 | } |
| 1513 | if (!found) { |
| 1514 | av_log(NULL, AV_LOG_WARNING, |
| 1515 | "The tags at index %d refer to a non-existent chapter " |
| 1516 | "%"PRId64".\n", |
| 1517 | i, tags[i].target.chapteruid); |
| 1518 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1519 | } else if (tags[i].target.trackuid) { |
| 1520 | MatroskaTrack *track = matroska->tracks.elem; |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1521 | int found = 0; |
| 1522 | for (j = 0; j < matroska->tracks.nb_elem; j++) { |
| 1523 | if (track[j].uid == tags[i].target.trackuid && |
| 1524 | track[j].stream) { |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1525 | matroska_convert_tag(s, &tags[i].tag, |
| 1526 | &track[j].stream->metadata, NULL); |
Luca Barbato | a0fa6d0 | 2015-10-31 18:45:27 | [diff] [blame] | 1527 | found = 1; |
| 1528 | } |
| 1529 | } |
| 1530 | if (!found) { |
| 1531 | av_log(NULL, AV_LOG_WARNING, |
| 1532 | "The tags at index %d refer to a non-existent track " |
| 1533 | "%"PRId64".\n", |
| 1534 | i, tags[i].target.trackuid); |
| 1535 | } |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1536 | } else { |
Aurelien Jacobs | 4f909c7 | 2009-06-13 22:29:38 | [diff] [blame] | 1537 | matroska_convert_tag(s, &tags[i].tag, &s->metadata, |
| 1538 | tags[i].target.type); |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 1539 | } |
Aurelien Jacobs | 44015c5 | 2008-08-08 23:50:38 | [diff] [blame] | 1540 | } |
| 1541 | } |
| 1542 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1543 | static int matroska_parse_seekhead_entry(MatroskaDemuxContext *matroska, |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1544 | uint64_t pos) |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1545 | { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1546 | uint32_t level_up = matroska->level_up; |
| 1547 | uint32_t saved_id = matroska->current_id; |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 1548 | int64_t before_pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1549 | MatroskaLevel level; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1550 | int64_t offset; |
| 1551 | int ret = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1552 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1553 | /* seek */ |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1554 | offset = pos + matroska->segment_start; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1555 | if (avio_seek(matroska->ctx->pb, offset, SEEK_SET) == offset) { |
Diego Biurrun | 5968d2d | 2008-08-05 08:28:57 | [diff] [blame] | 1556 | /* We don't want to lose our seekhead level, so we add |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1557 | * a dummy. This is a crude hack. */ |
| 1558 | if (matroska->num_levels == EBML_MAX_DEPTH) { |
| 1559 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1560 | "Max EBML element depth (%d) reached, " |
| 1561 | "cannot parse further.\n", EBML_MAX_DEPTH); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1562 | ret = AVERROR_INVALIDDATA; |
| 1563 | } else { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1564 | level.start = 0; |
| 1565 | level.length = (uint64_t) -1; |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1566 | matroska->levels[matroska->num_levels] = level; |
| 1567 | matroska->num_levels++; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1568 | matroska->current_id = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1569 | |
Dustin Brody | 4a9628f | 2011-09-08 22:43:32 | [diff] [blame] | 1570 | ret = ebml_parse(matroska, matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1571 | |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1572 | /* remove dummy level */ |
| 1573 | while (matroska->num_levels) { |
| 1574 | uint64_t length = matroska->levels[--matroska->num_levels].length; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1575 | if (length == (uint64_t) -1) |
Anton Khirnov | f47ac3c | 2011-07-09 06:11:30 | [diff] [blame] | 1576 | break; |
| 1577 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1578 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1579 | } |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1580 | /* seek back */ |
Anton Khirnov | 6b4aa5d | 2011-02-28 13:57:54 | [diff] [blame] | 1581 | avio_seek(matroska->ctx->pb, before_pos, SEEK_SET); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1582 | matroska->level_up = level_up; |
Aurelien Jacobs | c3ade62 | 2010-06-11 16:34:01 | [diff] [blame] | 1583 | matroska->current_id = saved_id; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1584 | |
| 1585 | return ret; |
| 1586 | } |
| 1587 | |
| 1588 | static void matroska_execute_seekhead(MatroskaDemuxContext *matroska) |
| 1589 | { |
| 1590 | EbmlList *seekhead_list = &matroska->seekhead; |
Aurelien Jacobs | f06a488 | 2008-08-05 00:41:01 | [diff] [blame] | 1591 | int i; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1592 | |
Reimar Döffinger | 120a083 | 2010-06-08 19:31:08 | [diff] [blame] | 1593 | // we should not do any seeking in the streaming case |
wm4 | 7862325 | 2015-02-09 19:39:01 | [diff] [blame] | 1594 | if (!matroska->ctx->pb->seekable) |
Reimar Döffinger | 120a083 | 2010-06-08 19:31:08 | [diff] [blame] | 1595 | return; |
| 1596 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1597 | for (i = 0; i < seekhead_list->nb_elem; i++) { |
| 1598 | MatroskaSeekhead *seekheads = seekhead_list->elem; |
| 1599 | uint32_t id = seekheads[i].id; |
| 1600 | uint64_t pos = seekheads[i].pos; |
wm4 | 6551aca | 2014-12-06 15:53:30 | [diff] [blame] | 1601 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1602 | MatroskaLevel1Element *elem = matroska_find_level1_elem(matroska, id); |
| 1603 | if (!elem || elem->parsed) |
Aurelien Jacobs | 13b350a | 2008-08-05 00:40:36 | [diff] [blame] | 1604 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1605 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1606 | elem->pos = pos; |
| 1607 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1608 | // defer cues parsing until we actually need cue data. |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1609 | if (id == MATROSKA_ID_CUES) |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1610 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1611 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1612 | if (matroska_parse_seekhead_entry(matroska, pos) < 0) { |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 1613 | // mark index as broken |
| 1614 | matroska->cues_parsing_deferred = -1; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1615 | break; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 1616 | } |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1617 | |
| 1618 | elem->parsed = 1; |
Michael Niedermayer | 72c9844 | 2014-12-07 21:45:34 | [diff] [blame] | 1619 | } |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1620 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1621 | |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 1622 | static void matroska_add_index_entries(MatroskaDemuxContext *matroska) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1623 | { |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1624 | EbmlList *index_list; |
| 1625 | MatroskaIndex *index; |
Andreas Cadhalpun | eb9fb50 | 2015-05-03 21:07:20 | [diff] [blame] | 1626 | uint64_t index_scale = 1; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1627 | int i, j; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1628 | |
wm4 | 7862325 | 2015-02-09 19:39:01 | [diff] [blame] | 1629 | if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX) |
| 1630 | return; |
| 1631 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1632 | index_list = &matroska->index; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1633 | index = index_list->elem; |
Rodger Combs | 4f7d9b7 | 2015-10-08 20:34:59 | [diff] [blame] | 1634 | if (index_list->nb_elem < 2) |
| 1635 | return; |
| 1636 | if (index[1].time > 1E14 / matroska->time_scale) { |
| 1637 | av_log(matroska->ctx, AV_LOG_WARNING, "Dropping apparently-broken index.\n"); |
| 1638 | return; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1639 | } |
| 1640 | for (i = 0; i < index_list->nb_elem; i++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1641 | EbmlList *pos_list = &index[i].pos; |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1642 | MatroskaIndexPos *pos = pos_list->elem; |
| 1643 | for (j = 0; j < pos_list->nb_elem; j++) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1644 | MatroskaTrack *track = matroska_find_track_by_num(matroska, |
| 1645 | pos[j].track); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1646 | if (track && track->stream) |
| 1647 | av_add_index_entry(track->stream, |
| 1648 | pos[j].pos + matroska->segment_start, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1649 | index[i].time / index_scale, 0, 0, |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 1650 | AVINDEX_KEYFRAME); |
Aurelien Jacobs | 4348571 | 2008-08-05 00:40:43 | [diff] [blame] | 1651 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1652 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1653 | } |
| 1654 | |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1655 | static void matroska_parse_cues(MatroskaDemuxContext *matroska) { |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1656 | int i; |
| 1657 | |
wm4 | 7862325 | 2015-02-09 19:39:01 | [diff] [blame] | 1658 | if (matroska->ctx->flags & AVFMT_FLAG_IGNIDX) |
| 1659 | return; |
| 1660 | |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1661 | for (i = 0; i < matroska->num_level1_elems; i++) { |
| 1662 | MatroskaLevel1Element *elem = &matroska->level1_elems[i]; |
| 1663 | if (elem->id == MATROSKA_ID_CUES && !elem->parsed) { |
| 1664 | if (matroska_parse_seekhead_entry(matroska, elem->pos) < 0) |
| 1665 | matroska->cues_parsing_deferred = -1; |
| 1666 | elem->parsed = 1; |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1667 | break; |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 1668 | } |
| 1669 | } |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1670 | |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 1671 | matroska_add_index_entries(matroska); |
| 1672 | } |
| 1673 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1674 | static int matroska_aac_profile(char *codec_id) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1675 | { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1676 | static const char *const aac_profiles[] = { "MAIN", "LC", "SSR" }; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1677 | int profile; |
| 1678 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1679 | for (profile = 0; profile < FF_ARRAY_ELEMS(aac_profiles); profile++) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1680 | if (strstr(codec_id, aac_profiles[profile])) |
| 1681 | break; |
| 1682 | return profile + 1; |
| 1683 | } |
| 1684 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 1685 | static int matroska_aac_sri(int samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1686 | { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1687 | int sri; |
| 1688 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1689 | for (sri = 0; sri < FF_ARRAY_ELEMS(avpriv_mpeg4audio_sample_rates); sri++) |
Anton Khirnov | 59a9a23 | 2011-10-17 07:28:53 | [diff] [blame] | 1690 | if (avpriv_mpeg4audio_sample_rates[sri] == samplerate) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1691 | break; |
| 1692 | return sri; |
| 1693 | } |
| 1694 | |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 1695 | static void matroska_metadata_creation_time(AVDictionary **metadata, int64_t date_utc) |
| 1696 | { |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 1697 | /* Convert to seconds and adjust by number of seconds between 2001-01-01 and Epoch */ |
Marton Balint | 13b90ff | 2016-06-29 22:55:48 | [diff] [blame] | 1698 | avpriv_dict_set_timestamp(metadata, "creation_time", date_utc / 1000 + 978307200000000LL); |
Aaron Colwell | 2e06113 | 2012-03-05 18:02:48 | [diff] [blame] | 1699 | } |
| 1700 | |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1701 | static int matroska_parse_flac(AVFormatContext *s, |
| 1702 | MatroskaTrack *track, |
| 1703 | int *offset) |
| 1704 | { |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 1705 | AVStream *st = track->stream; |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1706 | uint8_t *p = track->codec_priv.data; |
| 1707 | int size = track->codec_priv.size; |
| 1708 | |
| 1709 | if (size < 8 + FLAC_STREAMINFO_SIZE || p[4] & 0x7f) { |
| 1710 | av_log(s, AV_LOG_WARNING, "Invalid FLAC private data\n"); |
| 1711 | track->codec_priv.size = 0; |
| 1712 | return 0; |
| 1713 | } |
| 1714 | *offset = 8; |
| 1715 | track->codec_priv.size = 8 + FLAC_STREAMINFO_SIZE; |
| 1716 | |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 1717 | p += track->codec_priv.size; |
| 1718 | size -= track->codec_priv.size; |
| 1719 | |
| 1720 | /* parse the remaining metadata blocks if present */ |
| 1721 | while (size >= 4) { |
| 1722 | int block_last, block_type, block_size; |
| 1723 | |
| 1724 | flac_parse_block_header(p, &block_last, &block_type, &block_size); |
| 1725 | |
| 1726 | p += 4; |
| 1727 | size -= 4; |
| 1728 | if (block_size > size) |
| 1729 | return 0; |
| 1730 | |
| 1731 | /* check for the channel mask */ |
| 1732 | if (block_type == FLAC_METADATA_TYPE_VORBIS_COMMENT) { |
| 1733 | AVDictionary *dict = NULL; |
| 1734 | AVDictionaryEntry *chmask; |
| 1735 | |
| 1736 | ff_vorbis_comment(s, &dict, p, block_size, 0); |
| 1737 | chmask = av_dict_get(dict, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", NULL, 0); |
| 1738 | if (chmask) { |
| 1739 | uint64_t mask = strtol(chmask->value, NULL, 0); |
| 1740 | if (!mask || mask & ~0x3ffffULL) { |
| 1741 | av_log(s, AV_LOG_WARNING, |
| 1742 | "Invalid value of WAVEFORMATEXTENSIBLE_CHANNEL_MASK\n"); |
| 1743 | } else |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 1744 | st->codecpar->channel_layout = mask; |
Anton Khirnov | 23f741f | 2014-05-26 10:48:56 | [diff] [blame] | 1745 | } |
| 1746 | av_dict_free(&dict); |
| 1747 | } |
| 1748 | |
| 1749 | p += block_size; |
| 1750 | size -= block_size; |
| 1751 | } |
| 1752 | |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1753 | return 0; |
| 1754 | } |
| 1755 | |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 1756 | static int mkv_field_order(MatroskaDemuxContext *matroska, int64_t field_order) |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 1757 | { |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 1758 | int major, minor, micro, bttb = 0; |
| 1759 | |
| 1760 | /* workaround a bug in our Matroska muxer, introduced in version 57.36 alongside |
| 1761 | * this function, and fixed in 57.52 */ |
Andreas Cadhalpun | eb751f0 | 2016-10-16 19:47:00 | [diff] [blame] | 1762 | if (matroska->muxingapp && sscanf(matroska->muxingapp, "Lavf%d.%d.%d", &major, &minor, µ) == 3) |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 1763 | bttb = (major == 57 && minor >= 36 && minor <= 51 && micro >= 100); |
| 1764 | |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 1765 | switch (field_order) { |
| 1766 | case MATROSKA_VIDEO_FIELDORDER_PROGRESSIVE: |
| 1767 | return AV_FIELD_PROGRESSIVE; |
| 1768 | case MATROSKA_VIDEO_FIELDORDER_UNDETERMINED: |
| 1769 | return AV_FIELD_UNKNOWN; |
| 1770 | case MATROSKA_VIDEO_FIELDORDER_TT: |
| 1771 | return AV_FIELD_TT; |
| 1772 | case MATROSKA_VIDEO_FIELDORDER_BB: |
| 1773 | return AV_FIELD_BB; |
| 1774 | case MATROSKA_VIDEO_FIELDORDER_BT: |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 1775 | return bttb ? AV_FIELD_TB : AV_FIELD_BT; |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 1776 | case MATROSKA_VIDEO_FIELDORDER_TB: |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 1777 | return bttb ? AV_FIELD_BT : AV_FIELD_TB; |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 1778 | default: |
| 1779 | return AV_FIELD_UNKNOWN; |
| 1780 | } |
| 1781 | } |
| 1782 | |
Aaron Colwell | febfb49 | 2015-12-02 23:13:18 | [diff] [blame] | 1783 | static void mkv_stereo_mode_display_mul(int stereo_mode, |
| 1784 | int *h_width, int *h_height) |
Aaron Colwell | ec83efd | 2015-11-23 20:06:14 | [diff] [blame] | 1785 | { |
| 1786 | switch (stereo_mode) { |
| 1787 | case MATROSKA_VIDEO_STEREOMODE_TYPE_MONO: |
| 1788 | case MATROSKA_VIDEO_STEREOMODE_TYPE_CHECKERBOARD_RL: |
| 1789 | case MATROSKA_VIDEO_STEREOMODE_TYPE_CHECKERBOARD_LR: |
| 1790 | case MATROSKA_VIDEO_STEREOMODE_TYPE_BOTH_EYES_BLOCK_RL: |
| 1791 | case MATROSKA_VIDEO_STEREOMODE_TYPE_BOTH_EYES_BLOCK_LR: |
| 1792 | break; |
| 1793 | case MATROSKA_VIDEO_STEREOMODE_TYPE_RIGHT_LEFT: |
| 1794 | case MATROSKA_VIDEO_STEREOMODE_TYPE_LEFT_RIGHT: |
| 1795 | case MATROSKA_VIDEO_STEREOMODE_TYPE_COL_INTERLEAVED_RL: |
| 1796 | case MATROSKA_VIDEO_STEREOMODE_TYPE_COL_INTERLEAVED_LR: |
| 1797 | *h_width = 2; |
| 1798 | break; |
| 1799 | case MATROSKA_VIDEO_STEREOMODE_TYPE_BOTTOM_TOP: |
| 1800 | case MATROSKA_VIDEO_STEREOMODE_TYPE_TOP_BOTTOM: |
| 1801 | case MATROSKA_VIDEO_STEREOMODE_TYPE_ROW_INTERLEAVED_RL: |
| 1802 | case MATROSKA_VIDEO_STEREOMODE_TYPE_ROW_INTERLEAVED_LR: |
| 1803 | *h_height = 2; |
| 1804 | break; |
| 1805 | } |
| 1806 | } |
| 1807 | |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 1808 | static int mkv_parse_video_color(AVStream *st, const MatroskaTrack *track) { |
| 1809 | const MatroskaMasteringMeta* mastering_meta = |
| 1810 | &track->video.color.mastering_meta; |
| 1811 | // Mastering primaries are CIE 1931 coords, and must be > 0. |
| 1812 | const int has_mastering_primaries = |
| 1813 | mastering_meta->r_x > 0 && mastering_meta->r_y > 0 && |
| 1814 | mastering_meta->g_x > 0 && mastering_meta->g_y > 0 && |
| 1815 | mastering_meta->b_x > 0 && mastering_meta->b_y > 0 && |
| 1816 | mastering_meta->white_x > 0 && mastering_meta->white_y > 0; |
| 1817 | const int has_mastering_luminance = mastering_meta->max_luminance > 0; |
| 1818 | |
| 1819 | if (track->video.color.matrix_coefficients != AVCOL_SPC_RESERVED) |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 1820 | st->codecpar->color_space = track->video.color.matrix_coefficients; |
James Almer | a404449 | 2016-09-27 22:43:08 | [diff] [blame] | 1821 | if (track->video.color.primaries != AVCOL_PRI_RESERVED && |
| 1822 | track->video.color.primaries != AVCOL_PRI_RESERVED0) |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 1823 | st->codecpar->color_primaries = track->video.color.primaries; |
James Almer | a404449 | 2016-09-27 22:43:08 | [diff] [blame] | 1824 | if (track->video.color.transfer_characteristics != AVCOL_TRC_RESERVED && |
| 1825 | track->video.color.transfer_characteristics != AVCOL_TRC_RESERVED0) |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 1826 | st->codecpar->color_trc = track->video.color.transfer_characteristics; |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 1827 | if (track->video.color.range != AVCOL_RANGE_UNSPECIFIED && |
| 1828 | track->video.color.range <= AVCOL_RANGE_JPEG) |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 1829 | st->codecpar->color_range = track->video.color.range; |
James Almer | 47ee6f1 | 2016-10-18 02:50:14 | [diff] [blame] | 1830 | if (track->video.color.chroma_siting_horz != MATROSKA_COLOUR_CHROMASITINGHORZ_UNDETERMINED && |
| 1831 | track->video.color.chroma_siting_vert != MATROSKA_COLOUR_CHROMASITINGVERT_UNDETERMINED && |
| 1832 | track->video.color.chroma_siting_horz < MATROSKA_COLOUR_CHROMASITINGHORZ_NB && |
| 1833 | track->video.color.chroma_siting_vert < MATROSKA_COLOUR_CHROMASITINGVERT_NB) { |
| 1834 | st->codecpar->chroma_location = |
| 1835 | avcodec_chroma_pos_to_enum((track->video.color.chroma_siting_horz - 1) << 7, |
| 1836 | (track->video.color.chroma_siting_vert - 1) << 7); |
| 1837 | } |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 1838 | |
| 1839 | if (has_mastering_primaries || has_mastering_luminance) { |
| 1840 | // Use similar rationals as other standards. |
| 1841 | const int chroma_den = 50000; |
| 1842 | const int luma_den = 10000; |
| 1843 | AVMasteringDisplayMetadata *metadata = |
| 1844 | (AVMasteringDisplayMetadata*) av_stream_new_side_data( |
| 1845 | st, AV_PKT_DATA_MASTERING_DISPLAY_METADATA, |
| 1846 | sizeof(AVMasteringDisplayMetadata)); |
| 1847 | if (!metadata) { |
| 1848 | return AVERROR(ENOMEM); |
| 1849 | } |
| 1850 | memset(metadata, 0, sizeof(AVMasteringDisplayMetadata)); |
| 1851 | if (has_mastering_primaries) { |
| 1852 | metadata->display_primaries[0][0] = av_make_q( |
| 1853 | round(mastering_meta->r_x * chroma_den), chroma_den); |
| 1854 | metadata->display_primaries[0][1] = av_make_q( |
| 1855 | round(mastering_meta->r_y * chroma_den), chroma_den); |
| 1856 | metadata->display_primaries[1][0] = av_make_q( |
| 1857 | round(mastering_meta->g_x * chroma_den), chroma_den); |
| 1858 | metadata->display_primaries[1][1] = av_make_q( |
| 1859 | round(mastering_meta->g_y * chroma_den), chroma_den); |
| 1860 | metadata->display_primaries[2][0] = av_make_q( |
| 1861 | round(mastering_meta->b_x * chroma_den), chroma_den); |
| 1862 | metadata->display_primaries[2][1] = av_make_q( |
| 1863 | round(mastering_meta->b_y * chroma_den), chroma_den); |
| 1864 | metadata->white_point[0] = av_make_q( |
| 1865 | round(mastering_meta->white_x * chroma_den), chroma_den); |
| 1866 | metadata->white_point[1] = av_make_q( |
| 1867 | round(mastering_meta->white_y * chroma_den), chroma_den); |
| 1868 | metadata->has_primaries = 1; |
| 1869 | } |
| 1870 | if (has_mastering_luminance) { |
| 1871 | metadata->max_luminance = av_make_q( |
| 1872 | round(mastering_meta->max_luminance * luma_den), luma_den); |
| 1873 | metadata->min_luminance = av_make_q( |
| 1874 | round(mastering_meta->min_luminance * luma_den), luma_den); |
| 1875 | metadata->has_luminance = 1; |
| 1876 | } |
| 1877 | } |
| 1878 | return 0; |
| 1879 | } |
| 1880 | |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 1881 | static int get_qt_codec(MatroskaTrack *track, uint32_t *fourcc, enum AVCodecID *codec_id) |
| 1882 | { |
| 1883 | const AVCodecTag *codec_tags; |
| 1884 | |
| 1885 | codec_tags = track->type == MATROSKA_TRACK_TYPE_VIDEO ? |
| 1886 | ff_codec_movvideo_tags : ff_codec_movaudio_tags; |
| 1887 | |
| 1888 | /* Normalize noncompliant private data that starts with the fourcc |
| 1889 | * by expanding/shifting the data by 4 bytes and storing the data |
| 1890 | * size at the start. */ |
| 1891 | if (ff_codec_get_id(codec_tags, AV_RL32(track->codec_priv.data))) { |
Mats Peterson | adef8ee | 2016-01-11 06:43:29 | [diff] [blame] | 1892 | uint8_t *p = av_realloc(track->codec_priv.data, |
| 1893 | track->codec_priv.size + 4); |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 1894 | if (!p) |
| 1895 | return AVERROR(ENOMEM); |
Mats Peterson | adef8ee | 2016-01-11 06:43:29 | [diff] [blame] | 1896 | memmove(p + 4, p, track->codec_priv.size); |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 1897 | track->codec_priv.data = p; |
| 1898 | track->codec_priv.size += 4; |
| 1899 | AV_WB32(track->codec_priv.data, track->codec_priv.size); |
| 1900 | } |
| 1901 | |
| 1902 | *fourcc = AV_RL32(track->codec_priv.data + 4); |
| 1903 | *codec_id = ff_codec_get_id(codec_tags, *fourcc); |
| 1904 | |
| 1905 | return 0; |
| 1906 | } |
| 1907 | |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 1908 | static int matroska_parse_tracks(AVFormatContext *s) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1909 | { |
| 1910 | MatroskaDemuxContext *matroska = s->priv_data; |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 1911 | MatroskaTrack *tracks = matroska->tracks.elem; |
Aurelien Jacobs | 9a9a3b0 | 2008-08-05 00:40:49 | [diff] [blame] | 1912 | AVStream *st; |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 1913 | int i, j, ret; |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 1914 | int k; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1915 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1916 | for (i = 0; i < matroska->tracks.nb_elem; i++) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1917 | MatroskaTrack *track = &tracks[i]; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 1918 | enum AVCodecID codec_id = AV_CODEC_ID_NONE; |
Aurelien Jacobs | dc6c36c | 2011-08-17 22:21:21 | [diff] [blame] | 1919 | EbmlList *encodings_list = &track->encodings; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1920 | MatroskaTrackEncoding *encodings = encodings_list->elem; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1921 | uint8_t *extradata = NULL; |
| 1922 | int extradata_size = 0; |
| 1923 | int extradata_offset = 0; |
Aurelien Jacobs | 5fec3a2 | 2011-06-13 23:58:11 | [diff] [blame] | 1924 | uint32_t fourcc = 0; |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 1925 | AVIOContext b; |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1926 | char* key_id_base64 = NULL; |
Carl Eugen Hoyos | 96fc290 | 2014-02-25 23:02:51 | [diff] [blame] | 1927 | int bit_depth = -1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1928 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1929 | /* Apply some sanity checks. */ |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1930 | if (track->type != MATROSKA_TRACK_TYPE_VIDEO && |
| 1931 | track->type != MATROSKA_TRACK_TYPE_AUDIO && |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 1932 | track->type != MATROSKA_TRACK_TYPE_SUBTITLE && |
| 1933 | track->type != MATROSKA_TRACK_TYPE_METADATA) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1934 | av_log(matroska->ctx, AV_LOG_INFO, |
| 1935 | "Unknown or unsupported track type %"PRIu64"\n", |
| 1936 | track->type); |
| 1937 | continue; |
| 1938 | } |
Gabriel Dume | f929ab0 | 2014-08-14 20:31:24 | [diff] [blame] | 1939 | if (!track->codec_id) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 1940 | continue; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 1941 | |
Andreas Cadhalpun | 5b76c82 | 2015-06-15 18:59:22 | [diff] [blame] | 1942 | if (track->audio.samplerate < 0 || track->audio.samplerate > INT_MAX || |
| 1943 | isnan(track->audio.samplerate)) { |
| 1944 | av_log(matroska->ctx, AV_LOG_WARNING, |
| 1945 | "Invalid sample rate %f, defaulting to 8000 instead.\n", |
| 1946 | track->audio.samplerate); |
| 1947 | track->audio.samplerate = 8000; |
| 1948 | } |
| 1949 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1950 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
Mans Rullgard | 3c58300 | 2012-04-18 12:48:20 | [diff] [blame] | 1951 | if (!track->default_duration && track->video.frame_rate > 0) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1952 | track->default_duration = 1000000000 / track->video.frame_rate; |
Michael Niedermayer | f51ce34 | 2013-04-03 21:40:13 | [diff] [blame] | 1953 | if (track->video.display_width == -1) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1954 | track->video.display_width = track->video.pixel_width; |
Michael Niedermayer | f51ce34 | 2013-04-03 21:40:13 | [diff] [blame] | 1955 | if (track->video.display_height == -1) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1956 | track->video.display_height = track->video.pixel_height; |
Aurelien Jacobs | fdb5e02 | 2011-06-14 00:00:06 | [diff] [blame] | 1957 | if (track->video.color_space.size == 4) |
| 1958 | fourcc = AV_RL32(track->video.color_space.data); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1959 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
| 1960 | if (!track->audio.out_samplerate) |
| 1961 | track->audio.out_samplerate = track->audio.samplerate; |
| 1962 | } |
| 1963 | if (encodings_list->nb_elem > 1) { |
| 1964 | av_log(matroska->ctx, AV_LOG_ERROR, |
Dustin Brody | d7d2f0e | 2011-09-15 07:34:38 | [diff] [blame] | 1965 | "Multiple combined encodings not supported"); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1966 | } else if (encodings_list->nb_elem == 1) { |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1967 | if (encodings[0].type) { |
| 1968 | if (encodings[0].encryption.key_id.size > 0) { |
| 1969 | /* Save the encryption key id to be stored later as a |
| 1970 | metadata tag. */ |
| 1971 | const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size); |
| 1972 | key_id_base64 = av_malloc(b64_size); |
| 1973 | if (key_id_base64 == NULL) |
| 1974 | return AVERROR(ENOMEM); |
| 1975 | |
| 1976 | av_base64_encode(key_id_base64, b64_size, |
| 1977 | encodings[0].encryption.key_id.data, |
| 1978 | encodings[0].encryption.key_id.size); |
| 1979 | } else { |
| 1980 | encodings[0].scope = 0; |
| 1981 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1982 | "Unsupported encoding type"); |
| 1983 | } |
| 1984 | } else if ( |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1985 | #if CONFIG_ZLIB |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1986 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_ZLIB && |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1987 | #endif |
Aurelien Jacobs | b250f9c | 2009-01-13 23:44:16 | [diff] [blame] | 1988 | #if CONFIG_BZLIB |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1989 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_BZLIB && |
| 1990 | #endif |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1991 | #if CONFIG_LZO |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1992 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO && |
Diego Biurrun | 2a91ada | 2012-10-18 17:48:27 | [diff] [blame] | 1993 | #endif |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 1994 | encodings[0].compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1995 | encodings[0].scope = 0; |
| 1996 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 1997 | "Unsupported encoding type"); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 1998 | } else if (track->codec_priv.size && encodings[0].scope & 2) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 1999 | uint8_t *codec_priv = track->codec_priv.data; |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 2000 | int ret = matroska_decode_buffer(&track->codec_priv.data, |
| 2001 | &track->codec_priv.size, |
| 2002 | track); |
| 2003 | if (ret < 0) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2004 | track->codec_priv.data = NULL; |
| 2005 | track->codec_priv.size = 0; |
| 2006 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2007 | "Failed to decode codec private data\n"); |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2008 | } |
Luca Barbato | 8d4dd55 | 2012-09-14 16:51:49 | [diff] [blame] | 2009 | |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2010 | if (codec_priv != track->codec_priv.data) |
| 2011 | av_free(codec_priv); |
| 2012 | } |
| 2013 | } |
| 2014 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2015 | for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) { |
| 2016 | if (!strncmp(ff_mkv_codec_tags[j].str, track->codec_id, |
| 2017 | strlen(ff_mkv_codec_tags[j].str))) { |
| 2018 | codec_id = ff_mkv_codec_tags[j].id; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2019 | break; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2020 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2021 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2022 | |
Anton Khirnov | 3b3bbdd | 2011-06-18 09:43:24 | [diff] [blame] | 2023 | st = track->stream = avformat_new_stream(s, NULL); |
Michael Niedermayer | fb33bff | 2014-08-15 18:33:21 | [diff] [blame] | 2024 | if (!st) { |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 2025 | av_free(key_id_base64); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2026 | return AVERROR(ENOMEM); |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 2027 | } |
| 2028 | |
| 2029 | if (key_id_base64) { |
| 2030 | /* export encryption key id as base64 metadata tag */ |
| 2031 | av_dict_set(&st->metadata, "enc_key_id", key_id_base64, 0); |
| 2032 | av_freep(&key_id_base64); |
| 2033 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2034 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2035 | if (!strcmp(track->codec_id, "V_MS/VFW/FOURCC") && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2036 | track->codec_priv.size >= 40 && |
Gabriel Dume | 4b1f5e5 | 2014-08-14 20:31:25 | [diff] [blame] | 2037 | track->codec_priv.data) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2038 | track->ms_compat = 1; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2039 | bit_depth = AV_RL16(track->codec_priv.data + 14); |
| 2040 | fourcc = AV_RL32(track->codec_priv.data + 16); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2041 | codec_id = ff_codec_get_id(ff_codec_bmp_tags, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2042 | fourcc); |
Carl Eugen Hoyos | ade5851 | 2014-04-27 07:34:13 | [diff] [blame] | 2043 | if (!codec_id) |
| 2044 | codec_id = ff_codec_get_id(ff_codec_movvideo_tags, |
| 2045 | fourcc); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2046 | extradata_offset = 40; |
| 2047 | } else if (!strcmp(track->codec_id, "A_MS/ACM") && |
| 2048 | track->codec_priv.size >= 14 && |
Gabriel Dume | 4b1f5e5 | 2014-08-14 20:31:25 | [diff] [blame] | 2049 | track->codec_priv.data) { |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 2050 | int ret; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2051 | ffio_init_context(&b, track->codec_priv.data, |
| 2052 | track->codec_priv.size, |
Michael Niedermayer | d0b4504 | 2013-01-04 12:00:14 | [diff] [blame] | 2053 | 0, NULL, NULL, NULL, NULL); |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2054 | ret = ff_get_wav_header(s, &b, st->codecpar, track->codec_priv.size, 0); |
Max Horn | ca402f3 | 2011-04-12 15:44:20 | [diff] [blame] | 2055 | if (ret < 0) |
| 2056 | return ret; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2057 | codec_id = st->codecpar->codec_id; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2058 | fourcc = st->codecpar->codec_tag; |
Aurelien Jacobs | 038146e | 2009-10-01 21:14:05 | [diff] [blame] | 2059 | extradata_offset = FFMIN(track->codec_priv.size, 18); |
Michael Niedermayer | 4821858 | 2014-01-19 17:35:33 | [diff] [blame] | 2060 | } else if (!strcmp(track->codec_id, "A_QUICKTIME") |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 2061 | /* Normally 36, but allow noncompliant private data */ |
| 2062 | && (track->codec_priv.size >= 32) |
Michael Niedermayer | 81a663f | 2014-08-15 19:31:59 | [diff] [blame] | 2063 | && (track->codec_priv.data)) { |
Mats Peterson | 535d09a | 2016-01-15 22:25:38 | [diff] [blame] | 2064 | uint16_t sample_size; |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 2065 | int ret = get_qt_codec(track, &fourcc, &codec_id); |
| 2066 | if (ret < 0) |
| 2067 | return ret; |
Mats Peterson | 535d09a | 2016-01-15 22:25:38 | [diff] [blame] | 2068 | sample_size = AV_RB16(track->codec_priv.data + 26); |
Mats Peterson | 6f1466d | 2016-01-08 11:55:59 | [diff] [blame] | 2069 | if (fourcc == 0) { |
Mats Peterson | 535d09a | 2016-01-15 22:25:38 | [diff] [blame] | 2070 | if (sample_size == 8) { |
Mats Peterson | 6f1466d | 2016-01-08 11:55:59 | [diff] [blame] | 2071 | fourcc = MKTAG('r','a','w',' '); |
| 2072 | codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc); |
Mats Peterson | 535d09a | 2016-01-15 22:25:38 | [diff] [blame] | 2073 | } else if (sample_size == 16) { |
Mats Peterson | 6f1466d | 2016-01-08 11:55:59 | [diff] [blame] | 2074 | fourcc = MKTAG('t','w','o','s'); |
| 2075 | codec_id = ff_codec_get_id(ff_codec_movaudio_tags, fourcc); |
| 2076 | } |
| 2077 | } |
Mats Peterson | 535d09a | 2016-01-15 22:25:38 | [diff] [blame] | 2078 | if ((fourcc == MKTAG('t','w','o','s') || |
| 2079 | fourcc == MKTAG('s','o','w','t')) && |
| 2080 | sample_size == 8) |
| 2081 | codec_id = AV_CODEC_ID_PCM_S8; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2082 | } else if (!strcmp(track->codec_id, "V_QUICKTIME") && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2083 | (track->codec_priv.size >= 21) && |
Gabriel Dume | 4b1f5e5 | 2014-08-14 20:31:25 | [diff] [blame] | 2084 | (track->codec_priv.data)) { |
Mats Peterson | 71f73ee | 2016-01-10 02:59:21 | [diff] [blame] | 2085 | int ret = get_qt_codec(track, &fourcc, &codec_id); |
| 2086 | if (ret < 0) |
| 2087 | return ret; |
Mats Peterson | 6a975cb | 2016-01-06 03:16:32 | [diff] [blame] | 2088 | if (codec_id == AV_CODEC_ID_NONE && AV_RL32(track->codec_priv.data+4) == AV_RL32("SMI ")) { |
| 2089 | fourcc = MKTAG('S','V','Q','3'); |
| 2090 | codec_id = ff_codec_get_id(ff_codec_movvideo_tags, fourcc); |
| 2091 | } |
Vittorio Giovara | 8fc11ab | 2015-05-11 16:23:43 | [diff] [blame] | 2092 | if (codec_id == AV_CODEC_ID_NONE) { |
| 2093 | char buf[32]; |
Michael Niedermayer | e539751 | 2015-05-13 20:04:02 | [diff] [blame] | 2094 | av_get_codec_tag_string(buf, sizeof(buf), fourcc); |
Vittorio Giovara | 8fc11ab | 2015-05-11 16:23:43 | [diff] [blame] | 2095 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2096 | "mov FourCC not found %s.\n", buf); |
| 2097 | } |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2098 | if (track->codec_priv.size >= 86) { |
| 2099 | bit_depth = AV_RB16(track->codec_priv.data + 82); |
| 2100 | ffio_init_context(&b, track->codec_priv.data, |
| 2101 | track->codec_priv.size, |
| 2102 | 0, NULL, NULL, NULL, NULL); |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2103 | if (ff_get_qtpalette(codec_id, &b, track->palette)) { |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2104 | bit_depth &= 0x1F; |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2105 | track->has_palette = 1; |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2106 | } |
| 2107 | } |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2108 | } else if (codec_id == AV_CODEC_ID_PCM_S16BE) { |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 2109 | switch (track->audio.bitdepth) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2110 | case 8: |
| 2111 | codec_id = AV_CODEC_ID_PCM_U8; |
| 2112 | break; |
| 2113 | case 24: |
| 2114 | codec_id = AV_CODEC_ID_PCM_S24BE; |
| 2115 | break; |
| 2116 | case 32: |
| 2117 | codec_id = AV_CODEC_ID_PCM_S32BE; |
| 2118 | break; |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 2119 | } |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2120 | } else if (codec_id == AV_CODEC_ID_PCM_S16LE) { |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 2121 | switch (track->audio.bitdepth) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2122 | case 8: |
| 2123 | codec_id = AV_CODEC_ID_PCM_U8; |
| 2124 | break; |
| 2125 | case 24: |
| 2126 | codec_id = AV_CODEC_ID_PCM_S24LE; |
| 2127 | break; |
| 2128 | case 32: |
| 2129 | codec_id = AV_CODEC_ID_PCM_S32LE; |
| 2130 | break; |
Aurelien Jacobs | eb9cf50 | 2008-08-20 00:49:45 | [diff] [blame] | 2131 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2132 | } else if (codec_id == AV_CODEC_ID_PCM_F32LE && |
| 2133 | track->audio.bitdepth == 64) { |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2134 | codec_id = AV_CODEC_ID_PCM_F64LE; |
| 2135 | } else if (codec_id == AV_CODEC_ID_AAC && !track->codec_priv.size) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2136 | int profile = matroska_aac_profile(track->codec_id); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2137 | int sri = matroska_aac_sri(track->audio.samplerate); |
Vittorio Giovara | 059a934 | 2015-06-29 21:48:34 | [diff] [blame] | 2138 | extradata = av_mallocz(5 + AV_INPUT_BUFFER_PADDING_SIZE); |
Gabriel Dume | f929ab0 | 2014-08-14 20:31:24 | [diff] [blame] | 2139 | if (!extradata) |
Aurelien Jacobs | 28f450a | 2008-08-05 00:40:09 | [diff] [blame] | 2140 | return AVERROR(ENOMEM); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2141 | extradata[0] = (profile << 3) | ((sri & 0x0E) >> 1); |
| 2142 | extradata[1] = ((sri & 0x01) << 7) | (track->audio.channels << 3); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2143 | if (strstr(track->codec_id, "SBR")) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2144 | sri = matroska_aac_sri(track->audio.out_samplerate); |
| 2145 | extradata[2] = 0x56; |
| 2146 | extradata[3] = 0xE5; |
| 2147 | extradata[4] = 0x80 | (sri << 3); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2148 | extradata_size = 5; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 2149 | } else |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2150 | extradata_size = 2; |
Michael Niedermayer | 29d147c | 2015-07-27 20:53:16 | [diff] [blame] | 2151 | } else if (codec_id == AV_CODEC_ID_ALAC && track->codec_priv.size && track->codec_priv.size < INT_MAX - 12 - AV_INPUT_BUFFER_PADDING_SIZE) { |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 2152 | /* Only ALAC's magic cookie is stored in Matroska's track headers. |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2153 | * Create the "atom size", "tag", and "tag version" fields the |
| 2154 | * decoder expects manually. */ |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 2155 | extradata_size = 12 + track->codec_priv.size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2156 | extradata = av_mallocz(extradata_size + |
Vittorio Giovara | 059a934 | 2015-06-29 21:48:34 | [diff] [blame] | 2157 | AV_INPUT_BUFFER_PADDING_SIZE); |
Gabriel Dume | f929ab0 | 2014-08-14 20:31:24 | [diff] [blame] | 2158 | if (!extradata) |
Paul B Mahol | 9644fc9 | 2013-06-07 10:06:15 | [diff] [blame] | 2159 | return AVERROR(ENOMEM); |
| 2160 | AV_WB32(extradata, extradata_size); |
| 2161 | memcpy(&extradata[4], "alac", 4); |
| 2162 | AV_WB32(&extradata[8], 0); |
| 2163 | memcpy(&extradata[12], track->codec_priv.data, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2164 | track->codec_priv.size); |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2165 | } else if (codec_id == AV_CODEC_ID_TTA) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2166 | extradata_size = 30; |
Michael Niedermayer | 29d147c | 2015-07-27 20:53:16 | [diff] [blame] | 2167 | extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE); |
Gabriel Dume | f929ab0 | 2014-08-14 20:31:24 | [diff] [blame] | 2168 | if (!extradata) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2169 | return AVERROR(ENOMEM); |
Anton Khirnov | ae99313 | 2011-02-20 10:04:13 | [diff] [blame] | 2170 | ffio_init_context(&b, extradata, extradata_size, 1, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2171 | NULL, NULL, NULL, NULL); |
Anton Khirnov | e9eb8d0 | 2011-02-21 18:28:17 | [diff] [blame] | 2172 | avio_write(&b, "TTA1", 4); |
| 2173 | avio_wl16(&b, 1); |
Andreas Cadhalpun | 92e79a2 | 2015-06-15 19:06:51 | [diff] [blame] | 2174 | if (track->audio.channels > UINT16_MAX || |
| 2175 | track->audio.bitdepth > UINT16_MAX) { |
| 2176 | av_log(matroska->ctx, AV_LOG_WARNING, |
| 2177 | "Too large audio channel number %"PRIu64 |
| 2178 | " or bitdepth %"PRIu64". Skipping track.\n", |
| 2179 | track->audio.channels, track->audio.bitdepth); |
| 2180 | av_freep(&extradata); |
| 2181 | if (matroska->ctx->error_recognition & AV_EF_EXPLODE) |
| 2182 | return AVERROR_INVALIDDATA; |
| 2183 | else |
| 2184 | continue; |
| 2185 | } |
Anton Khirnov | e9eb8d0 | 2011-02-21 18:28:17 | [diff] [blame] | 2186 | avio_wl16(&b, track->audio.channels); |
| 2187 | avio_wl16(&b, track->audio.bitdepth); |
Michael Niedermayer | 338f8b2 | 2013-08-18 00:20:54 | [diff] [blame] | 2188 | if (track->audio.out_samplerate < 0 || track->audio.out_samplerate > INT_MAX) |
| 2189 | return AVERROR_INVALIDDATA; |
Anton Khirnov | e9eb8d0 | 2011-02-21 18:28:17 | [diff] [blame] | 2190 | avio_wl32(&b, track->audio.out_samplerate); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2191 | avio_wl32(&b, av_rescale((matroska->duration * matroska->time_scale), |
| 2192 | track->audio.out_samplerate, |
| 2193 | AV_TIME_BASE * 1000)); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2194 | } else if (codec_id == AV_CODEC_ID_RV10 || |
| 2195 | codec_id == AV_CODEC_ID_RV20 || |
| 2196 | codec_id == AV_CODEC_ID_RV30 || |
| 2197 | codec_id == AV_CODEC_ID_RV40) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2198 | extradata_offset = 26; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2199 | } else if (codec_id == AV_CODEC_ID_RA_144) { |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2200 | track->audio.out_samplerate = 8000; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2201 | track->audio.channels = 1; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2202 | } else if ((codec_id == AV_CODEC_ID_RA_288 || |
| 2203 | codec_id == AV_CODEC_ID_COOK || |
| 2204 | codec_id == AV_CODEC_ID_ATRAC3 || |
| 2205 | codec_id == AV_CODEC_ID_SIPR) |
| 2206 | && track->codec_priv.data) { |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 2207 | int flavor; |
Michael Niedermayer | 0b27136 | 2012-04-14 17:33:24 | [diff] [blame] | 2208 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2209 | ffio_init_context(&b, track->codec_priv.data, |
| 2210 | track->codec_priv.size, |
| 2211 | 0, NULL, NULL, NULL, NULL); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 2212 | avio_skip(&b, 22); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 2213 | flavor = avio_rb16(&b); |
| 2214 | track->audio.coded_framesize = avio_rb32(&b); |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 2215 | avio_skip(&b, 12); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 2216 | track->audio.sub_packet_h = avio_rb16(&b); |
| 2217 | track->audio.frame_size = avio_rb16(&b); |
| 2218 | track->audio.sub_packet_size = avio_rb16(&b); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2219 | if (flavor < 0 || |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2220 | track->audio.coded_framesize <= 0 || |
| 2221 | track->audio.sub_packet_h <= 0 || |
| 2222 | track->audio.frame_size <= 0 || |
Martin Storsjö | 569d18a | 2013-09-16 12:36:24 | [diff] [blame] | 2223 | track->audio.sub_packet_size <= 0) |
| 2224 | return AVERROR_INVALIDDATA; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2225 | track->audio.buf = av_malloc_array(track->audio.sub_packet_h, |
| 2226 | track->audio.frame_size); |
Paul B Mahol | 3e2a5b3 | 2013-09-16 18:03:27 | [diff] [blame] | 2227 | if (!track->audio.buf) |
| 2228 | return AVERROR(ENOMEM); |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2229 | if (codec_id == AV_CODEC_ID_RA_288) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2230 | st->codecpar->block_align = track->audio.coded_framesize; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2231 | track->codec_priv.size = 0; |
| 2232 | } else { |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2233 | if (codec_id == AV_CODEC_ID_SIPR && flavor < 4) { |
Michael Niedermayer | 62cf5c1 | 2013-08-04 19:18:49 | [diff] [blame] | 2234 | static const int sipr_bit_rate[4] = { 6504, 8496, 5000, 16000 }; |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 2235 | track->audio.sub_packet_size = ff_sipr_subpk_size[flavor]; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2236 | st->codecpar->bit_rate = sipr_bit_rate[flavor]; |
Aurelien Jacobs | 6b10228 | 2010-03-12 23:49:06 | [diff] [blame] | 2237 | } |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2238 | st->codecpar->block_align = track->audio.sub_packet_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2239 | extradata_offset = 78; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2240 | } |
Anton Khirnov | 4efdadc | 2014-05-25 12:05:51 | [diff] [blame] | 2241 | } else if (codec_id == AV_CODEC_ID_FLAC && track->codec_priv.size) { |
| 2242 | ret = matroska_parse_flac(s, track, &extradata_offset); |
| 2243 | if (ret < 0) |
| 2244 | return ret; |
Carl Eugen Hoyos | 3d5c859 | 2014-04-06 18:54:48 | [diff] [blame] | 2245 | } else if (codec_id == AV_CODEC_ID_PRORES && track->codec_priv.size == 4) { |
| 2246 | fourcc = AV_RL32(track->codec_priv.data); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2247 | } |
Aurelien Jacobs | e264440 | 2009-08-24 13:40:30 | [diff] [blame] | 2248 | track->codec_priv.size -= extradata_offset; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2249 | |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2250 | if (codec_id == AV_CODEC_ID_NONE) |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2251 | av_log(matroska->ctx, AV_LOG_INFO, |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 2252 | "Unknown/unsupported AVCodecID %s.\n", track->codec_id); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2253 | |
Aurelien Jacobs | 3fc9d7c | 2008-09-09 11:23:48 | [diff] [blame] | 2254 | if (track->time_scale < 0.01) |
| 2255 | track->time_scale = 1.0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2256 | avpriv_set_pts_info(st, 64, matroska->time_scale * track->time_scale, |
| 2257 | 1000 * 1000 * 1000); /* 64 bit pts in ns */ |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2258 | |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 2259 | /* convert the delay from ns to the track timebase */ |
Michael Niedermayer | b5bc436 | 2016-06-06 02:23:16 | [diff] [blame] | 2260 | track->codec_delay_in_track_tb = av_rescale_q(track->codec_delay, |
Anton Khirnov | eb3b550 | 2014-04-29 10:03:13 | [diff] [blame] | 2261 | (AVRational){ 1, 1000000000 }, |
| 2262 | st->time_base); |
| 2263 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2264 | st->codecpar->codec_id = codec_id; |
Alex Sukhanov | 251c96a | 2013-12-23 09:41:35 | [diff] [blame] | 2265 | |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2266 | if (strcmp(track->language, "und")) |
Anton Khirnov | d2d67e4 | 2011-05-22 10:46:29 | [diff] [blame] | 2267 | av_dict_set(&st->metadata, "language", track->language, 0); |
| 2268 | av_dict_set(&st->metadata, "title", track->name, 0); |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2269 | |
| 2270 | if (track->flag_default) |
| 2271 | st->disposition |= AV_DISPOSITION_DEFAULT; |
Aurelien Jacobs | 7a617a8 | 2010-07-02 16:38:44 | [diff] [blame] | 2272 | if (track->flag_forced) |
| 2273 | st->disposition |= AV_DISPOSITION_FORCED; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2274 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2275 | if (!st->codecpar->extradata) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2276 | if (extradata) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2277 | st->codecpar->extradata = extradata; |
| 2278 | st->codecpar->extradata_size = extradata_size; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2279 | } else if (track->codec_priv.data && track->codec_priv.size > 0) { |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2280 | if (ff_alloc_extradata(st->codecpar, track->codec_priv.size)) |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 2281 | return AVERROR(ENOMEM); |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2282 | memcpy(st->codecpar->extradata, |
Aurelien Jacobs | 553e9f7 | 2009-10-01 21:15:36 | [diff] [blame] | 2283 | track->codec_priv.data + extradata_offset, |
| 2284 | track->codec_priv.size); |
| 2285 | } |
Aurelien Jacobs | ff0d5a7 | 2009-10-01 21:14:46 | [diff] [blame] | 2286 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2287 | |
| 2288 | if (track->type == MATROSKA_TRACK_TYPE_VIDEO) { |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2289 | MatroskaTrackPlane *planes = track->operation.combine_planes.elem; |
Aaron Colwell | febfb49 | 2015-12-02 23:13:18 | [diff] [blame] | 2290 | int display_width_mul = 1; |
Aaron Colwell | ec83efd | 2015-11-23 20:06:14 | [diff] [blame] | 2291 | int display_height_mul = 1; |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2292 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2293 | st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2294 | st->codecpar->codec_tag = fourcc; |
Carl Eugen Hoyos | 96fc290 | 2014-02-25 23:02:51 | [diff] [blame] | 2295 | if (bit_depth >= 0) |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2296 | st->codecpar->bits_per_coded_sample = bit_depth; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2297 | st->codecpar->width = track->video.pixel_width; |
| 2298 | st->codecpar->height = track->video.pixel_height; |
Aaron Colwell | ec83efd | 2015-11-23 20:06:14 | [diff] [blame] | 2299 | |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 2300 | if (track->video.interlaced == MATROSKA_VIDEO_INTERLACE_FLAG_INTERLACED) |
James Almer | 1273bc6 | 2016-10-13 17:22:07 | [diff] [blame] | 2301 | st->codecpar->field_order = mkv_field_order(matroska, track->video.field_order); |
James Almer | 29b6c2b | 2016-09-27 17:48:33 | [diff] [blame] | 2302 | else if (track->video.interlaced == MATROSKA_VIDEO_INTERLACE_FLAG_PROGRESSIVE) |
| 2303 | st->codecpar->field_order = AV_FIELD_PROGRESSIVE; |
Luca Barbato | 5f02266 | 2016-03-28 18:29:54 | [diff] [blame] | 2304 | |
Aaron Colwell | ec83efd | 2015-11-23 20:06:14 | [diff] [blame] | 2305 | if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB) |
| 2306 | mkv_stereo_mode_display_mul(track->video.stereo_mode, &display_width_mul, &display_height_mul); |
| 2307 | |
James Almer | 8b59ce0 | 2016-10-16 13:13:45 | [diff] [blame] | 2308 | if (track->video.display_unit < MATROSKA_VIDEO_DISPLAYUNIT_UNKNOWN) { |
James Almer | bad8bbc | 2016-10-15 21:01:50 | [diff] [blame] | 2309 | av_reduce(&st->sample_aspect_ratio.num, |
| 2310 | &st->sample_aspect_ratio.den, |
| 2311 | st->codecpar->height * track->video.display_width * display_width_mul, |
| 2312 | st->codecpar->width * track->video.display_height * display_height_mul, |
| 2313 | 255); |
| 2314 | } |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2315 | if (st->codecpar->codec_id != AV_CODEC_ID_HEVC) |
Yusuke Nakamura | 16b6839 | 2013-10-12 09:55:46 | [diff] [blame] | 2316 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Michael Niedermayer | 0fbeeb9 | 2013-11-01 16:57:57 | [diff] [blame] | 2317 | |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 2318 | if (track->default_duration) { |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 2319 | av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den, |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 2320 | 1000000000, track->default_duration, 30000); |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 2321 | #if FF_API_R_FRAME_RATE |
Michael Niedermayer | fc3cdb0 | 2015-02-01 18:34:52 | [diff] [blame] | 2322 | if ( st->avg_frame_rate.num < st->avg_frame_rate.den * 1000LL |
| 2323 | && st->avg_frame_rate.num > st->avg_frame_rate.den * 5LL) |
Michael Niedermayer | 6853e40 | 2013-10-05 22:07:28 | [diff] [blame] | 2324 | st->r_frame_rate = st->avg_frame_rate; |
Anton Khirnov | aba232c | 2012-06-26 11:10:01 | [diff] [blame] | 2325 | #endif |
Luca Barbato | ac97d47 | 2012-04-17 23:32:07 | [diff] [blame] | 2326 | } |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 2327 | |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2328 | /* export stereo mode flag as metadata tag */ |
Michael Niedermayer | 37520a9 | 2014-08-28 23:26:52 | [diff] [blame] | 2329 | if (track->video.stereo_mode && track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB) |
Clément Bœsch | ca81e3b | 2012-09-16 00:58:40 | [diff] [blame] | 2330 | 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] | 2331 | |
Vignesh Venkatasubramanian | ce6a8e5 | 2013-02-04 23:17:52 | [diff] [blame] | 2332 | /* export alpha mode flag as metadata tag */ |
| 2333 | if (track->video.alpha_mode) |
| 2334 | av_dict_set(&st->metadata, "alpha_mode", "1", 0); |
| 2335 | |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2336 | /* if we have virtual track, mark the real tracks */ |
| 2337 | for (j=0; j < track->operation.combine_planes.nb_elem; j++) { |
| 2338 | char buf[32]; |
Aurelien Jacobs | b44bbf9 | 2011-05-24 21:26:24 | [diff] [blame] | 2339 | if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT) |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2340 | continue; |
| 2341 | snprintf(buf, sizeof(buf), "%s_%d", |
Clément Bœsch | ca81e3b | 2012-09-16 00:58:40 | [diff] [blame] | 2342 | ff_matroska_video_stereo_plane[planes[j].type], i); |
Aurelien Jacobs | 4c509fe | 2011-05-23 23:09:24 | [diff] [blame] | 2343 | for (k=0; k < matroska->tracks.nb_elem; k++) |
Michael Niedermayer | 5d309d3 | 2015-05-04 13:47:54 | [diff] [blame] | 2344 | if (planes[j].uid == tracks[k].uid && tracks[k].stream) { |
| 2345 | av_dict_set(&tracks[k].stream->metadata, |
Aurelien Jacobs | e6ba3d4 | 2011-06-13 17:02:50 | [diff] [blame] | 2346 | "stereo_mode", buf, 0); |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 2347 | break; |
| 2348 | } |
Kirill Gavrilov | e6ec921 | 2011-05-21 15:14:14 | [diff] [blame] | 2349 | } |
Vittorio Giovara | d4ae8ac | 2014-08-12 21:28:49 | [diff] [blame] | 2350 | // add stream level stereo3d side data if it is a supported format |
| 2351 | if (track->video.stereo_mode < MATROSKA_VIDEO_STEREOMODE_TYPE_NB && |
| 2352 | track->video.stereo_mode != 10 && track->video.stereo_mode != 12) { |
| 2353 | int ret = ff_mkv_stereo3d_conv(st, track->video.stereo_mode); |
| 2354 | if (ret < 0) |
| 2355 | return ret; |
| 2356 | } |
Neil Birkbeck | bbda13a | 2016-03-01 00:41:04 | [diff] [blame] | 2357 | |
| 2358 | if (s->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL) { |
| 2359 | int ret = mkv_parse_video_color(st, track); |
| 2360 | if (ret < 0) |
| 2361 | return ret; |
| 2362 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2363 | } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2364 | st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2365 | st->codecpar->codec_tag = fourcc; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2366 | st->codecpar->sample_rate = track->audio.out_samplerate; |
| 2367 | st->codecpar->channels = track->audio.channels; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2368 | if (!st->codecpar->bits_per_coded_sample) |
| 2369 | st->codecpar->bits_per_coded_sample = track->audio.bitdepth; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2370 | if (st->codecpar->codec_id == AV_CODEC_ID_MP3) |
Rodger Combs | b4b2717 | 2015-08-16 08:06:04 | [diff] [blame] | 2371 | st->need_parsing = AVSTREAM_PARSE_FULL; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2372 | else if (st->codecpar->codec_id != AV_CODEC_ID_AAC) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2373 | st->need_parsing = AVSTREAM_PARSE_HEADERS; |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 2374 | if (track->codec_delay > 0) { |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2375 | st->codecpar->initial_padding = av_rescale_q(track->codec_delay, |
Michael Niedermayer | b5bc436 | 2016-06-06 02:23:16 | [diff] [blame] | 2376 | (AVRational){1, 1000000000}, |
James Almer | 49b0246 | 2016-06-06 04:14:11 | [diff] [blame] | 2377 | (AVRational){1, st->codecpar->codec_id == AV_CODEC_ID_OPUS ? |
| 2378 | 48000 : st->codecpar->sample_rate}); |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 2379 | } |
| 2380 | if (track->seek_preroll > 0) { |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2381 | st->codecpar->seek_preroll = av_rescale_q(track->seek_preroll, |
| 2382 | (AVRational){1, 1000000000}, |
| 2383 | (AVRational){1, st->codecpar->sample_rate}); |
Vignesh Venkatasubramanian | d6f86d7 | 2013-10-14 17:42:08 | [diff] [blame] | 2384 | } |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2385 | } else if (codec_id == AV_CODEC_ID_WEBVTT) { |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2386 | st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2387 | |
| 2388 | if (!strcmp(track->codec_id, "D_WEBVTT/CAPTIONS")) { |
| 2389 | st->disposition |= AV_DISPOSITION_CAPTIONS; |
| 2390 | } else if (!strcmp(track->codec_id, "D_WEBVTT/DESCRIPTIONS")) { |
| 2391 | st->disposition |= AV_DISPOSITION_DESCRIPTIONS; |
| 2392 | } else if (!strcmp(track->codec_id, "D_WEBVTT/METADATA")) { |
| 2393 | st->disposition |= AV_DISPOSITION_METADATA; |
| 2394 | } |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2395 | } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2396 | st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2397 | if (st->codecpar->codec_id == AV_CODEC_ID_ASS) |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2398 | matroska->contains_ssa = 1; |
Aurelien Jacobs | d88d806 | 2008-08-05 00:40:52 | [diff] [blame] | 2399 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2400 | } |
| 2401 | |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2402 | return 0; |
| 2403 | } |
| 2404 | |
| 2405 | static int matroska_read_header(AVFormatContext *s) |
| 2406 | { |
| 2407 | MatroskaDemuxContext *matroska = s->priv_data; |
| 2408 | EbmlList *attachments_list = &matroska->attachments; |
| 2409 | EbmlList *chapters_list = &matroska->chapters; |
| 2410 | MatroskaAttachment *attachments; |
| 2411 | MatroskaChapter *chapters; |
| 2412 | uint64_t max_start = 0; |
| 2413 | int64_t pos; |
| 2414 | Ebml ebml = { 0 }; |
| 2415 | int i, j, res; |
| 2416 | |
| 2417 | matroska->ctx = s; |
wm4 | cac2295 | 2015-02-09 19:39:00 | [diff] [blame] | 2418 | matroska->cues_parsing_deferred = 1; |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2419 | |
| 2420 | /* First read the EBML header. */ |
Thomas Guillem | b8d7f31 | 2015-04-10 17:04:51 | [diff] [blame] | 2421 | if (ebml_parse(matroska, ebml_syntax, &ebml) || !ebml.doctype) { |
| 2422 | av_log(matroska->ctx, AV_LOG_ERROR, "EBML header parsing failed\n"); |
| 2423 | ebml_free(ebml_syntax, &ebml); |
| 2424 | return AVERROR_INVALIDDATA; |
| 2425 | } |
| 2426 | if (ebml.version > EBML_VERSION || |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2427 | ebml.max_size > sizeof(uint64_t) || |
| 2428 | ebml.id_length > sizeof(uint32_t) || |
Michael Niedermayer | 0cab093 | 2015-04-19 14:45:24 | [diff] [blame] | 2429 | ebml.doctype_version > 3) { |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2430 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2431 | "EBML header using unsupported features\n" |
| 2432 | "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n", |
| 2433 | ebml.version, ebml.doctype, ebml.doctype_version); |
| 2434 | ebml_free(ebml_syntax, &ebml); |
| 2435 | return AVERROR_PATCHWELCOME; |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 2436 | } else if (ebml.doctype_version == 3) { |
| 2437 | av_log(matroska->ctx, AV_LOG_WARNING, |
| 2438 | "EBML header using unsupported features\n" |
| 2439 | "(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n", |
| 2440 | ebml.version, ebml.doctype, ebml.doctype_version); |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2441 | } |
| 2442 | for (i = 0; i < FF_ARRAY_ELEMS(matroska_doctypes); i++) |
| 2443 | if (!strcmp(ebml.doctype, matroska_doctypes[i])) |
| 2444 | break; |
| 2445 | if (i >= FF_ARRAY_ELEMS(matroska_doctypes)) { |
| 2446 | av_log(s, AV_LOG_WARNING, "Unknown EBML doctype '%s'\n", ebml.doctype); |
| 2447 | if (matroska->ctx->error_recognition & AV_EF_EXPLODE) { |
| 2448 | ebml_free(ebml_syntax, &ebml); |
| 2449 | return AVERROR_INVALIDDATA; |
| 2450 | } |
| 2451 | } |
| 2452 | ebml_free(ebml_syntax, &ebml); |
| 2453 | |
| 2454 | /* The next thing is a segment. */ |
| 2455 | pos = avio_tell(matroska->ctx->pb); |
| 2456 | res = ebml_parse(matroska, matroska_segments, matroska); |
| 2457 | // try resyncing until we find a EBML_STOP type element. |
| 2458 | while (res != 1) { |
| 2459 | res = matroska_resync(matroska, pos); |
| 2460 | if (res < 0) |
Michael Niedermayer | f573acc | 2016-06-24 16:26:46 | [diff] [blame] | 2461 | goto fail; |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2462 | pos = avio_tell(matroska->ctx->pb); |
| 2463 | res = ebml_parse(matroska, matroska_segment, matroska); |
| 2464 | } |
| 2465 | matroska_execute_seekhead(matroska); |
| 2466 | |
| 2467 | if (!matroska->time_scale) |
| 2468 | matroska->time_scale = 1000000; |
| 2469 | if (matroska->duration) |
| 2470 | matroska->ctx->duration = matroska->duration * matroska->time_scale * |
| 2471 | 1000 / AV_TIME_BASE; |
| 2472 | av_dict_set(&s->metadata, "title", matroska->title, 0); |
Michael Niedermayer | 69de229 | 2014-05-28 10:41:35 | [diff] [blame] | 2473 | av_dict_set(&s->metadata, "encoder", matroska->muxingapp, 0); |
| 2474 | |
| 2475 | if (matroska->date_utc.size == 8) |
| 2476 | matroska_metadata_creation_time(&s->metadata, AV_RB64(matroska->date_utc.data)); |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2477 | |
| 2478 | res = matroska_parse_tracks(s); |
| 2479 | if (res < 0) |
Michael Niedermayer | f573acc | 2016-06-24 16:26:46 | [diff] [blame] | 2480 | goto fail; |
Anton Khirnov | 6df478b | 2014-05-25 07:07:32 | [diff] [blame] | 2481 | |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2482 | attachments = attachments_list->elem; |
| 2483 | for (j = 0; j < attachments_list->nb_elem; j++) { |
| 2484 | if (!(attachments[j].filename && attachments[j].mime && |
| 2485 | attachments[j].bin.data && attachments[j].bin.size > 0)) { |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2486 | av_log(matroska->ctx, AV_LOG_ERROR, "incomplete attachment\n"); |
| 2487 | } else { |
Anton Khirnov | 3b3bbdd | 2011-06-18 09:43:24 | [diff] [blame] | 2488 | AVStream *st = avformat_new_stream(s, NULL); |
Gabriel Dume | f929ab0 | 2014-08-14 20:31:24 | [diff] [blame] | 2489 | if (!st) |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2490 | break; |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2491 | av_dict_set(&st->metadata, "filename", attachments[j].filename, 0); |
| 2492 | av_dict_set(&st->metadata, "mimetype", attachments[j].mime, 0); |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2493 | st->codecpar->codec_id = AV_CODEC_ID_NONE; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2494 | |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2495 | for (i = 0; ff_mkv_image_mime_tags[i].id != AV_CODEC_ID_NONE; i++) { |
| 2496 | if (!strncmp(ff_mkv_image_mime_tags[i].str, attachments[j].mime, |
| 2497 | strlen(ff_mkv_image_mime_tags[i].str))) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2498 | st->codecpar->codec_id = ff_mkv_image_mime_tags[i].id; |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2499 | break; |
| 2500 | } |
| 2501 | } |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2502 | |
Diego Biurrun | f69befe | 2014-03-07 12:54:18 | [diff] [blame] | 2503 | attachments[j].stream = st; |
wm4 | c4d37cd | 2015-04-03 14:11:53 | [diff] [blame] | 2504 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2505 | if (st->codecpar->codec_id != AV_CODEC_ID_NONE) { |
| 2506 | st->disposition |= AV_DISPOSITION_ATTACHED_PIC; |
| 2507 | st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2508 | |
| 2509 | av_init_packet(&st->attached_pic); |
| 2510 | if ((res = av_new_packet(&st->attached_pic, attachments[j].bin.size)) < 0) |
| 2511 | return res; |
| 2512 | memcpy(st->attached_pic.data, attachments[j].bin.data, attachments[j].bin.size); |
| 2513 | st->attached_pic.stream_index = st->index; |
| 2514 | st->attached_pic.flags |= AV_PKT_FLAG_KEY; |
| 2515 | } else { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2516 | st->codecpar->codec_type = AVMEDIA_TYPE_ATTACHMENT; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 2517 | if (ff_alloc_extradata(st->codecpar, attachments[j].bin.size)) |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2518 | break; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2519 | memcpy(st->codecpar->extradata, attachments[j].bin.data, |
wm4 | c4d37cd | 2015-04-03 14:11:53 | [diff] [blame] | 2520 | attachments[j].bin.size); |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2521 | |
| 2522 | for (i = 0; ff_mkv_mime_tags[i].id != AV_CODEC_ID_NONE; i++) { |
| 2523 | if (!strncmp(ff_mkv_mime_tags[i].str, attachments[j].mime, |
| 2524 | strlen(ff_mkv_mime_tags[i].str))) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2525 | st->codecpar->codec_id = ff_mkv_mime_tags[i].id; |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2526 | break; |
| 2527 | } |
| 2528 | } |
wm4 | 511585c | 2015-04-03 14:11:53 | [diff] [blame] | 2529 | } |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2530 | } |
| 2531 | } |
| 2532 | |
| 2533 | chapters = chapters_list->elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2534 | for (i = 0; i < chapters_list->nb_elem; i++) |
| 2535 | if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid && |
| 2536 | (max_start == 0 || chapters[i].start > max_start)) { |
Aurelien Jacobs | 6cb6e15 | 2009-02-15 15:25:14 | [diff] [blame] | 2537 | chapters[i].chapter = |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2538 | avpriv_new_chapter(s, chapters[i].uid, |
| 2539 | (AVRational) { 1, 1000000000 }, |
| 2540 | chapters[i].start, chapters[i].end, |
| 2541 | chapters[i].title); |
Justin Jacobs | 87dc8b3 | 2014-08-07 00:04:38 | [diff] [blame] | 2542 | if (chapters[i].chapter) { |
| 2543 | av_dict_set(&chapters[i].chapter->metadata, |
| 2544 | "title", chapters[i].title, 0); |
| 2545 | } |
Aurelien Jacobs | e0e4be5 | 2009-01-15 00:42:57 | [diff] [blame] | 2546 | max_start = chapters[i].start; |
| 2547 | } |
Aurelien Jacobs | 9c25baf | 2008-08-05 00:40:55 | [diff] [blame] | 2548 | |
Aaron Colwell | 6c4cc0f | 2011-09-22 14:51:00 | [diff] [blame] | 2549 | matroska_add_index_entries(matroska); |
| 2550 | |
Aurelien Jacobs | 929e9de | 2009-02-15 15:53:55 | [diff] [blame] | 2551 | matroska_convert_tags(s); |
| 2552 | |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 2553 | return 0; |
Michael Niedermayer | f573acc | 2016-06-24 16:26:46 | [diff] [blame] | 2554 | fail: |
| 2555 | matroska_read_close(s); |
| 2556 | return res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 2557 | } |
| 2558 | |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2559 | /* |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2560 | * Put one packet in an application-supplied AVPacket struct. |
| 2561 | * Returns 0 on success or -1 on failure. |
| 2562 | */ |
| 2563 | static int matroska_deliver_packet(MatroskaDemuxContext *matroska, |
| 2564 | AVPacket *pkt) |
| 2565 | { |
| 2566 | if (matroska->num_packets > 0) { |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2567 | MatroskaTrack *tracks = matroska->tracks.elem; |
| 2568 | MatroskaTrack *track; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2569 | memcpy(pkt, matroska->packets[0], sizeof(AVPacket)); |
Michael Niedermayer | 6e70e4a | 2015-01-06 11:48:38 | [diff] [blame] | 2570 | av_freep(&matroska->packets[0]); |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2571 | track = &tracks[pkt->stream_index]; |
| 2572 | if (track->has_palette) { |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2573 | uint8_t *pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE); |
| 2574 | if (!pal) { |
| 2575 | av_log(matroska->ctx, AV_LOG_ERROR, "Cannot append palette to packet\n"); |
| 2576 | } else { |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2577 | memcpy(pal, track->palette, AVPALETTE_SIZE); |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2578 | } |
Mats Peterson | 6aac43f | 2016-02-24 17:14:05 | [diff] [blame] | 2579 | track->has_palette = 0; |
Mats Peterson | 7973603 | 2015-12-27 20:28:09 | [diff] [blame] | 2580 | } |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2581 | if (matroska->num_packets > 1) { |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2582 | void *newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2583 | memmove(&matroska->packets[0], &matroska->packets[1], |
| 2584 | (matroska->num_packets - 1) * sizeof(AVPacket *)); |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2585 | newpackets = av_realloc(matroska->packets, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2586 | (matroska->num_packets - 1) * |
| 2587 | sizeof(AVPacket *)); |
Michael Niedermayer | 956c901 | 2011-07-28 12:59:54 | [diff] [blame] | 2588 | if (newpackets) |
| 2589 | matroska->packets = newpackets; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2590 | } else { |
| 2591 | av_freep(&matroska->packets); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 2592 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2593 | } |
| 2594 | matroska->num_packets--; |
| 2595 | return 0; |
| 2596 | } |
| 2597 | |
| 2598 | return -1; |
| 2599 | } |
| 2600 | |
| 2601 | /* |
| 2602 | * Free all packets in our internal queue. |
| 2603 | */ |
| 2604 | static void matroska_clear_queue(MatroskaDemuxContext *matroska) |
| 2605 | { |
Dale Curtis | ae3d416 | 2013-01-10 19:05:29 | [diff] [blame] | 2606 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2607 | if (matroska->packets) { |
| 2608 | int n; |
| 2609 | for (n = 0; n < matroska->num_packets; n++) { |
Luca Barbato | ce70f28 | 2015-10-23 09:11:31 | [diff] [blame] | 2610 | av_packet_unref(matroska->packets[n]); |
Michael Niedermayer | 6e70e4a | 2015-01-06 11:48:38 | [diff] [blame] | 2611 | av_freep(&matroska->packets[n]); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2612 | } |
Aurelien Jacobs | 00a3431 | 2008-08-06 00:21:10 | [diff] [blame] | 2613 | av_freep(&matroska->packets); |
Aurelien Jacobs | 737c40d | 2008-08-05 00:42:39 | [diff] [blame] | 2614 | matroska->num_packets = 0; |
| 2615 | } |
| 2616 | } |
| 2617 | |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2618 | static int matroska_parse_laces(MatroskaDemuxContext *matroska, uint8_t **buf, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2619 | int *buf_size, int type, |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2620 | uint32_t **lace_buf, int *laces) |
| 2621 | { |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 2622 | int res = 0, n, size = *buf_size; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2623 | uint8_t *data = *buf; |
| 2624 | uint32_t *lace_size; |
| 2625 | |
| 2626 | if (!type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2627 | *laces = 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2628 | *lace_buf = av_mallocz(sizeof(int)); |
| 2629 | if (!*lace_buf) |
| 2630 | return AVERROR(ENOMEM); |
| 2631 | |
| 2632 | *lace_buf[0] = size; |
| 2633 | return 0; |
| 2634 | } |
| 2635 | |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 2636 | av_assert0(size > 0); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2637 | *laces = *data + 1; |
| 2638 | data += 1; |
| 2639 | size -= 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2640 | lace_size = av_mallocz(*laces * sizeof(int)); |
| 2641 | if (!lace_size) |
| 2642 | return AVERROR(ENOMEM); |
| 2643 | |
| 2644 | switch (type) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2645 | case 0x1: /* Xiph lacing */ |
| 2646 | { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2647 | uint8_t temp; |
| 2648 | uint32_t total = 0; |
| 2649 | for (n = 0; res == 0 && n < *laces - 1; n++) { |
| 2650 | while (1) { |
Michael Niedermayer | 115c3bc | 2013-04-04 13:17:57 | [diff] [blame] | 2651 | if (size <= total) { |
Michael Niedermayer | 14de77d | 2013-04-04 13:13:53 | [diff] [blame] | 2652 | res = AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2653 | break; |
| 2654 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2655 | temp = *data; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 2656 | total += temp; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2657 | lace_size[n] += temp; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2658 | data += 1; |
| 2659 | size -= 1; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2660 | if (temp != 0xff) |
| 2661 | break; |
| 2662 | } |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2663 | } |
| 2664 | if (size <= total) { |
| 2665 | res = AVERROR_INVALIDDATA; |
| 2666 | break; |
| 2667 | } |
| 2668 | |
| 2669 | lace_size[n] = size - total; |
| 2670 | break; |
| 2671 | } |
| 2672 | |
| 2673 | case 0x2: /* fixed-size lacing */ |
Anton Khirnov | 87b017a | 2012-09-20 18:04:56 | [diff] [blame] | 2674 | if (size % (*laces)) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2675 | res = AVERROR_INVALIDDATA; |
| 2676 | break; |
| 2677 | } |
| 2678 | for (n = 0; n < *laces; n++) |
| 2679 | lace_size[n] = size / *laces; |
| 2680 | break; |
| 2681 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2682 | case 0x3: /* EBML lacing */ |
| 2683 | { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2684 | uint64_t num; |
Luca Barbato | 8a96df7 | 2013-03-28 10:52:52 | [diff] [blame] | 2685 | uint64_t total; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2686 | n = matroska_ebmlnum_uint(matroska, data, size, &num); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2687 | if (n < 0 || num > INT_MAX) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2688 | av_log(matroska->ctx, AV_LOG_INFO, |
| 2689 | "EBML block data error\n"); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2690 | res = n<0 ? n : AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2691 | break; |
| 2692 | } |
| 2693 | data += n; |
| 2694 | size -= n; |
| 2695 | total = lace_size[0] = num; |
| 2696 | for (n = 1; res == 0 && n < *laces - 1; n++) { |
| 2697 | int64_t snum; |
| 2698 | int r; |
| 2699 | r = matroska_ebmlnum_sint(matroska, data, size, &snum); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2700 | if (r < 0 || lace_size[n - 1] + snum > (uint64_t)INT_MAX) { |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2701 | av_log(matroska->ctx, AV_LOG_INFO, |
| 2702 | "EBML block data error\n"); |
Michael Niedermayer | 3b93bea | 2013-04-04 13:39:23 | [diff] [blame] | 2703 | res = r<0 ? r : AVERROR_INVALIDDATA; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2704 | break; |
| 2705 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2706 | data += r; |
| 2707 | size -= r; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2708 | lace_size[n] = lace_size[n - 1] + snum; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2709 | total += lace_size[n]; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2710 | } |
| 2711 | if (size <= total) { |
| 2712 | res = AVERROR_INVALIDDATA; |
| 2713 | break; |
| 2714 | } |
| 2715 | lace_size[*laces - 1] = size - total; |
| 2716 | break; |
| 2717 | } |
| 2718 | } |
| 2719 | |
| 2720 | *buf = data; |
| 2721 | *lace_buf = lace_size; |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 2722 | *buf_size = size; |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 2723 | |
| 2724 | return res; |
| 2725 | } |
| 2726 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2727 | static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2728 | MatroskaTrack *track, AVStream *st, |
| 2729 | uint8_t *data, int size, uint64_t timecode, |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2730 | int64_t pos) |
| 2731 | { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2732 | int a = st->codecpar->block_align; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2733 | int sps = track->audio.sub_packet_size; |
| 2734 | int cfs = track->audio.coded_framesize; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2735 | int h = track->audio.sub_packet_h; |
| 2736 | int y = track->audio.sub_packet_cnt; |
| 2737 | int w = track->audio.frame_size; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2738 | int x; |
| 2739 | |
| 2740 | if (!track->audio.pkt_cnt) { |
| 2741 | if (track->audio.sub_packet_cnt == 0) |
| 2742 | track->audio.buf_timecode = timecode; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2743 | if (st->codecpar->codec_id == AV_CODEC_ID_RA_288) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2744 | if (size < cfs * h / 2) { |
| 2745 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2746 | "Corrupt int4 RM-style audio packet size\n"); |
| 2747 | return AVERROR_INVALIDDATA; |
| 2748 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2749 | for (x = 0; x < h / 2; x++) |
| 2750 | memcpy(track->audio.buf + x * 2 * w + y * cfs, |
| 2751 | data + x * cfs, cfs); |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2752 | } else if (st->codecpar->codec_id == AV_CODEC_ID_SIPR) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2753 | if (size < w) { |
| 2754 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2755 | "Corrupt sipr RM-style audio packet size\n"); |
| 2756 | return AVERROR_INVALIDDATA; |
| 2757 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2758 | memcpy(track->audio.buf + y * w, data, w); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2759 | } else { |
Michael Niedermayer | a1ed1c2 | 2014-01-10 22:10:47 | [diff] [blame] | 2760 | if (size < sps * w / sps || h<=0 || w%sps) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2761 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 2762 | "Corrupt generic RM-style audio packet size\n"); |
| 2763 | return AVERROR_INVALIDDATA; |
| 2764 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2765 | for (x = 0; x < w / sps; x++) |
| 2766 | memcpy(track->audio.buf + |
| 2767 | sps * (h * x + ((h + 1) / 2) * (y & 1) + (y >> 1)), |
| 2768 | data + x * sps, sps); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2769 | } |
| 2770 | |
| 2771 | if (++track->audio.sub_packet_cnt >= h) { |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2772 | if (st->codecpar->codec_id == AV_CODEC_ID_SIPR) |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2773 | ff_rm_reorder_sipr_data(track->audio.buf, h, w); |
| 2774 | track->audio.sub_packet_cnt = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2775 | track->audio.pkt_cnt = h * w / a; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2776 | } |
| 2777 | } |
| 2778 | |
| 2779 | while (track->audio.pkt_cnt) { |
Vittorio Giovara | e0caa1e | 2014-10-23 23:05:53 | [diff] [blame] | 2780 | int ret; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2781 | AVPacket *pkt = av_mallocz(sizeof(AVPacket)); |
Vittorio Giovara | e0caa1e | 2014-10-23 23:05:53 | [diff] [blame] | 2782 | if (!pkt) |
Michael Niedermayer | 1116491 | 2012-10-20 14:55:45 | [diff] [blame] | 2783 | return AVERROR(ENOMEM); |
Vittorio Giovara | e0caa1e | 2014-10-23 23:05:53 | [diff] [blame] | 2784 | |
| 2785 | ret = av_new_packet(pkt, a); |
| 2786 | if (ret < 0) { |
| 2787 | av_free(pkt); |
| 2788 | return ret; |
Michael Niedermayer | 1116491 | 2012-10-20 14:55:45 | [diff] [blame] | 2789 | } |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2790 | memcpy(pkt->data, |
| 2791 | track->audio.buf + a * (h * w / a - track->audio.pkt_cnt--), |
| 2792 | a); |
| 2793 | pkt->pts = track->audio.buf_timecode; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2794 | track->audio.buf_timecode = AV_NOPTS_VALUE; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2795 | pkt->pos = pos; |
| 2796 | pkt->stream_index = st->index; |
| 2797 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 2798 | } |
| 2799 | |
| 2800 | return 0; |
| 2801 | } |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2802 | |
| 2803 | /* reconstruct full wavpack blocks from mangled matroska ones */ |
| 2804 | static int matroska_parse_wavpack(MatroskaTrack *track, uint8_t *src, |
| 2805 | uint8_t **pdst, int *size) |
| 2806 | { |
| 2807 | uint8_t *dst = NULL; |
| 2808 | int dstlen = 0; |
| 2809 | int srclen = *size; |
| 2810 | uint32_t samples; |
| 2811 | uint16_t ver; |
| 2812 | int ret, offset = 0; |
| 2813 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2814 | if (srclen < 12 || track->stream->codecpar->extradata_size < 2) |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2815 | return AVERROR_INVALIDDATA; |
| 2816 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 2817 | ver = AV_RL16(track->stream->codecpar->extradata); |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2818 | |
| 2819 | samples = AV_RL32(src); |
| 2820 | src += 4; |
| 2821 | srclen -= 4; |
| 2822 | |
| 2823 | while (srclen >= 8) { |
| 2824 | int multiblock; |
| 2825 | uint32_t blocksize; |
| 2826 | uint8_t *tmp; |
| 2827 | |
| 2828 | uint32_t flags = AV_RL32(src); |
| 2829 | uint32_t crc = AV_RL32(src + 4); |
| 2830 | src += 8; |
| 2831 | srclen -= 8; |
| 2832 | |
| 2833 | multiblock = (flags & 0x1800) != 0x1800; |
| 2834 | if (multiblock) { |
| 2835 | if (srclen < 4) { |
| 2836 | ret = AVERROR_INVALIDDATA; |
| 2837 | goto fail; |
| 2838 | } |
| 2839 | blocksize = AV_RL32(src); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2840 | src += 4; |
| 2841 | srclen -= 4; |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2842 | } else |
| 2843 | blocksize = srclen; |
| 2844 | |
| 2845 | if (blocksize > srclen) { |
| 2846 | ret = AVERROR_INVALIDDATA; |
| 2847 | goto fail; |
| 2848 | } |
| 2849 | |
| 2850 | tmp = av_realloc(dst, dstlen + blocksize + 32); |
| 2851 | if (!tmp) { |
| 2852 | ret = AVERROR(ENOMEM); |
| 2853 | goto fail; |
| 2854 | } |
| 2855 | dst = tmp; |
| 2856 | dstlen += blocksize + 32; |
| 2857 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 2858 | AV_WL32(dst + offset, MKTAG('w', 'v', 'p', 'k')); // tag |
| 2859 | AV_WL32(dst + offset + 4, blocksize + 24); // blocksize - 8 |
| 2860 | AV_WL16(dst + offset + 8, ver); // version |
| 2861 | AV_WL16(dst + offset + 10, 0); // track/index_no |
| 2862 | AV_WL32(dst + offset + 12, 0); // total samples |
| 2863 | AV_WL32(dst + offset + 16, 0); // block index |
| 2864 | AV_WL32(dst + offset + 20, samples); // number of samples |
| 2865 | AV_WL32(dst + offset + 24, flags); // flags |
| 2866 | AV_WL32(dst + offset + 28, crc); // crc |
| 2867 | memcpy(dst + offset + 32, src, blocksize); // block data |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 2868 | |
| 2869 | src += blocksize; |
| 2870 | srclen -= blocksize; |
| 2871 | offset += blocksize + 32; |
| 2872 | } |
| 2873 | |
| 2874 | *pdst = dst; |
| 2875 | *size = dstlen; |
| 2876 | |
| 2877 | return 0; |
| 2878 | |
| 2879 | fail: |
| 2880 | av_freep(&dst); |
| 2881 | return ret; |
| 2882 | } |
| 2883 | |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2884 | static int matroska_parse_webvtt(MatroskaDemuxContext *matroska, |
| 2885 | MatroskaTrack *track, |
| 2886 | AVStream *st, |
| 2887 | uint8_t *data, int data_len, |
| 2888 | uint64_t timecode, |
| 2889 | uint64_t duration, |
| 2890 | int64_t pos) |
| 2891 | { |
| 2892 | AVPacket *pkt; |
| 2893 | uint8_t *id, *settings, *text, *buf; |
| 2894 | int id_len, settings_len, text_len; |
| 2895 | uint8_t *p, *q; |
| 2896 | int err; |
| 2897 | |
| 2898 | if (data_len <= 0) |
| 2899 | return AVERROR_INVALIDDATA; |
| 2900 | |
| 2901 | p = data; |
| 2902 | q = data + data_len; |
| 2903 | |
| 2904 | id = p; |
| 2905 | id_len = -1; |
| 2906 | while (p < q) { |
| 2907 | if (*p == '\r' || *p == '\n') { |
| 2908 | id_len = p - id; |
| 2909 | if (*p == '\r') |
| 2910 | p++; |
| 2911 | break; |
| 2912 | } |
| 2913 | p++; |
| 2914 | } |
| 2915 | |
| 2916 | if (p >= q || *p != '\n') |
| 2917 | return AVERROR_INVALIDDATA; |
| 2918 | p++; |
| 2919 | |
| 2920 | settings = p; |
| 2921 | settings_len = -1; |
| 2922 | while (p < q) { |
| 2923 | if (*p == '\r' || *p == '\n') { |
| 2924 | settings_len = p - settings; |
| 2925 | if (*p == '\r') |
| 2926 | p++; |
| 2927 | break; |
| 2928 | } |
| 2929 | p++; |
| 2930 | } |
| 2931 | |
| 2932 | if (p >= q || *p != '\n') |
| 2933 | return AVERROR_INVALIDDATA; |
| 2934 | p++; |
| 2935 | |
| 2936 | text = p; |
| 2937 | text_len = q - p; |
| 2938 | while (text_len > 0) { |
| 2939 | const int len = text_len - 1; |
| 2940 | const uint8_t c = p[len]; |
| 2941 | if (c != '\r' && c != '\n') |
| 2942 | break; |
| 2943 | text_len = len; |
| 2944 | } |
| 2945 | |
| 2946 | if (text_len <= 0) |
| 2947 | return AVERROR_INVALIDDATA; |
| 2948 | |
| 2949 | pkt = av_mallocz(sizeof(*pkt)); |
Michael Niedermayer | c1cdce5 | 2015-01-24 23:25:01 | [diff] [blame] | 2950 | if (!pkt) |
| 2951 | return AVERROR(ENOMEM); |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2952 | err = av_new_packet(pkt, text_len); |
| 2953 | if (err < 0) { |
| 2954 | av_free(pkt); |
| 2955 | return AVERROR(err); |
| 2956 | } |
| 2957 | |
| 2958 | memcpy(pkt->data, text, text_len); |
| 2959 | |
| 2960 | if (id_len > 0) { |
| 2961 | buf = av_packet_new_side_data(pkt, |
| 2962 | AV_PKT_DATA_WEBVTT_IDENTIFIER, |
| 2963 | id_len); |
Michael Niedermayer | fb33bff | 2014-08-15 18:33:21 | [diff] [blame] | 2964 | if (!buf) { |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2965 | av_free(pkt); |
| 2966 | return AVERROR(ENOMEM); |
| 2967 | } |
| 2968 | memcpy(buf, id, id_len); |
| 2969 | } |
| 2970 | |
| 2971 | if (settings_len > 0) { |
| 2972 | buf = av_packet_new_side_data(pkt, |
| 2973 | AV_PKT_DATA_WEBVTT_SETTINGS, |
| 2974 | settings_len); |
Michael Niedermayer | fb33bff | 2014-08-15 18:33:21 | [diff] [blame] | 2975 | if (!buf) { |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 2976 | av_free(pkt); |
| 2977 | return AVERROR(ENOMEM); |
| 2978 | } |
| 2979 | memcpy(buf, settings, settings_len); |
| 2980 | } |
| 2981 | |
| 2982 | // Do we need this for subtitles? |
| 2983 | // pkt->flags = AV_PKT_FLAG_KEY; |
| 2984 | |
| 2985 | pkt->stream_index = st->index; |
| 2986 | pkt->pts = timecode; |
| 2987 | |
| 2988 | // Do we need this for subtitles? |
| 2989 | // pkt->dts = timecode; |
| 2990 | |
| 2991 | pkt->duration = duration; |
| 2992 | pkt->pos = pos; |
| 2993 | |
| 2994 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
| 2995 | matroska->prev_pkt = pkt; |
| 2996 | |
| 2997 | return 0; |
| 2998 | } |
| 2999 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3000 | static int matroska_parse_frame(MatroskaDemuxContext *matroska, |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3001 | MatroskaTrack *track, AVStream *st, |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3002 | uint8_t *data, int pkt_size, |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3003 | uint64_t timecode, uint64_t lace_duration, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3004 | int64_t pos, int is_keyframe, |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3005 | uint8_t *additional, uint64_t additional_id, int additional_size, |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 3006 | int64_t discard_padding) |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3007 | { |
| 3008 | MatroskaTrackEncoding *encodings = track->encodings.elem; |
| 3009 | uint8_t *pkt_data = data; |
| 3010 | int offset = 0, res; |
| 3011 | AVPacket *pkt; |
| 3012 | |
Frank Galligan | b853103 | 2013-03-07 16:11:38 | [diff] [blame] | 3013 | if (encodings && !encodings->type && encodings->scope & 1) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3014 | res = matroska_decode_buffer(&pkt_data, &pkt_size, track); |
| 3015 | if (res < 0) |
| 3016 | return res; |
| 3017 | } |
| 3018 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 3019 | if (st->codecpar->codec_id == AV_CODEC_ID_WAVPACK) { |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 3020 | uint8_t *wv_data; |
| 3021 | res = matroska_parse_wavpack(track, pkt_data, &wv_data, &pkt_size); |
| 3022 | if (res < 0) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3023 | av_log(matroska->ctx, AV_LOG_ERROR, |
| 3024 | "Error parsing a wavpack block.\n"); |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 3025 | goto fail; |
| 3026 | } |
| 3027 | if (pkt_data != data) |
| 3028 | av_freep(&pkt_data); |
| 3029 | pkt_data = wv_data; |
| 3030 | } |
| 3031 | |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 3032 | if (st->codecpar->codec_id == AV_CODEC_ID_PRORES && |
Carl Eugen Hoyos | 6c18200 | 2014-04-17 12:46:11 | [diff] [blame] | 3033 | AV_RB32(&data[4]) != MKBETAG('i', 'c', 'p', 'f')) |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3034 | offset = 8; |
| 3035 | |
| 3036 | pkt = av_mallocz(sizeof(AVPacket)); |
Vittorio Giovara | 6bdae41 | 2015-03-12 13:04:09 | [diff] [blame] | 3037 | if (!pkt) { |
Michael Niedermayer | b011201 | 2015-03-12 22:50:41 | [diff] [blame] | 3038 | if (pkt_data != data) |
| 3039 | av_freep(&pkt_data); |
Michael Niedermayer | c1cdce5 | 2015-01-24 23:25:01 | [diff] [blame] | 3040 | return AVERROR(ENOMEM); |
Vittorio Giovara | 6bdae41 | 2015-03-12 13:04:09 | [diff] [blame] | 3041 | } |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3042 | /* XXX: prevent data copy... */ |
| 3043 | if (av_new_packet(pkt, pkt_size + offset) < 0) { |
| 3044 | av_free(pkt); |
Michael Niedermayer | 2fe4b62 | 2013-06-03 14:07:06 | [diff] [blame] | 3045 | res = AVERROR(ENOMEM); |
| 3046 | goto fail; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3047 | } |
| 3048 | |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 3049 | if (st->codecpar->codec_id == AV_CODEC_ID_PRORES && offset == 8) { |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3050 | uint8_t *buf = pkt->data; |
| 3051 | bytestream_put_be32(&buf, pkt_size); |
| 3052 | bytestream_put_be32(&buf, MKBETAG('i', 'c', 'p', 'f')); |
| 3053 | } |
| 3054 | |
| 3055 | memcpy(pkt->data + offset, pkt_data, pkt_size); |
| 3056 | |
| 3057 | if (pkt_data != data) |
Michael Niedermayer | 0722b4d | 2013-06-03 14:05:09 | [diff] [blame] | 3058 | av_freep(&pkt_data); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3059 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3060 | pkt->flags = is_keyframe; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3061 | pkt->stream_index = st->index; |
| 3062 | |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3063 | if (additional_size > 0) { |
| 3064 | uint8_t *side_data = av_packet_new_side_data(pkt, |
| 3065 | AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL, |
Michael Niedermayer | a08ebf0 | 2013-02-13 23:55:25 | [diff] [blame] | 3066 | additional_size + 8); |
Michael Niedermayer | fb33bff | 2014-08-15 18:33:21 | [diff] [blame] | 3067 | if (!side_data) { |
Hendrik Leppkes | c2f861c | 2015-10-27 13:35:30 | [diff] [blame] | 3068 | av_packet_unref(pkt); |
Michael Niedermayer | fdda9b4 | 2013-03-19 13:07:39 | [diff] [blame] | 3069 | av_free(pkt); |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3070 | return AVERROR(ENOMEM); |
| 3071 | } |
Michael Niedermayer | a08ebf0 | 2013-02-13 23:55:25 | [diff] [blame] | 3072 | AV_WB64(side_data, additional_id); |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3073 | memcpy(side_data + 8, additional, additional_size); |
| 3074 | } |
| 3075 | |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3076 | if (discard_padding) { |
| 3077 | uint8_t *side_data = av_packet_new_side_data(pkt, |
| 3078 | AV_PKT_DATA_SKIP_SAMPLES, |
| 3079 | 10); |
Michael Niedermayer | fb33bff | 2014-08-15 18:33:21 | [diff] [blame] | 3080 | if (!side_data) { |
Hendrik Leppkes | c2f861c | 2015-10-27 13:35:30 | [diff] [blame] | 3081 | av_packet_unref(pkt); |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3082 | av_free(pkt); |
| 3083 | return AVERROR(ENOMEM); |
| 3084 | } |
James Almer | 70c6a1b | 2016-11-05 20:46:52 | [diff] [blame^] | 3085 | discard_padding = av_rescale_q(discard_padding, |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3086 | (AVRational){1, 1000000000}, |
James Almer | 70c6a1b | 2016-11-05 20:46:52 | [diff] [blame^] | 3087 | (AVRational){1, st->codecpar->sample_rate}); |
| 3088 | if (discard_padding > 0) { |
| 3089 | AV_WL32(side_data + 4, discard_padding); |
| 3090 | } else { |
| 3091 | AV_WL32(side_data, -discard_padding); |
| 3092 | } |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3093 | } |
| 3094 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3095 | if (track->ms_compat) |
| 3096 | pkt->dts = timecode; |
| 3097 | else |
| 3098 | pkt->pts = timecode; |
| 3099 | pkt->pos = pos; |
Hendrik Leppkes | b01891a | 2015-09-29 13:14:59 | [diff] [blame] | 3100 | pkt->duration = lace_duration; |
| 3101 | |
wm4 | 948f3c1 | 2015-09-26 16:13:55 | [diff] [blame] | 3102 | #if FF_API_CONVERGENCE_DURATION |
| 3103 | FF_DISABLE_DEPRECATION_WARNINGS |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 3104 | if (st->codecpar->codec_id == AV_CODEC_ID_SUBRIP) { |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3105 | pkt->convergence_duration = lace_duration; |
| 3106 | } |
wm4 | 948f3c1 | 2015-09-26 16:13:55 | [diff] [blame] | 3107 | FF_ENABLE_DEPRECATION_WARNINGS |
| 3108 | #endif |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3109 | |
Clément Bœsch | 7c1a002 | 2013-01-03 02:06:43 | [diff] [blame] | 3110 | dynarray_add(&matroska->packets, &matroska->num_packets, pkt); |
| 3111 | matroska->prev_pkt = pkt; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3112 | |
| 3113 | return 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3114 | |
Anton Khirnov | 9b6f47c | 2013-05-27 07:44:27 | [diff] [blame] | 3115 | fail: |
| 3116 | if (pkt_data != data) |
| 3117 | av_freep(&pkt_data); |
| 3118 | return res; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3119 | } |
| 3120 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3121 | static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, |
| 3122 | int size, int64_t pos, uint64_t cluster_time, |
Luca Barbato | 7d84310 | 2012-09-17 00:48:02 | [diff] [blame] | 3123 | uint64_t block_duration, int is_keyframe, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3124 | uint8_t *additional, uint64_t additional_id, int additional_size, |
Jan Gerber | f4b1ca9 | 2013-11-14 11:58:28 | [diff] [blame] | 3125 | int64_t cluster_pos, int64_t discard_padding) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3126 | { |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 3127 | uint64_t timecode = AV_NOPTS_VALUE; |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 3128 | MatroskaTrack *track; |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 3129 | int res = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3130 | AVStream *st; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3131 | int16_t block_time; |
| 3132 | uint32_t *lace_size = NULL; |
| 3133 | int n, flags, laces = 0; |
| 3134 | uint64_t num; |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 3135 | int trust_default_duration = 1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3136 | |
Aurelien Jacobs | c1e0113 | 2008-08-05 00:42:52 | [diff] [blame] | 3137 | if ((n = matroska_ebmlnum_uint(matroska, data, size, &num)) < 0) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3138 | av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n"); |
Luca Barbato | 721af29 | 2012-04-30 00:39:31 | [diff] [blame] | 3139 | return n; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3140 | } |
| 3141 | data += n; |
| 3142 | size -= n; |
| 3143 | |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3144 | track = matroska_find_track_by_num(matroska, num); |
Ronald S. Bultje | d31fb1a | 2011-10-29 23:17:51 | [diff] [blame] | 3145 | if (!track || !track->stream) { |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3146 | av_log(matroska->ctx, AV_LOG_INFO, |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 3147 | "Invalid stream %"PRIu64" or size %u\n", num, size); |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 3148 | return AVERROR_INVALIDDATA; |
Ronald S. Bultje | d31fb1a | 2011-10-29 23:17:51 | [diff] [blame] | 3149 | } else if (size <= 3) |
| 3150 | return 0; |
Aurelien Jacobs | 009ecd5 | 2008-08-05 00:40:12 | [diff] [blame] | 3151 | st = track->stream; |
Aurelien Jacobs | 16f97ab | 2008-08-05 00:41:10 | [diff] [blame] | 3152 | if (st->discard >= AVDISCARD_ALL) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3153 | return res; |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 3154 | av_assert1(block_duration != AV_NOPTS_VALUE); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3155 | |
Michael Niedermayer | 729fa55 | 2013-05-19 21:38:01 | [diff] [blame] | 3156 | block_time = sign_extend(AV_RB16(data), 16); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3157 | data += 2; |
| 3158 | flags = *data++; |
| 3159 | size -= 3; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3160 | if (is_keyframe == -1) |
Jean-Daniel Dupas | cc947f0 | 2010-03-31 12:29:58 | [diff] [blame] | 3161 | is_keyframe = flags & 0x80 ? AV_PKT_FLAG_KEY : 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3162 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3163 | if (cluster_time != (uint64_t) -1 && |
| 3164 | (block_time >= 0 || cluster_time >= -block_time)) { |
Michael Niedermayer | b5bc436 | 2016-06-06 02:23:16 | [diff] [blame] | 3165 | timecode = cluster_time + block_time - track->codec_delay_in_track_tb; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3166 | if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE && |
| 3167 | timecode < track->end_timecode) |
Aurelien Jacobs | 82360e6 | 2008-09-09 12:07:10 | [diff] [blame] | 3168 | is_keyframe = 0; /* overlapping subtitles are not key frame */ |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 3169 | if (is_keyframe) |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3170 | av_add_index_entry(st, cluster_pos, timecode, 0, 0, |
| 3171 | AVINDEX_KEYFRAME); |
Aurelien Jacobs | f14a201 | 2008-09-09 11:54:35 | [diff] [blame] | 3172 | } |
| 3173 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3174 | if (matroska->skip_to_keyframe && |
| 3175 | track->type != MATROSKA_TRACK_TYPE_SUBTITLE) { |
Chris Cunningham | d59820f | 2016-07-21 19:01:45 | [diff] [blame] | 3176 | // Compare signed timecodes. Timecode may be negative due to codec delay |
| 3177 | // offset. We don't support timestamps greater than int64_t anyway - see |
| 3178 | // AVPacket's pts. |
Chris Cunningham | 52ec4cc | 2016-07-28 01:33:30 | [diff] [blame] | 3179 | if ((int64_t)timecode < (int64_t)matroska->skip_to_timecode) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3180 | return res; |
Monty Montgomery | f6622f9 | 2013-09-11 06:00:31 | [diff] [blame] | 3181 | if (is_keyframe) |
| 3182 | matroska->skip_to_keyframe = 0; |
| 3183 | else if (!st->skip_to_keyframe) { |
Reimar Döffinger | 4a95876 | 2012-04-13 22:17:30 | [diff] [blame] | 3184 | av_log(matroska->ctx, AV_LOG_ERROR, "File is broken, keyframes not correctly marked!\n"); |
| 3185 | matroska->skip_to_keyframe = 0; |
| 3186 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3187 | } |
| 3188 | |
Dale Curtis | 81e85bc | 2013-03-26 21:12:30 | [diff] [blame] | 3189 | res = matroska_parse_laces(matroska, &data, &size, (flags & 0x06) >> 1, |
Luca Barbato | 2d0e771 | 2012-09-16 23:58:32 | [diff] [blame] | 3190 | &lace_size, &laces); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3191 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3192 | if (res) |
| 3193 | goto end; |
Aurelien Jacobs | eabb8ba | 2007-06-04 22:19:17 | [diff] [blame] | 3194 | |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 3195 | if (track->audio.samplerate == 8000) { |
| 3196 | // If this is needed for more codecs, then add them here |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 3197 | if (st->codecpar->codec_id == AV_CODEC_ID_AC3) { |
| 3198 | if (track->audio.samplerate != st->codecpar->sample_rate || !st->codecpar->frame_size) |
Michael Niedermayer | 6158a3b | 2013-07-15 15:13:45 | [diff] [blame] | 3199 | trust_default_duration = 0; |
| 3200 | } |
| 3201 | } |
| 3202 | |
| 3203 | if (!block_duration && trust_default_duration) |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 3204 | block_duration = track->default_duration * laces / matroska->time_scale; |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3205 | |
| 3206 | if (cluster_time != (uint64_t)-1 && (block_time >= 0 || cluster_time >= -block_time)) |
Luca Barbato | 7d84310 | 2012-09-17 00:48:02 | [diff] [blame] | 3207 | track->end_timecode = |
| 3208 | FFMAX(track->end_timecode, timecode + block_duration); |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3209 | |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3210 | for (n = 0; n < laces; n++) { |
Michael Niedermayer | 5864ce1 | 2012-09-20 19:46:35 | [diff] [blame] | 3211 | int64_t lace_duration = block_duration*(n+1) / laces - block_duration*n / laces; |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3212 | |
| 3213 | if (lace_size[n] > size) { |
| 3214 | av_log(matroska->ctx, AV_LOG_ERROR, "Invalid packet size\n"); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3215 | break; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3216 | } |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3217 | |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 3218 | if ((st->codecpar->codec_id == AV_CODEC_ID_RA_288 || |
| 3219 | st->codecpar->codec_id == AV_CODEC_ID_COOK || |
| 3220 | st->codecpar->codec_id == AV_CODEC_ID_SIPR || |
| 3221 | st->codecpar->codec_id == AV_CODEC_ID_ATRAC3) && |
| 3222 | st->codecpar->block_align && track->audio.sub_packet_size) { |
Luca Barbato | 25a80a9 | 2013-03-29 11:51:51 | [diff] [blame] | 3223 | res = matroska_parse_rm_audio(matroska, track, st, data, |
| 3224 | lace_size[n], |
Michael Niedermayer | a6ec1e4 | 2012-09-20 21:43:20 | [diff] [blame] | 3225 | timecode, pos); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3226 | if (res) |
| 3227 | goto end; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3228 | |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 3229 | } else if (st->codecpar->codec_id == AV_CODEC_ID_WEBVTT) { |
Matthew Heaney | 818ebe9 | 2013-08-08 22:40:03 | [diff] [blame] | 3230 | res = matroska_parse_webvtt(matroska, track, st, |
| 3231 | data, lace_size[n], |
| 3232 | timecode, lace_duration, |
| 3233 | pos); |
| 3234 | if (res) |
| 3235 | goto end; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3236 | } else { |
| 3237 | res = matroska_parse_frame(matroska, track, st, data, lace_size[n], |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3238 | timecode, lace_duration, pos, |
| 3239 | !n ? is_keyframe : 0, |
| 3240 | additional, additional_id, additional_size, |
| 3241 | discard_padding); |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3242 | if (res) |
| 3243 | goto end; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3244 | } |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3245 | |
| 3246 | if (timecode != AV_NOPTS_VALUE) |
Michael Niedermayer | 8c51ea5 | 2012-09-20 18:37:26 | [diff] [blame] | 3247 | timecode = lace_duration ? timecode + lace_duration : AV_NOPTS_VALUE; |
Luca Barbato | c831ebf | 2012-09-16 23:28:13 | [diff] [blame] | 3248 | data += lace_size[n]; |
| 3249 | size -= lace_size[n]; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3250 | } |
| 3251 | |
Dale Curtis | 3116858 | 2012-04-13 04:24:04 | [diff] [blame] | 3252 | end: |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3253 | av_free(lace_size); |
Aurelien Jacobs | a3467f8 | 2008-09-06 23:44:29 | [diff] [blame] | 3254 | return res; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3255 | } |
| 3256 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3257 | static int matroska_parse_cluster_incremental(MatroskaDemuxContext *matroska) |
| 3258 | { |
| 3259 | EbmlList *blocks_list; |
| 3260 | MatroskaBlock *blocks; |
| 3261 | int i, res; |
| 3262 | res = ebml_parse(matroska, |
| 3263 | matroska_cluster_incremental_parsing, |
| 3264 | &matroska->current_cluster); |
| 3265 | if (res == 1) { |
| 3266 | /* New Cluster */ |
| 3267 | if (matroska->current_cluster_pos) |
| 3268 | ebml_level_end(matroska); |
| 3269 | ebml_free(matroska_cluster, &matroska->current_cluster); |
| 3270 | memset(&matroska->current_cluster, 0, sizeof(MatroskaCluster)); |
| 3271 | matroska->current_cluster_num_blocks = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3272 | matroska->current_cluster_pos = avio_tell(matroska->ctx->pb); |
| 3273 | matroska->prev_pkt = NULL; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3274 | /* sizeof the ID which was already read */ |
| 3275 | if (matroska->current_id) |
| 3276 | matroska->current_cluster_pos -= 4; |
| 3277 | res = ebml_parse(matroska, |
| 3278 | matroska_clusters_incremental, |
| 3279 | &matroska->current_cluster); |
| 3280 | /* Try parsing the block again. */ |
| 3281 | if (res == 1) |
| 3282 | res = ebml_parse(matroska, |
| 3283 | matroska_cluster_incremental_parsing, |
| 3284 | &matroska->current_cluster); |
| 3285 | } |
| 3286 | |
| 3287 | if (!res && |
| 3288 | matroska->current_cluster_num_blocks < |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3289 | matroska->current_cluster.blocks.nb_elem) { |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3290 | blocks_list = &matroska->current_cluster.blocks; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3291 | blocks = blocks_list->elem; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3292 | |
| 3293 | matroska->current_cluster_num_blocks = blocks_list->nb_elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3294 | i = blocks_list->nb_elem - 1; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3295 | if (blocks[i].bin.size > 0 && blocks[i].bin.data) { |
| 3296 | int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1; |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3297 | uint8_t* additional = blocks[i].additional.size > 0 ? |
| 3298 | blocks[i].additional.data : NULL; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3299 | if (!blocks[i].non_simple) |
Michael Niedermayer | 3bbf3f7 | 2012-04-23 22:19:55 | [diff] [blame] | 3300 | blocks[i].duration = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3301 | res = matroska_parse_block(matroska, blocks[i].bin.data, |
| 3302 | blocks[i].bin.size, blocks[i].bin.pos, |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3303 | matroska->current_cluster.timecode, |
| 3304 | blocks[i].duration, is_keyframe, |
Vignesh Venkatasubramanian | 30c5c45 | 2013-02-13 21:51:48 | [diff] [blame] | 3305 | additional, blocks[i].additional_id, |
| 3306 | blocks[i].additional.size, |
Vignesh Venkatasubramanian | 7b0a839 | 2013-09-10 18:12:21 | [diff] [blame] | 3307 | matroska->current_cluster_pos, |
| 3308 | blocks[i].discard_padding); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3309 | } |
| 3310 | } |
| 3311 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3312 | return res; |
| 3313 | } |
| 3314 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3315 | static int matroska_parse_cluster(MatroskaDemuxContext *matroska) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3316 | { |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 3317 | MatroskaCluster cluster = { 0 }; |
| 3318 | EbmlList *blocks_list; |
| 3319 | MatroskaBlock *blocks; |
Aurelien Jacobs | 24c3da1 | 2008-09-06 23:39:59 | [diff] [blame] | 3320 | int i, res; |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3321 | int64_t pos; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3322 | |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3323 | if (!matroska->contains_ssa) |
| 3324 | return matroska_parse_cluster_incremental(matroska); |
| 3325 | pos = avio_tell(matroska->ctx->pb); |
Aurelien Jacobs | d5e34dc | 2008-09-28 23:06:25 | [diff] [blame] | 3326 | matroska->prev_pkt = NULL; |
Aurelien Jacobs | 8070203 | 2010-06-11 16:36:51 | [diff] [blame] | 3327 | if (matroska->current_id) |
Aurelien Jacobs | 8bc98ba | 2008-08-25 00:09:08 | [diff] [blame] | 3328 | pos -= 4; /* sizeof the ID which was already read */ |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3329 | res = ebml_parse(matroska, matroska_clusters, &cluster); |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 3330 | blocks_list = &cluster.blocks; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3331 | blocks = blocks_list->elem; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3332 | for (i = 0; i < blocks_list->nb_elem; i++) |
Aurelien Jacobs | 37dd235 | 2010-05-25 22:55:12 | [diff] [blame] | 3333 | if (blocks[i].bin.size > 0 && blocks[i].bin.data) { |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 3334 | int is_keyframe = blocks[i].non_simple ? !blocks[i].reference : -1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3335 | res = matroska_parse_block(matroska, blocks[i].bin.data, |
| 3336 | blocks[i].bin.size, blocks[i].bin.pos, |
| 3337 | cluster.timecode, blocks[i].duration, |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3338 | is_keyframe, NULL, 0, 0, pos, |
| 3339 | blocks[i].discard_padding); |
Aurelien Jacobs | 194d4b4 | 2009-08-10 18:06:14 | [diff] [blame] | 3340 | } |
Aurelien Jacobs | 209472b | 2008-08-05 00:41:05 | [diff] [blame] | 3341 | ebml_free(matroska_cluster, &cluster); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3342 | return res; |
| 3343 | } |
| 3344 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3345 | static int matroska_read_packet(AVFormatContext *s, AVPacket *pkt) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3346 | { |
| 3347 | MatroskaDemuxContext *matroska = s->priv_data; |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 3348 | int ret = 0; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3349 | |
Hendrik Leppkes | 8689d87 | 2011-07-06 17:57:11 | [diff] [blame] | 3350 | while (matroska_deliver_packet(matroska, pkt)) { |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 3351 | int64_t pos = avio_tell(matroska->ctx->pb); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3352 | if (matroska->done) |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 3353 | return (ret < 0) ? ret : AVERROR_EOF; |
Reimar Döffinger | d493170 | 2012-02-13 22:06:19 | [diff] [blame] | 3354 | if (matroska_parse_cluster(matroska) < 0) |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 3355 | ret = matroska_resync(matroska, pos); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3356 | } |
| 3357 | |
Sophia Wang | 8c83062 | 2016-09-27 19:00:29 | [diff] [blame] | 3358 | return ret; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3359 | } |
| 3360 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3361 | static int matroska_read_seek(AVFormatContext *s, int stream_index, |
| 3362 | int64_t timestamp, int flags) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3363 | { |
| 3364 | MatroskaDemuxContext *matroska = s->priv_data; |
Xiaohan Wang | 33301f0 | 2014-11-06 20:59:54 | [diff] [blame] | 3365 | MatroskaTrack *tracks = NULL; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3366 | AVStream *st = s->streams[stream_index]; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 3367 | int i, index, index_sub, index_min; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3368 | |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 3369 | /* Parse the CUES now since we need the index data to seek. */ |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3370 | if (matroska->cues_parsing_deferred > 0) { |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 3371 | matroska->cues_parsing_deferred = 0; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3372 | matroska_parse_cues(matroska); |
Aaron Colwell | 31ad14c | 2011-07-09 05:48:43 | [diff] [blame] | 3373 | } |
| 3374 | |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 3375 | if (!st->nb_index_entries) |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3376 | goto err; |
Aurelien Jacobs | a8fd7e7 | 2008-09-12 00:06:06 | [diff] [blame] | 3377 | timestamp = FFMAX(timestamp, st->index_entries[0].timestamp); |
Aurelien Jacobs | dfbbbdc | 2008-08-24 23:57:29 | [diff] [blame] | 3378 | |
Michael Niedermayer | a392018 | 2014-10-22 02:21:39 | [diff] [blame] | 3379 | if ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3380 | avio_seek(s->pb, st->index_entries[st->nb_index_entries - 1].pos, |
| 3381 | SEEK_SET); |
John Stebbins | cdc2c1c | 2011-07-01 15:57:42 | [diff] [blame] | 3382 | matroska->current_id = 0; |
Michael Niedermayer | a392018 | 2014-10-22 02:21:39 | [diff] [blame] | 3383 | while ((index = av_index_search_timestamp(st, timestamp, flags)) < 0 || index == st->nb_index_entries - 1) { |
Aurelien Jacobs | 0dbddda | 2008-08-27 19:58:55 | [diff] [blame] | 3384 | matroska_clear_queue(matroska); |
| 3385 | if (matroska_parse_cluster(matroska) < 0) |
| 3386 | break; |
| 3387 | } |
Aurelien Jacobs | 6bef5f9 | 2008-08-27 19:57:42 | [diff] [blame] | 3388 | } |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3389 | |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 3390 | matroska_clear_queue(matroska); |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3391 | if (index < 0 || (matroska->cues_parsing_deferred < 0 && index == st->nb_index_entries - 1)) |
| 3392 | goto err; |
Aurelien Jacobs | 243cc4c | 2007-12-29 18:35:38 | [diff] [blame] | 3393 | |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 3394 | index_min = index; |
Xiaohan Wang | 33301f0 | 2014-11-06 20:59:54 | [diff] [blame] | 3395 | tracks = matroska->tracks.elem; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3396 | for (i = 0; i < matroska->tracks.nb_elem; i++) { |
| 3397 | tracks[i].audio.pkt_cnt = 0; |
Reimar Döffinger | b09e506 | 2011-02-26 11:52:01 | [diff] [blame] | 3398 | tracks[i].audio.sub_packet_cnt = 0; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3399 | tracks[i].audio.buf_timecode = AV_NOPTS_VALUE; |
| 3400 | tracks[i].end_timecode = 0; |
| 3401 | if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE && |
Michael Niedermayer | a5034b3 | 2015-11-17 17:19:01 | [diff] [blame] | 3402 | tracks[i].stream && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3403 | tracks[i].stream->discard != AVDISCARD_ALL) { |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3404 | index_sub = av_index_search_timestamp( |
| 3405 | tracks[i].stream, st->index_entries[index].timestamp, |
| 3406 | AVSEEK_FLAG_BACKWARD); |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3407 | while (index_sub >= 0 && |
Michael Niedermayer | b3dfebd | 2014-05-30 03:21:24 | [diff] [blame] | 3408 | index_min > 0 && |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3409 | tracks[i].stream->index_entries[index_sub].pos < st->index_entries[index_min].pos && |
| 3410 | 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] | 3411 | index_min--; |
Aurelien Jacobs | c165825 | 2008-09-09 12:10:25 | [diff] [blame] | 3412 | } |
| 3413 | } |
| 3414 | |
Anton Khirnov | f59d8ff | 2011-02-28 13:57:54 | [diff] [blame] | 3415 | avio_seek(s->pb, st->index_entries[index_min].pos, SEEK_SET); |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3416 | matroska->current_id = 0; |
Michael Niedermayer | 7c00d85 | 2013-02-07 20:34:35 | [diff] [blame] | 3417 | if (flags & AVSEEK_FLAG_ANY) { |
| 3418 | st->skip_to_keyframe = 0; |
| 3419 | matroska->skip_to_timecode = timestamp; |
| 3420 | } else { |
| 3421 | st->skip_to_keyframe = 1; |
| 3422 | matroska->skip_to_timecode = st->index_entries[index].timestamp; |
| 3423 | } |
| 3424 | matroska->skip_to_keyframe = 1; |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3425 | matroska->done = 0; |
Michael Niedermayer | b3d9ab1 | 2014-03-07 22:46:37 | [diff] [blame] | 3426 | matroska->num_levels = 0; |
Anton Khirnov | a2faa95 | 2011-10-16 13:03:30 | [diff] [blame] | 3427 | ff_update_cur_dts(s, st, st->index_entries[index].timestamp); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3428 | return 0; |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3429 | err: |
| 3430 | // slightly hackish but allows proper fallback to |
| 3431 | // the generic seeking code. |
| 3432 | matroska_clear_queue(matroska); |
| 3433 | matroska->current_id = 0; |
Reimar Döffinger | 4a95876 | 2012-04-13 22:17:30 | [diff] [blame] | 3434 | st->skip_to_keyframe = |
Reimar Döffinger | 47e015e | 2012-02-12 13:09:03 | [diff] [blame] | 3435 | matroska->skip_to_keyframe = 0; |
| 3436 | matroska->done = 0; |
| 3437 | matroska->num_levels = 0; |
| 3438 | return -1; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3439 | } |
| 3440 | |
Aurelien Jacobs | f7b9687 | 2008-08-05 00:42:05 | [diff] [blame] | 3441 | static int matroska_read_close(AVFormatContext *s) |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3442 | { |
| 3443 | MatroskaDemuxContext *matroska = s->priv_data; |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 3444 | MatroskaTrack *tracks = matroska->tracks.elem; |
Aurelien Jacobs | 70109c0 | 2008-08-05 00:41:13 | [diff] [blame] | 3445 | int n; |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3446 | |
Aurelien Jacobs | 34c9c1b | 2007-12-29 18:32:47 | [diff] [blame] | 3447 | matroska_clear_queue(matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3448 | |
Keiji Costantini | 84cfce9 | 2014-03-01 16:28:15 | [diff] [blame] | 3449 | for (n = 0; n < matroska->tracks.nb_elem; n++) |
Aurelien Jacobs | 2cbc881 | 2008-08-05 00:40:31 | [diff] [blame] | 3450 | if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO) |
Michael Niedermayer | 6e70e4a | 2015-01-06 11:48:38 | [diff] [blame] | 3451 | av_freep(&tracks[n].audio.buf); |
Dale Curtis | 8336eb6 | 2012-04-19 18:12:24 | [diff] [blame] | 3452 | ebml_free(matroska_cluster, &matroska->current_cluster); |
Aurelien Jacobs | ce6f28b | 2008-08-05 00:40:58 | [diff] [blame] | 3453 | ebml_free(matroska_segment, matroska); |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3454 | |
| 3455 | return 0; |
| 3456 | } |
| 3457 | |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3458 | typedef struct { |
| 3459 | int64_t start_time_ns; |
| 3460 | int64_t end_time_ns; |
| 3461 | int64_t start_offset; |
| 3462 | int64_t end_offset; |
| 3463 | } CueDesc; |
| 3464 | |
| 3465 | /* This function searches all the Cues and returns the CueDesc corresponding the |
| 3466 | * the timestamp ts. Returned CueDesc will be such that start_time_ns <= ts < |
| 3467 | * end_time_ns. All 4 fields will be set to -1 if ts >= file's duration. |
| 3468 | */ |
| 3469 | static CueDesc get_cue_desc(AVFormatContext *s, int64_t ts, int64_t cues_start) { |
| 3470 | MatroskaDemuxContext *matroska = s->priv_data; |
| 3471 | CueDesc cue_desc; |
| 3472 | int i; |
| 3473 | int nb_index_entries = s->streams[0]->nb_index_entries; |
| 3474 | AVIndexEntry *index_entries = s->streams[0]->index_entries; |
| 3475 | if (ts >= matroska->duration * matroska->time_scale) return (CueDesc) {-1, -1, -1, -1}; |
| 3476 | for (i = 1; i < nb_index_entries; i++) { |
| 3477 | if (index_entries[i - 1].timestamp * matroska->time_scale <= ts && |
| 3478 | index_entries[i].timestamp * matroska->time_scale > ts) { |
| 3479 | break; |
| 3480 | } |
| 3481 | } |
| 3482 | --i; |
| 3483 | cue_desc.start_time_ns = index_entries[i].timestamp * matroska->time_scale; |
| 3484 | cue_desc.start_offset = index_entries[i].pos - matroska->segment_start; |
| 3485 | if (i != nb_index_entries - 1) { |
| 3486 | cue_desc.end_time_ns = index_entries[i + 1].timestamp * matroska->time_scale; |
| 3487 | cue_desc.end_offset = index_entries[i + 1].pos - matroska->segment_start; |
| 3488 | } else { |
| 3489 | cue_desc.end_time_ns = matroska->duration * matroska->time_scale; |
| 3490 | // FIXME: this needs special handling for files where Cues appear |
| 3491 | // before Clusters. the current logic assumes Cues appear after |
| 3492 | // Clusters. |
| 3493 | cue_desc.end_offset = cues_start - matroska->segment_start; |
| 3494 | } |
| 3495 | return cue_desc; |
| 3496 | } |
| 3497 | |
| 3498 | static int webm_clusters_start_with_keyframe(AVFormatContext *s) |
| 3499 | { |
| 3500 | MatroskaDemuxContext *matroska = s->priv_data; |
| 3501 | int64_t cluster_pos, before_pos; |
| 3502 | int index, rv = 1; |
| 3503 | if (s->streams[0]->nb_index_entries <= 0) return 0; |
| 3504 | // seek to the first cluster using cues. |
| 3505 | index = av_index_search_timestamp(s->streams[0], 0, 0); |
| 3506 | if (index < 0) return 0; |
| 3507 | cluster_pos = s->streams[0]->index_entries[index].pos; |
| 3508 | before_pos = avio_tell(s->pb); |
| 3509 | while (1) { |
| 3510 | int64_t cluster_id = 0, cluster_length = 0; |
| 3511 | AVPacket *pkt; |
| 3512 | avio_seek(s->pb, cluster_pos, SEEK_SET); |
| 3513 | // read cluster id and length |
| 3514 | ebml_read_num(matroska, matroska->ctx->pb, 4, &cluster_id); |
| 3515 | ebml_read_length(matroska, matroska->ctx->pb, &cluster_length); |
| 3516 | if (cluster_id != 0xF43B675) { // done with all clusters |
| 3517 | break; |
| 3518 | } |
| 3519 | avio_seek(s->pb, cluster_pos, SEEK_SET); |
| 3520 | matroska->current_id = 0; |
| 3521 | matroska_clear_queue(matroska); |
| 3522 | if (matroska_parse_cluster(matroska) < 0 || |
| 3523 | matroska->num_packets <= 0) { |
| 3524 | break; |
| 3525 | } |
| 3526 | pkt = matroska->packets[0]; |
| 3527 | cluster_pos += cluster_length + 12; // 12 is the offset of the cluster id and length. |
| 3528 | if (!(pkt->flags & AV_PKT_FLAG_KEY)) { |
| 3529 | rv = 0; |
| 3530 | break; |
| 3531 | } |
| 3532 | } |
| 3533 | avio_seek(s->pb, before_pos, SEEK_SET); |
| 3534 | return rv; |
| 3535 | } |
| 3536 | |
| 3537 | static int buffer_size_after_time_downloaded(int64_t time_ns, double search_sec, int64_t bps, |
| 3538 | double min_buffer, double* buffer, |
| 3539 | double* sec_to_download, AVFormatContext *s, |
| 3540 | int64_t cues_start) |
| 3541 | { |
| 3542 | double nano_seconds_per_second = 1000000000.0; |
| 3543 | double time_sec = time_ns / nano_seconds_per_second; |
| 3544 | int rv = 0; |
| 3545 | int64_t time_to_search_ns = (int64_t)(search_sec * nano_seconds_per_second); |
| 3546 | int64_t end_time_ns = time_ns + time_to_search_ns; |
| 3547 | double sec_downloaded = 0.0; |
| 3548 | CueDesc desc_curr = get_cue_desc(s, time_ns, cues_start); |
| 3549 | if (desc_curr.start_time_ns == -1) |
| 3550 | return -1; |
| 3551 | *sec_to_download = 0.0; |
| 3552 | |
| 3553 | // Check for non cue start time. |
| 3554 | if (time_ns > desc_curr.start_time_ns) { |
| 3555 | int64_t cue_nano = desc_curr.end_time_ns - time_ns; |
| 3556 | double percent = (double)(cue_nano) / (desc_curr.end_time_ns - desc_curr.start_time_ns); |
| 3557 | double cueBytes = (desc_curr.end_offset - desc_curr.start_offset) * percent; |
| 3558 | double timeToDownload = (cueBytes * 8.0) / bps; |
| 3559 | |
| 3560 | sec_downloaded += (cue_nano / nano_seconds_per_second) - timeToDownload; |
| 3561 | *sec_to_download += timeToDownload; |
| 3562 | |
| 3563 | // Check if the search ends within the first cue. |
| 3564 | if (desc_curr.end_time_ns >= end_time_ns) { |
| 3565 | double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second; |
| 3566 | double percent_to_sub = search_sec / (desc_end_time_sec - time_sec); |
| 3567 | sec_downloaded = percent_to_sub * sec_downloaded; |
| 3568 | *sec_to_download = percent_to_sub * *sec_to_download; |
| 3569 | } |
| 3570 | |
| 3571 | if ((sec_downloaded + *buffer) <= min_buffer) { |
| 3572 | return 1; |
| 3573 | } |
| 3574 | |
| 3575 | // Get the next Cue. |
| 3576 | desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start); |
| 3577 | } |
| 3578 | |
| 3579 | while (desc_curr.start_time_ns != -1) { |
| 3580 | int64_t desc_bytes = desc_curr.end_offset - desc_curr.start_offset; |
| 3581 | int64_t desc_ns = desc_curr.end_time_ns - desc_curr.start_time_ns; |
| 3582 | double desc_sec = desc_ns / nano_seconds_per_second; |
| 3583 | double bits = (desc_bytes * 8.0); |
| 3584 | double time_to_download = bits / bps; |
| 3585 | |
| 3586 | sec_downloaded += desc_sec - time_to_download; |
| 3587 | *sec_to_download += time_to_download; |
| 3588 | |
| 3589 | if (desc_curr.end_time_ns >= end_time_ns) { |
| 3590 | double desc_end_time_sec = desc_curr.end_time_ns / nano_seconds_per_second; |
| 3591 | double percent_to_sub = search_sec / (desc_end_time_sec - time_sec); |
| 3592 | sec_downloaded = percent_to_sub * sec_downloaded; |
| 3593 | *sec_to_download = percent_to_sub * *sec_to_download; |
| 3594 | |
| 3595 | if ((sec_downloaded + *buffer) <= min_buffer) |
| 3596 | rv = 1; |
| 3597 | break; |
| 3598 | } |
| 3599 | |
| 3600 | if ((sec_downloaded + *buffer) <= min_buffer) { |
| 3601 | rv = 1; |
| 3602 | break; |
| 3603 | } |
| 3604 | |
| 3605 | desc_curr = get_cue_desc(s, desc_curr.end_time_ns, cues_start); |
| 3606 | } |
| 3607 | *buffer = *buffer + sec_downloaded; |
| 3608 | return rv; |
| 3609 | } |
| 3610 | |
| 3611 | /* This function computes the bandwidth of the WebM file with the help of |
| 3612 | * buffer_size_after_time_downloaded() function. Both of these functions are |
| 3613 | * adapted from WebM Tools project and are adapted to work with FFmpeg's |
| 3614 | * Matroska parsing mechanism. |
| 3615 | * |
| 3616 | * Returns the bandwidth of the file on success; -1 on error. |
| 3617 | * */ |
| 3618 | static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t cues_start) |
| 3619 | { |
| 3620 | MatroskaDemuxContext *matroska = s->priv_data; |
| 3621 | AVStream *st = s->streams[0]; |
| 3622 | double bandwidth = 0.0; |
Michael Niedermayer | e240d01 | 2014-07-15 22:06:15 | [diff] [blame] | 3623 | int i; |
| 3624 | |
| 3625 | for (i = 0; i < st->nb_index_entries; i++) { |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3626 | int64_t prebuffer_ns = 1000000000; |
| 3627 | int64_t time_ns = st->index_entries[i].timestamp * matroska->time_scale; |
| 3628 | double nano_seconds_per_second = 1000000000.0; |
| 3629 | int64_t prebuffered_ns = time_ns + prebuffer_ns; |
| 3630 | double prebuffer_bytes = 0.0; |
| 3631 | int64_t temp_prebuffer_ns = prebuffer_ns; |
| 3632 | int64_t pre_bytes, pre_ns; |
| 3633 | double pre_sec, prebuffer, bits_per_second; |
| 3634 | CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start); |
| 3635 | |
| 3636 | // Start with the first Cue. |
| 3637 | CueDesc desc_end = desc_beg; |
| 3638 | |
| 3639 | // Figure out how much data we have downloaded for the prebuffer. This will |
| 3640 | // be used later to adjust the bits per sample to try. |
| 3641 | while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) { |
| 3642 | // Prebuffered the entire Cue. |
| 3643 | prebuffer_bytes += desc_end.end_offset - desc_end.start_offset; |
| 3644 | temp_prebuffer_ns -= desc_end.end_time_ns - desc_end.start_time_ns; |
| 3645 | desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start); |
| 3646 | } |
| 3647 | if (desc_end.start_time_ns == -1) { |
| 3648 | // The prebuffer is larger than the duration. |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3649 | if (matroska->duration * matroska->time_scale >= prebuffered_ns) |
| 3650 | return -1; |
| 3651 | bits_per_second = 0.0; |
| 3652 | } else { |
| 3653 | // The prebuffer ends in the last Cue. Estimate how much data was |
| 3654 | // prebuffered. |
| 3655 | pre_bytes = desc_end.end_offset - desc_end.start_offset; |
| 3656 | pre_ns = desc_end.end_time_ns - desc_end.start_time_ns; |
| 3657 | pre_sec = pre_ns / nano_seconds_per_second; |
| 3658 | prebuffer_bytes += |
| 3659 | pre_bytes * ((temp_prebuffer_ns / nano_seconds_per_second) / pre_sec); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3660 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3661 | prebuffer = prebuffer_ns / nano_seconds_per_second; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3662 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3663 | // Set this to 0.0 in case our prebuffer buffers the entire video. |
| 3664 | bits_per_second = 0.0; |
| 3665 | do { |
| 3666 | int64_t desc_bytes = desc_end.end_offset - desc_beg.start_offset; |
| 3667 | int64_t desc_ns = desc_end.end_time_ns - desc_beg.start_time_ns; |
| 3668 | double desc_sec = desc_ns / nano_seconds_per_second; |
| 3669 | double calc_bits_per_second = (desc_bytes * 8) / desc_sec; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3670 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3671 | // Drop the bps by the percentage of bytes buffered. |
| 3672 | double percent = (desc_bytes - prebuffer_bytes) / desc_bytes; |
| 3673 | double mod_bits_per_second = calc_bits_per_second * percent; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3674 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3675 | if (prebuffer < desc_sec) { |
| 3676 | double search_sec = |
| 3677 | (double)(matroska->duration * matroska->time_scale) / nano_seconds_per_second; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3678 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3679 | // Add 1 so the bits per second should be a little bit greater than file |
| 3680 | // datarate. |
| 3681 | int64_t bps = (int64_t)(mod_bits_per_second) + 1; |
| 3682 | const double min_buffer = 0.0; |
| 3683 | double buffer = prebuffer; |
| 3684 | double sec_to_download = 0.0; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3685 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3686 | int rv = buffer_size_after_time_downloaded(prebuffered_ns, search_sec, bps, |
| 3687 | min_buffer, &buffer, &sec_to_download, |
| 3688 | s, cues_start); |
| 3689 | if (rv < 0) { |
| 3690 | return -1; |
| 3691 | } else if (rv == 0) { |
| 3692 | bits_per_second = (double)(bps); |
| 3693 | break; |
| 3694 | } |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3695 | } |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3696 | |
Vignesh Venkatasubramanian | b1071db | 2014-10-01 17:13:31 | [diff] [blame] | 3697 | desc_end = get_cue_desc(s, desc_end.end_time_ns, cues_start); |
| 3698 | } while (desc_end.start_time_ns != -1); |
| 3699 | } |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3700 | if (bandwidth < bits_per_second) bandwidth = bits_per_second; |
| 3701 | } |
| 3702 | return (int64_t)bandwidth; |
| 3703 | } |
| 3704 | |
| 3705 | static int webm_dash_manifest_cues(AVFormatContext *s) |
| 3706 | { |
| 3707 | MatroskaDemuxContext *matroska = s->priv_data; |
| 3708 | EbmlList *seekhead_list = &matroska->seekhead; |
| 3709 | MatroskaSeekhead *seekhead = seekhead_list->elem; |
| 3710 | char *buf; |
Vignesh Venkatasubramanian | 080acf7 | 2014-08-25 16:15:13 | [diff] [blame] | 3711 | int64_t cues_start = -1, cues_end = -1, before_pos, bandwidth; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3712 | int i; |
| 3713 | |
| 3714 | // determine cues start and end positions |
| 3715 | for (i = 0; i < seekhead_list->nb_elem; i++) |
| 3716 | if (seekhead[i].id == MATROSKA_ID_CUES) |
| 3717 | break; |
| 3718 | |
| 3719 | if (i >= seekhead_list->nb_elem) return -1; |
| 3720 | |
| 3721 | before_pos = avio_tell(matroska->ctx->pb); |
| 3722 | cues_start = seekhead[i].pos + matroska->segment_start; |
| 3723 | if (avio_seek(matroska->ctx->pb, cues_start, SEEK_SET) == cues_start) { |
Vignesh Venkatasubramanian | 8acb765 | 2014-10-01 17:13:30 | [diff] [blame] | 3724 | // cues_end is computed as cues_start + cues_length + length of the |
| 3725 | // Cues element ID + EBML length of the Cues element. cues_end is |
| 3726 | // inclusive and the above sum is reduced by 1. |
| 3727 | uint64_t cues_length = 0, cues_id = 0, bytes_read = 0; |
| 3728 | bytes_read += ebml_read_num(matroska, matroska->ctx->pb, 4, &cues_id); |
| 3729 | bytes_read += ebml_read_length(matroska, matroska->ctx->pb, &cues_length); |
| 3730 | cues_end = cues_start + cues_length + bytes_read - 1; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3731 | } |
| 3732 | avio_seek(matroska->ctx->pb, before_pos, SEEK_SET); |
Vignesh Venkatasubramanian | 080acf7 | 2014-08-25 16:15:13 | [diff] [blame] | 3733 | if (cues_start == -1 || cues_end == -1) return -1; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3734 | |
| 3735 | // parse the cues |
| 3736 | matroska_parse_cues(matroska); |
| 3737 | |
| 3738 | // cues start |
Reimar Döffinger | a0941c8 | 2014-07-29 19:10:39 | [diff] [blame] | 3739 | av_dict_set_int(&s->streams[0]->metadata, CUES_START, cues_start, 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3740 | |
| 3741 | // cues end |
Reimar Döffinger | a0941c8 | 2014-07-29 19:10:39 | [diff] [blame] | 3742 | av_dict_set_int(&s->streams[0]->metadata, CUES_END, cues_end, 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3743 | |
| 3744 | // bandwidth |
| 3745 | bandwidth = webm_dash_manifest_compute_bandwidth(s, cues_start); |
| 3746 | if (bandwidth < 0) return -1; |
Reimar Döffinger | a0941c8 | 2014-07-29 19:10:39 | [diff] [blame] | 3747 | av_dict_set_int(&s->streams[0]->metadata, BANDWIDTH, bandwidth, 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3748 | |
| 3749 | // check if all clusters start with key frames |
Reimar Döffinger | a0941c8 | 2014-07-29 19:10:39 | [diff] [blame] | 3750 | av_dict_set_int(&s->streams[0]->metadata, CLUSTER_KEYFRAME, webm_clusters_start_with_keyframe(s), 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3751 | |
| 3752 | // store cue point timestamps as a comma separated list for checking subsegment alignment in |
| 3753 | // the muxer. assumes that each timestamp cannot be more than 20 characters long. |
Michael Niedermayer | a1062e1 | 2015-01-24 23:26:53 | [diff] [blame] | 3754 | buf = av_malloc_array(s->streams[0]->nb_index_entries, 20 * sizeof(char)); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3755 | if (!buf) return -1; |
| 3756 | strcpy(buf, ""); |
| 3757 | for (i = 0; i < s->streams[0]->nb_index_entries; i++) { |
| 3758 | snprintf(buf, (i + 1) * 20 * sizeof(char), |
| 3759 | "%s%" PRId64, buf, s->streams[0]->index_entries[i].timestamp); |
| 3760 | if (i != s->streams[0]->nb_index_entries - 1) |
| 3761 | strncat(buf, ",", sizeof(char)); |
| 3762 | } |
| 3763 | av_dict_set(&s->streams[0]->metadata, CUE_TIMESTAMPS, buf, 0); |
| 3764 | av_free(buf); |
| 3765 | |
| 3766 | return 0; |
| 3767 | } |
| 3768 | |
| 3769 | static int webm_dash_manifest_read_header(AVFormatContext *s) |
| 3770 | { |
| 3771 | char *buf; |
| 3772 | int ret = matroska_read_header(s); |
| 3773 | MatroskaTrack *tracks; |
| 3774 | MatroskaDemuxContext *matroska = s->priv_data; |
| 3775 | if (ret) { |
| 3776 | av_log(s, AV_LOG_ERROR, "Failed to read file headers\n"); |
| 3777 | return -1; |
| 3778 | } |
| 3779 | |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 3780 | if (!matroska->is_live) { |
| 3781 | buf = av_asprintf("%g", matroska->duration); |
| 3782 | if (!buf) return AVERROR(ENOMEM); |
| 3783 | av_dict_set(&s->streams[0]->metadata, DURATION, buf, 0); |
| 3784 | av_free(buf); |
| 3785 | |
| 3786 | // initialization range |
| 3787 | // 5 is the offset of Cluster ID. |
| 3788 | av_dict_set_int(&s->streams[0]->metadata, INITIALIZATION_RANGE, avio_tell(s->pb) - 5, 0); |
| 3789 | } |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3790 | |
| 3791 | // basename of the file |
| 3792 | buf = strrchr(s->filename, '/'); |
Vignesh Venkatasubramanian | 233f3ad | 2014-10-09 21:56:47 | [diff] [blame] | 3793 | av_dict_set(&s->streams[0]->metadata, FILENAME, buf ? ++buf : s->filename, 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3794 | |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3795 | // track number |
| 3796 | tracks = matroska->tracks.elem; |
Reimar Döffinger | a0941c8 | 2014-07-29 19:10:39 | [diff] [blame] | 3797 | av_dict_set_int(&s->streams[0]->metadata, TRACK_NUMBER, tracks[0].num, 0); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3798 | |
| 3799 | // parse the cues and populate Cue related fields |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 3800 | return matroska->is_live ? 0 : webm_dash_manifest_cues(s); |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3801 | } |
| 3802 | |
| 3803 | static int webm_dash_manifest_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 3804 | { |
| 3805 | return AVERROR_EOF; |
| 3806 | } |
| 3807 | |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 3808 | #define OFFSET(x) offsetof(MatroskaDemuxContext, x) |
| 3809 | static const AVOption options[] = { |
Clément Bœsch | 43ecec0 | 2015-11-21 21:05:07 | [diff] [blame] | 3810 | { "live", "flag indicating that the input is a live file that only has the headers.", OFFSET(is_live), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM }, |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 3811 | { NULL }, |
| 3812 | }; |
| 3813 | |
| 3814 | static const AVClass webm_dash_class = { |
| 3815 | .class_name = "WebM DASH Manifest demuxer", |
| 3816 | .item_name = av_default_item_name, |
| 3817 | .option = options, |
| 3818 | .version = LIBAVUTIL_VERSION_INT, |
| 3819 | }; |
| 3820 | |
Diego Elio Pettenò | 66355be | 2011-01-25 22:03:28 | [diff] [blame] | 3821 | AVInputFormat ff_matroska_demuxer = { |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 3822 | .name = "matroska,webm", |
Diego Biurrun | 6774247 | 2012-07-24 21:51:41 | [diff] [blame] | 3823 | .long_name = NULL_IF_CONFIG_SMALL("Matroska / WebM"), |
Vittorio Giovara | f2583bc | 2014-07-23 08:49:24 | [diff] [blame] | 3824 | .extensions = "mkv,mk3d,mka,mks", |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 3825 | .priv_data_size = sizeof(MatroskaDemuxContext), |
| 3826 | .read_probe = matroska_probe, |
| 3827 | .read_header = matroska_read_header, |
| 3828 | .read_packet = matroska_read_packet, |
| 3829 | .read_close = matroska_read_close, |
| 3830 | .read_seek = matroska_read_seek, |
Luca Barbato | fa38573 | 2014-03-13 21:14:43 | [diff] [blame] | 3831 | .mime_type = "audio/webm,audio/x-matroska,video/webm,video/x-matroska" |
David Conrad | b061d89 | 2007-06-04 22:10:54 | [diff] [blame] | 3832 | }; |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3833 | |
| 3834 | AVInputFormat ff_webm_dash_manifest_demuxer = { |
| 3835 | .name = "webm_dash_manifest", |
| 3836 | .long_name = NULL_IF_CONFIG_SMALL("WebM DASH Manifest"), |
| 3837 | .priv_data_size = sizeof(MatroskaDemuxContext), |
| 3838 | .read_header = webm_dash_manifest_read_header, |
| 3839 | .read_packet = webm_dash_manifest_read_packet, |
| 3840 | .read_close = matroska_read_close, |
Vignesh Venkatasubramanian | 2171b7c | 2015-03-31 23:51:57 | [diff] [blame] | 3841 | .priv_class = &webm_dash_class, |
Vignesh Venkatasubramanian | 5a20656 | 2014-07-07 19:52:37 | [diff] [blame] | 3842 | }; |