summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/ffmpeg/libavformat/westwood_vqa.c
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/ffmpeg/libavformat/westwood_vqa.c')
-rw-r--r--chromium/third_party/ffmpeg/libavformat/westwood_vqa.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/chromium/third_party/ffmpeg/libavformat/westwood_vqa.c b/chromium/third_party/ffmpeg/libavformat/westwood_vqa.c
index 1d4bb5ad6c6..2a988ad3900 100644
--- a/chromium/third_party/ffmpeg/libavformat/westwood_vqa.c
+++ b/chromium/third_party/ffmpeg/libavformat/westwood_vqa.c
@@ -101,13 +101,9 @@ static int wsvqa_read_header(AVFormatContext *s)
avio_seek(pb, 20, SEEK_SET);
/* the VQA header needs to go to the decoder */
- if (ff_alloc_extradata(st->codec, VQA_HEADER_SIZE))
+ if (ff_get_extradata(st->codec, pb, VQA_HEADER_SIZE) < 0)
return AVERROR(ENOMEM);
header = (uint8_t *)st->codec->extradata;
- if (avio_read(pb, st->codec->extradata, VQA_HEADER_SIZE) !=
- VQA_HEADER_SIZE) {
- return AVERROR(EIO);
- }
st->codec->width = AV_RL16(&header[6]);
st->codec->height = AV_RL16(&header[8]);
fps = header[12];