comparison rl2.c @ 12163:9cfc564bc3e6 libavcodec

Remove incomplete Doxygen for static decode_frame functions. These functions are not documented for other decoders and should be obvious enough even without Doxygen. patch by Thilo Borgmann, thilo.borgmann googlemail com
author diego
date Wed, 14 Jul 2010 13:12:24 +0000
parents 5043c3aaa0a2
children
comparison
equal deleted inserted replaced
12162:f948f8cf97db 12163:9cfc564bc3e6
167 } 167 }
168 return 0; 168 return 0;
169 } 169 }
170 170
171 171
172 /**
173 * Decode a single frame
174 * @param avctx decoder context
175 * @param data decoded frame
176 * @param data_size size of the decoded frame
177 * @param buf input buffer
178 * @param buf_size input buffer size
179 * @return 0 success, -1 on error
180 */
181 static int rl2_decode_frame(AVCodecContext *avctx, 172 static int rl2_decode_frame(AVCodecContext *avctx,
182 void *data, int *data_size, 173 void *data, int *data_size,
183 AVPacket *avpkt) 174 AVPacket *avpkt)
184 { 175 {
185 const uint8_t *buf = avpkt->data; 176 const uint8_t *buf = avpkt->data;