mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
avcodec/crystalhd: allocate padding for extradata
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b06741d267
commit
bf718bdf12
1 changed files with 1 additions and 1 deletions
|
|
@ -419,7 +419,7 @@ static av_cold int init(AVCodecContext *avctx)
|
|||
int dummy_int;
|
||||
|
||||
/* Back up the extradata so it can be restored at close time. */
|
||||
priv->orig_extradata = av_malloc(avctx->extradata_size);
|
||||
priv->orig_extradata = av_malloc(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!priv->orig_extradata) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Failed to allocate copy of extradata\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue