Commit 9d297641 authored by Paul B Mahol's avatar Paul B Mahol

avformat/sdr2: h264 stream needs parsing

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 9f2a3bce
......@@ -51,6 +51,7 @@ static int sdr2_read_header(AVFormatContext *s)
st->codec->width = avio_rl32(s->pb);
st->codec->height = avio_rl32(s->pb);
st->codec->codec_id = AV_CODEC_ID_H264;
st->need_parsing = AVSTREAM_PARSE_FULL;
ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
ast->codec->channels = 1;
......
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