comparison escape124.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
193 static const uint16_t mask_matrix[] = {0x1, 0x2, 0x10, 0x20, 193 static const uint16_t mask_matrix[] = {0x1, 0x2, 0x10, 0x20,
194 0x4, 0x8, 0x40, 0x80, 194 0x4, 0x8, 0x40, 0x80,
195 0x100, 0x200, 0x1000, 0x2000, 195 0x100, 0x200, 0x1000, 0x2000,
196 0x400, 0x800, 0x4000, 0x8000}; 196 0x400, 0x800, 0x4000, 0x8000};
197 197
198 /**
199 * Decode a single frame
200 * @param avctx decoder context
201 * @param data decoded frame
202 * @param data_size size of the decoded frame
203 * @param buf input buffer
204 * @param buf_size input buffer size
205 * @return 0 success, -1 on error
206 */
207 static int escape124_decode_frame(AVCodecContext *avctx, 198 static int escape124_decode_frame(AVCodecContext *avctx,
208 void *data, int *data_size, 199 void *data, int *data_size,
209 AVPacket *avpkt) 200 AVPacket *avpkt)
210 { 201 {
211 const uint8_t *buf = avpkt->data; 202 const uint8_t *buf = avpkt->data;