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