mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
xvid: Check memory allocation
This commit is contained in:
parent
9fb483fede
commit
fef2f4722b
@ -276,6 +276,8 @@ static int xvid_strip_vol_header(AVCodecContext *avctx, AVPacket *pkt,
|
||||
/* We need to store the header, so extract it */
|
||||
if (!avctx->extradata) {
|
||||
avctx->extradata = av_malloc(vo_len);
|
||||
if (!avctx->extradata)
|
||||
return AVERROR(ENOMEM);
|
||||
memcpy(avctx->extradata, pkt->data, vo_len);
|
||||
avctx->extradata_size = vo_len;
|
||||
}
|
||||
@ -594,11 +596,15 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx)
|
||||
if (avctx->intra_matrix) {
|
||||
intra = avctx->intra_matrix;
|
||||
x->intra_matrix = av_malloc(sizeof(unsigned char) * 64);
|
||||
if (!x->intra_matrix)
|
||||
return AVERROR(ENOMEM);
|
||||
} else
|
||||
intra = NULL;
|
||||
if (avctx->inter_matrix) {
|
||||
inter = avctx->inter_matrix;
|
||||
x->inter_matrix = av_malloc(sizeof(unsigned char) * 64);
|
||||
if (!x->inter_matrix)
|
||||
return AVERROR(ENOMEM);
|
||||
} else
|
||||
inter = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user