Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/mpeg4_unpack_bframes_bsf.c')
-rw-r--r--libavcodec/mpeg4_unpack_bframes_bsf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg4_unpack_bframes_bsf.c b/libavcodec/mpeg4_unpack_bframes_bsf.c
index e85ea08b08..df49d3f407 100644
--- a/libavcodec/mpeg4_unpack_bframes_bsf.c
+++ b/libavcodec/mpeg4_unpack_bframes_bsf.c
@@ -73,11 +73,11 @@ static void scan_buffer(const uint8_t *buf, int buf_size,
/* allocate new buffer and copy size bytes from src */
static uint8_t *create_new_buffer(const uint8_t *src, int size) {
- uint8_t *dst = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
+ uint8_t *dst = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
if (dst) {
memcpy(dst, src, size);
- memset(dst + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
+ memset(dst + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
}
return dst;