mirror of https://git.ffmpeg.org/ffmpeg.git
h264_mp4toannexb_bsf: return a padded buffer
The code using the returned buffer might expect it to be FF_INPUT_BUFFER_PADDING_SIZE padded as any other avpacket.
This commit is contained in:
parent
8d929afd25
commit
9e80eda26d
|
@ -40,7 +40,7 @@ static int alloc_and_copy(uint8_t **poutbuf, int *poutbuf_size,
|
|||
void *tmp;
|
||||
|
||||
*poutbuf_size += sps_pps_size + in_size + nal_header_size;
|
||||
tmp = av_realloc(*poutbuf, *poutbuf_size);
|
||||
tmp = av_realloc(*poutbuf, *poutbuf_size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!tmp)
|
||||
return AVERROR(ENOMEM);
|
||||
*poutbuf = tmp;
|
||||
|
|
Loading…
Reference in New Issue