comparison atrac3.c @ 12056:25e9cb2b9477 libavcodec

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 7dd2a45249a9
children ee740a4e80c5
comparison
equal deleted inserted replaced
12055:34b9819efef5 12056:25e9cb2b9477
164 164
165 165
166 /** 166 /**
167 * Atrac 3 indata descrambling, only used for data coming from the rm container 167 * Atrac 3 indata descrambling, only used for data coming from the rm container
168 * 168 *
169 * @param in pointer to 8 bit array of indata 169 * @param inbuffer pointer to 8 bit array of indata
170 * @param bits amount of bits
171 * @param out pointer to 8 bit array of outdata 170 * @param out pointer to 8 bit array of outdata
171 * @param bytes amount of bytes
172 */ 172 */
173 173
174 static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){ 174 static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){
175 int i, off; 175 int i, off;
176 uint32_t c; 176 uint32_t c;