summaryrefslogtreecommitdiff
path: root/libavcodec/cbs_h2645.c
diff options
context:
space:
mode:
authorThierry Foucu <tfoucu@gmail.com>2019-08-26 13:50:40 -0700
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-08-28 21:57:48 +0200
commita80fdbcf13919d1280278e71c4ae29e760fb82ab (patch)
tree62708e89dc072375950dea5fa7ccf46bd6226c9b /libavcodec/cbs_h2645.c
parentffd65c8862e1cb9f49f71ab30640ac0e8bdfe7ce (diff)
lavc/cbs_h2645: Use av_realloc instead of av_malloc
Follow the description of av_realloc, the memory needs to be allocated by av_realloc.
Diffstat (limited to 'libavcodec/cbs_h2645.c')
-rw-r--r--libavcodec/cbs_h2645.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbs_h2645.c b/libavcodec/cbs_h2645.c
index 69ea6dc6bb..8da8421e47 100644
--- a/libavcodec/cbs_h2645.c
+++ b/libavcodec/cbs_h2645.c
@@ -1457,7 +1457,7 @@ static int cbs_h2645_assemble_fragment(CodedBitstreamContext *ctx,
max_size += 3 + frag->units[i].data_size * 3 / 2;
}
- data = av_malloc(max_size + AV_INPUT_BUFFER_PADDING_SIZE);
+ data = av_realloc(NULL, max_size + AV_INPUT_BUFFER_PADDING_SIZE);
if (!data)
return AVERROR(ENOMEM);