comparison pixdesc.h @ 9822:2887f410011f libavcodec

Remove '\p', '\c' and '\e' doxygen markup from doxy, as it should improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?".
author stefano
date Sat, 06 Jun 2009 09:35:15 +0000
parents 8665a1518257
children 0a97bc8da768
comparison
equal deleted inserted replaced
9821:0813b30e7db9 9822:2887f410011f
84 * The array of all the pixel format descriptors. 84 * The array of all the pixel format descriptors.
85 */ 85 */
86 extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; 86 extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
87 87
88 /** 88 /**
89 * Reads a line from an image, and writes to \p dst the values of the 89 * Reads a line from an image, and writes to dst the values of the
90 * pixel format component \p c. 90 * pixel format component c.
91 * 91 *
92 * @param data the array containing the pointers to the planes of the image 92 * @param data the array containing the pointers to the planes of the image
93 * @param linesizes the array containing the linesizes of the image 93 * @param linesizes the array containing the linesizes of the image
94 * @param desc the pixel format descriptor for the image 94 * @param desc the pixel format descriptor for the image
95 * @param x the horizontal coordinate of the first pixel to read 95 * @param x the horizontal coordinate of the first pixel to read
96 * @param y the vertical coordinate of the first pixel to read 96 * @param y the vertical coordinate of the first pixel to read
97 * @param w the width of the line to read, that is the number of 97 * @param w the width of the line to read, that is the number of
98 * values to write to \p dst 98 * values to write to dst
99 * @param read_pal_component if not zero and the format is a paletted 99 * @param read_pal_component if not zero and the format is a paletted
100 * format writes to \p dst the values corresponding to the palette 100 * format writes to dst the values corresponding to the palette
101 * component \p c in data[1], rather than the palette indexes in 101 * component c in data[1], rather than the palette indexes in
102 * data[0]. The behavior is undefined if the format is not paletted. 102 * data[0]. The behavior is undefined if the format is not paletted.
103 */ 103 */
104 static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], 104 static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],
105 const AVPixFmtDescriptor *desc, int x, int y, int c, int w, int read_pal_component) 105 const AVPixFmtDescriptor *desc, int x, int y, int c, int w, int read_pal_component)
106 { 106 {