mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-24 21:14:42 +00:00
avcodec/vp3: Check init_get_bits8() for failure
Fixes CID1322316 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f5a6a8336f
commit
cbd3cd8eb2
@ -2475,6 +2475,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
|
|||||||
const uint8_t *header_start[3];
|
const uint8_t *header_start[3];
|
||||||
int header_len[3];
|
int header_len[3];
|
||||||
int i;
|
int i;
|
||||||
|
int ret;
|
||||||
|
|
||||||
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
|
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
|
||||||
|
|
||||||
@ -2494,7 +2495,9 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
|
|||||||
for (i = 0; i < 3; i++) {
|
for (i = 0; i < 3; i++) {
|
||||||
if (header_len[i] <= 0)
|
if (header_len[i] <= 0)
|
||||||
continue;
|
continue;
|
||||||
init_get_bits8(&gb, header_start[i], header_len[i]);
|
ret = init_get_bits8(&gb, header_start[i], header_len[i]);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
ptype = get_bits(&gb, 8);
|
ptype = get_bits(&gb, 8);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user