diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-02 10:49:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-02 10:49:29 +0000 |
commit | 9a58234feaae8b387b7a7e41b643ec619534d26a (patch) | |
tree | eaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavutil | |
parent | 5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff) | |
download | ffmpeg-9a58234feaae8b387b7a7e41b643ec619534d26a.tar.gz |
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')
-rw-r--r-- | libavutil/pixdesc.h | 4 |
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 |