mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
lclenc: allocate FF_INPUT_BUFFER_PADDING_SIZE for extradata
Also check return value. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
573018c61f
commit
6dbcecd78e
@ -137,7 +137,9 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
|
||||
av_assert0(avctx->width && avctx->height);
|
||||
|
||||
avctx->extradata= av_mallocz(8);
|
||||
avctx->extradata = av_mallocz(8 + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!avctx->extradata)
|
||||
return AVERROR(ENOMEM);
|
||||
avctx->coded_frame= &c->pic;
|
||||
|
||||
c->compression = avctx->compression_level == FF_COMPRESSION_DEFAULT ?
|
||||
|
Loading…
Reference in New Issue
Block a user