Commit 0cab0931 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/matroskadec: remove now duplicate doctype check

See: b8d7f318
See: d9fe6b92Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9a0f60a0
......@@ -2088,8 +2088,7 @@ static int matroska_read_header(AVFormatContext *s)
if (ebml.version > EBML_VERSION ||
ebml.max_size > sizeof(uint64_t) ||
ebml.id_length > sizeof(uint32_t) ||
ebml.doctype_version > 3 ||
!ebml.doctype) {
ebml.doctype_version > 3) {
av_log(matroska->ctx, AV_LOG_ERROR,
"EBML header using unsupported features\n"
"(EBML version %"PRIu64", doctype %s, doc version %"PRIu64")\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment