comparison pixdesc.h @ 968:8b14bef3cce2 libavutil

Fix misspelled parameter names in Doxygen documentation. This fixes one Doxygen warning each.
author diego
date Fri, 02 Jul 2010 10:49:29 +0000
parents e34e8d654ded
children da1b5110dbd0
comparison
equal deleted inserted replaced
967:5b48605dcf3d 968:8b14bef3cce2
95 /** 95 /**
96 * Read a line from an image, and write the values of the 96 * Read a line from an image, and write the values of the
97 * pixel format component c to dst. 97 * pixel format component c to dst.
98 * 98 *
99 * @param data the array containing the pointers to the planes of the image 99 * @param data the array containing the pointers to the planes of the image
100 * @param linesizes the array containing the linesizes of the image 100 * @param linesize the array containing the linesizes of the image
101 * @param desc the pixel format descriptor for the image 101 * @param desc the pixel format descriptor for the image
102 * @param x the horizontal coordinate of the first pixel to read 102 * @param x the horizontal coordinate of the first pixel to read
103 * @param y the vertical coordinate of the first pixel to read 103 * @param y the vertical coordinate of the first pixel to read
104 * @param w the width of the line to read, that is the number of 104 * @param w the width of the line to read, that is the number of
105 * values to write to dst 105 * values to write to dst
116 * image line. 116 * image line.
117 * 117 *
118 * @param src array containing the values to write 118 * @param src array containing the values to write
119 * @param data the array containing the pointers to the planes of the 119 * @param data the array containing the pointers to the planes of the
120 * image to write into. It is supposed to be zeroed. 120 * image to write into. It is supposed to be zeroed.
121 * @param linesizes the array containing the linesizes of the image 121 * @param linesize the array containing the linesizes of the image
122 * @param desc the pixel format descriptor for the image 122 * @param desc the pixel format descriptor for the image
123 * @param x the horizontal coordinate of the first pixel to write 123 * @param x the horizontal coordinate of the first pixel to write
124 * @param y the vertical coordinate of the first pixel to write 124 * @param y the vertical coordinate of the first pixel to write
125 * @param w the width of the line to write, that is the number of 125 * @param w the width of the line to write, that is the number of
126 * values to write to the image line 126 * values to write to the image line