mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 08:42:39 +00:00
ra288: log an error message when output buffer is too small.
also return AVERROR(EINVAL) instead of -1.
This commit is contained in:
parent
fa6be04bf7
commit
8f8f5ae991
@ -181,8 +181,10 @@ static int ra288_decode_frame(AVCodecContext * avctx, void *data,
|
||||
|
||||
out_size = RA288_BLOCK_SIZE * RA288_BLOCKS_PER_FRAME *
|
||||
av_get_bytes_per_sample(avctx->sample_fmt);
|
||||
if (*data_size < out_size)
|
||||
return -1;
|
||||
if (*data_size < out_size) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Output buffer is too small\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
init_get_bits(&gb, buf, avctx->block_align * 8);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user