Browse code

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

Originally committed as revision 24237 to svn://svn.ffmpeg.org/ffmpeg/trunk

Thilo Borgmann authored on 2010/07/14 22:12:24
Showing 3 changed files
... ...
@@ -195,15 +195,6 @@ static const uint16_t mask_matrix[] = {0x1,   0x2,   0x10,   0x20,
195 195
                                        0x100, 0x200, 0x1000, 0x2000,
196 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 198
 static int escape124_decode_frame(AVCodecContext *avctx,
208 199
                                   void *data, int *data_size,
209 200
                                   AVPacket *avpkt)
... ...
@@ -118,15 +118,6 @@ static int fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w,
118 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 121
 static int decode_frame(AVCodecContext *avctx,
131 122
                         void *data, int *data_size,
132 123
                         AVPacket *avpkt)
... ...
@@ -169,15 +169,6 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx)
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 172
 static int rl2_decode_frame(AVCodecContext *avctx,
182 173
                               void *data, int *data_size,
183 174
                               AVPacket *avpkt)