mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avformat/idcin: use ff_get_extradata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d8d5258bb7
commit
215759a925
@ -205,15 +205,8 @@ static int idcin_read_header(AVFormatContext *s)
|
||||
st->codec->height = height;
|
||||
|
||||
/* load up the Huffman tables into extradata */
|
||||
if (ff_alloc_extradata(st->codec, HUFFMAN_TABLE_SIZE))
|
||||
return AVERROR(ENOMEM);
|
||||
ret = avio_read(pb, st->codec->extradata, HUFFMAN_TABLE_SIZE);
|
||||
if (ret < 0) {
|
||||
if ((ret = ff_get_extradata(st->codec, pb, HUFFMAN_TABLE_SIZE)) < 0)
|
||||
return ret;
|
||||
} else if (ret != HUFFMAN_TABLE_SIZE) {
|
||||
av_log(s, AV_LOG_ERROR, "incomplete header\n");
|
||||
return AVERROR(EIO);
|
||||
}
|
||||
|
||||
if (idcin->audio_present) {
|
||||
idcin->audio_present = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user