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