Skip to content

Commit

Permalink
Do not decode RV30 files if the extradata is too small
Browse files Browse the repository at this point in the history
Signed-off-by: Diego Biurrun <[email protected]>
  • Loading branch information
funman authored and DonDiego committed Jul 16, 2011
1 parent b8783b9 commit 289c600
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libavcodec/rv30.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ static av_cold int rv30_decode_init(AVCodecContext *avctx)
if(avctx->extradata_size - 8 < (r->rpr - 1) * 2){
av_log(avctx, AV_LOG_ERROR, "Insufficient extradata - need at least %d bytes, got %d\n",
6 + r->rpr * 2, avctx->extradata_size);
return EINVAL;
}
r->parse_slice_header = rv30_parse_slice_header;
r->decode_intra_types = rv30_decode_intra_types;
Expand Down

0 comments on commit 289c600

Please sign in to comment.