comparison fraps.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
116 } 116 }
117 free_vlc(&vlc); 117 free_vlc(&vlc);
118 return 0; 118 return 0;
119 } 119 }
120 120
121 /**
122 * decode a frame
123 * @param avctx codec context
124 * @param data output AVFrame
125 * @param data_size size of output data or 0 if no picture is returned
126 * @param buf input data frame
127 * @param buf_size size of input data frame
128 * @return number of consumed bytes on success or negative if decode fails
129 */
130 static int decode_frame(AVCodecContext *avctx, 121 static int decode_frame(AVCodecContext *avctx,
131 void *data, int *data_size, 122 void *data, int *data_size,
132 AVPacket *avpkt) 123 AVPacket *avpkt)
133 { 124 {
134 const uint8_t *buf = avpkt->data; 125 const uint8_t *buf = avpkt->data;