Originally committed as revision 24131 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -200,6 +200,8 @@ static const uint16_t mask_matrix[] = {0x1, 0x2, 0x10, 0x20,
|
| 200 | 200 |
* @param avctx decoder context |
| 201 | 201 |
* @param data decoded frame |
| 202 | 202 |
* @param data_size size of the decoded frame |
| 203 |
+ * @param buf input buffer |
|
| 204 |
+ * @param buf_size input buffer size |
|
| 203 | 205 |
* @return 0 success, -1 on error |
| 204 | 206 |
*/ |
| 205 | 207 |
static int escape124_decode_frame(AVCodecContext *avctx, |
| ... | ... |
@@ -123,6 +123,8 @@ static int fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w, |
| 123 | 123 |
* @param avctx codec context |
| 124 | 124 |
* @param data output AVFrame |
| 125 | 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 |
|
| 126 | 128 |
* @return number of consumed bytes on success or negative if decode fails |
| 127 | 129 |
*/ |
| 128 | 130 |
static int decode_frame(AVCodecContext *avctx, |
| ... | ... |
@@ -174,6 +174,8 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx) |
| 174 | 174 |
* @param avctx decoder context |
| 175 | 175 |
* @param data decoded frame |
| 176 | 176 |
* @param data_size size of the decoded frame |
| 177 |
+ * @param buf input buffer |
|
| 178 |
+ * @param buf_size input buffer size |
|
| 177 | 179 |
* @return 0 success, -1 on error |
| 178 | 180 |
*/ |
| 179 | 181 |
static int rl2_decode_frame(AVCodecContext *avctx, |