diff imgutils.h @ 25:63d8168fa16a libavcore

Cosmetics: use plural form for *linesizes arguments of av_image_copy(), more consistent with the rest of the API and more semantically correct.
author stefano
date Tue, 07 Sep 2010 21:24:06 +0000
parents c063c88b1309
children ed20007aabe2
line wrap: on
line diff
--- a/imgutils.h	Tue Sep 07 21:23:55 2010 +0000
+++ b/imgutils.h	Tue Sep 07 21:24:06 2010 +0000
@@ -96,8 +96,8 @@
  * @param dst_linesize linesizes for the image in dst_data
  * @param src_linesize linesizes for the image in src_data
  */
-void av_image_copy(uint8_t *dst_data[4], int dst_linesize[4],
-                   const uint8_t *src_data[4], const int src_linesize[4],
+void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],
+                   const uint8_t *src_data[4], const int src_linesizes[4],
                    enum PixelFormat pix_fmt, int width, int height);
 
 /**