mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 06:50:44 +00:00
Merge commit '210921722bf828b3b895ebcbc34374e6c4452c6f'
* commit '210921722bf828b3b895ebcbc34374e6c4452c6f':
imc: add required padding for GetBitContext buffer
Conflicts:
libavcodec/imc.c
See: 7444cf9a9c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
551813a963
@ -1021,7 +1021,7 @@ static int imc_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
|
|
||||||
IMCContext *q = avctx->priv_data;
|
IMCContext *q = avctx->priv_data;
|
||||||
|
|
||||||
LOCAL_ALIGNED_16(uint16_t, buf16, [IMC_BLOCK_SIZE / 2 + FF_INPUT_BUFFER_PADDING_SIZE/2]);
|
LOCAL_ALIGNED_16(uint16_t, buf16, [(IMC_BLOCK_SIZE + FF_INPUT_BUFFER_PADDING_SIZE) / 2]);
|
||||||
|
|
||||||
if (buf_size < IMC_BLOCK_SIZE * avctx->channels) {
|
if (buf_size < IMC_BLOCK_SIZE * avctx->channels) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "frame too small!\n");
|
av_log(avctx, AV_LOG_ERROR, "frame too small!\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user