Commit 5ce04c54 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/bink: use ff_get_extradata()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e93bc3ef
......@@ -116,9 +116,8 @@ static int read_header(AVFormatContext *s)
vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
vst->codec->codec_id = AV_CODEC_ID_BINKVIDEO;
if (ff_alloc_extradata(vst->codec, 4))
if (ff_get_extradata(vst->codec, pb, 4) < 0)
return AVERROR(ENOMEM);
avio_read(pb, vst->codec->extradata, 4);
bink->num_audio_tracks = avio_rl32(pb);
......
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