mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
avformat/bink: use ff_get_extradata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e93bc3efbf
commit
5ce04c54dd
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user