diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-30 22:20:18 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-30 22:22:18 +0100 |
commit | 2d3305e4f41f2c3fdf22e729d4ec753fb885a8f1 (patch) | |
tree | 7883510e52e9a71c75e4f541f2a7dc8ebfda7388 /libavcodec | |
parent | 9db5f82032b1629f5587c18d3152098507a7da35 (diff) | |
download | ffmpeg-2d3305e4f41f2c3fdf22e729d4ec753fb885a8f1.tar.gz |
lavc/avcodec: fix FF_INPUT_/BUFFER_/PADDING_SIZE typo.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. |