lavf/hevc: pad the RBSP buffer as required by the bistream reader

This commit is contained in:
Anton Khirnov 2015-06-30 20:28:23 +02:00
parent 1761ab838c
commit 0e7c0ec344
1 changed files with 1 additions and 1 deletions

View File

@ -636,7 +636,7 @@ static uint8_t *nal_unit_extract_rbsp(const uint8_t *src, uint32_t src_len,
uint8_t *dst;
uint32_t i, len;
dst = av_malloc(src_len);
dst = av_malloc(src_len + FF_INPUT_BUFFER_PADDING_SIZE);
if (!dst)
return NULL;