comparison vc1.c @ 5299:4623928e3b9e libavcodec

Replace non-existing @fixme doxygen tags with @todo. patch by Ismail D«Ónmez, ismail pardus.org tr
author diego
date Fri, 13 Jul 2007 13:04:55 +0000
parents 3d124a8b7a76
children 7617e066481e
comparison
equal deleted inserted replaced
5298:e00f7048c50c 5299:4623928e3b9e
42 static const uint16_t table_mb_intra[64][2]; 42 static const uint16_t table_mb_intra[64][2];
43 43
44 44
45 /** 45 /**
46 * Get unary code of limited length 46 * Get unary code of limited length
47 * @fixme FIXME Slow and ugly 47 * @todo FIXME Slow and ugly
48 * @param gb GetBitContext 48 * @param gb GetBitContext
49 * @param[in] stop The bitstop value (unary code of 1's or 0's) 49 * @param[in] stop The bitstop value (unary code of 1's or 0's)
50 * @param[in] len Maximum length 50 * @param[in] len Maximum length
51 * @return Unary length/index 51 * @return Unary length/index
52 */ 52 */
207 /** Decode columns by checking if they are skipped 207 /** Decode columns by checking if they are skipped
208 * @param plane Buffer to store decoded bits 208 * @param plane Buffer to store decoded bits
209 * @param[in] width Width of this buffer 209 * @param[in] width Width of this buffer
210 * @param[in] height Height of this buffer 210 * @param[in] height Height of this buffer
211 * @param[in] stride of this buffer 211 * @param[in] stride of this buffer
212 * @fixme FIXME: Optimize 212 * @todo FIXME: Optimize
213 */ 213 */
214 static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){ 214 static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
215 int x, y; 215 int x, y;
216 216
217 for (x=0; x<width; x++){ 217 for (x=0; x<width; x++){
227 227
228 /** Decode a bitplane's bits 228 /** Decode a bitplane's bits
229 * @param bp Bitplane where to store the decode bits 229 * @param bp Bitplane where to store the decode bits
230 * @param v VC-1 context for bit reading and logging 230 * @param v VC-1 context for bit reading and logging
231 * @return Status 231 * @return Status
232 * @fixme FIXME: Optimize 232 * @todo FIXME: Optimize
233 */ 233 */
234 static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v) 234 static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v)
235 { 235 {
236 GetBitContext *gb = &v->s.gb; 236 GetBitContext *gb = &v->s.gb;
237 237