mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/rl2: use ff_get_extradata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0b9ca70243
commit
61883a2e89
@ -127,13 +127,9 @@ static av_cold int rl2_read_header(AVFormatContext *s)
|
||||
if(signature == RLV3_TAG && back_size > 0)
|
||||
st->codec->extradata_size += back_size;
|
||||
|
||||
if(ff_alloc_extradata(st->codec, st->codec->extradata_size))
|
||||
if(ff_get_extradata(st->codec, pb, st->codec->extradata_size) < 0)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
if(avio_read(pb,st->codec->extradata,st->codec->extradata_size) !=
|
||||
st->codec->extradata_size)
|
||||
return AVERROR(EIO);
|
||||
|
||||
/** setup audio stream if present */
|
||||
if(sound_rate){
|
||||
if (!channels || channels > 42) {
|
||||
|
Loading…
Reference in New Issue
Block a user