]> git.sesse.net Git - ffmpeg/commitdiff
lavc/avcodec: fix FF_INPUT_/BUFFER_/PADDING_SIZE typo.
authorClément Bœsch <ubitux@gmail.com>
Sun, 30 Dec 2012 21:20:18 +0000 (22:20 +0100)
committerClément Bœsch <ubitux@gmail.com>
Sun, 30 Dec 2012 21:22:18 +0000 (22:22 +0100)
libavcodec/avcodec.h

index 11c50cacbfefd19d60d99d16ceaf7d0a08bcfc19..b475b27e276a080546a20017e393b94b108b8e1a 100644 (file)
@@ -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.