summaryrefslogtreecommitdiff
path: root/libavutil/pixdesc.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 10:49:29 +0000
commit9a58234feaae8b387b7a7e41b643ec619534d26a (patch)
treeeaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavutil/pixdesc.h
parent5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff)
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each. Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/pixdesc.h')
-rw-r--r--libavutil/pixdesc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h
index 60ff4b8f80..a13d16c563 100644
--- a/libavutil/pixdesc.h
+++ b/libavutil/pixdesc.h
@@ -97,7 +97,7 @@ extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
* pixel format component c to dst.
*
* @param data the array containing the pointers to the planes of the image
- * @param linesizes the array containing the linesizes of the image
+ * @param linesize the array containing the linesizes of the image
* @param desc the pixel format descriptor for the image
* @param x the horizontal coordinate of the first pixel to read
* @param y the vertical coordinate of the first pixel to read
@@ -118,7 +118,7 @@ void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],
* @param src array containing the values to write
* @param data the array containing the pointers to the planes of the
* image to write into. It is supposed to be zeroed.
- * @param linesizes the array containing the linesizes of the image
+ * @param linesize the array containing the linesizes of the image
* @param desc the pixel format descriptor for the image
* @param x the horizontal coordinate of the first pixel to write
* @param y the vertical coordinate of the first pixel to write