From 2d3305e4f41f2c3fdf22e729d4ec753fb885a8f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sun, 30 Dec 2012 22:20:18 +0100 Subject: [PATCH] lavc/avcodec: fix FF_INPUT_/BUFFER_/PADDING_SIZE typo. --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 11c50cacbf..b475b27e27 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4923,7 +4923,7 @@ void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size); /** * Same behaviour av_fast_malloc but the buffer has additional - * FF_INPUT_PADDING_SIZE at the end which will will always be 0. + * FF_INPUT_BUFFER_PADDING_SIZE at the end which will will always be 0. * * In addition the whole buffer will initially and after resizes * be 0-initialized so that no uninitialized data will ever appear.