Commit a7af002b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/oggparseogm: Enable parser for mpeg4

Fixes regression with iJi.ogv
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent bd1d67ef
......@@ -57,6 +57,8 @@ ogm_header(AVFormatContext *s, int idx)
tag = bytestream2_get_le32(&p);
st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tag);
st->codec->codec_tag = tag;
if (st->codec->codec_id == AV_CODEC_ID_MPEG4)
st->need_parsing = AVSTREAM_PARSE_HEADERS;
} else if (bytestream2_peek_byte(&p) == 't') {
st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
st->codec->codec_id = AV_CODEC_ID_TEXT;
......
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