summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorBitbreaker/METALVOTZE X <bitbreaker@ihlaid.de>2009-01-31 00:45:34 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-01-31 00:45:34 +0000
commit99b3812265a718a64c0eb6ac0dc2f6ae0afb06e5 (patch)
treed2fd0ef88996bae4325885869c8daea8ec9035ca /libavcodec/avcodec.h
parent67a7e4dbcfdc3903cdb2595394fd6c926a28dee3 (diff)
Fix documentation of the return value of avcodec_encode_video().
ripped out of a patch by Bitbreaker/METALVOTZE X bitbreaker ihlaid de Y Originally committed as revision 16870 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 6aa41b5538..e9e69ac724 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2858,7 +2858,7 @@ int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size,
* @param[in] buf_size the size of the output buffer in bytes
* @param[in] pict the input picture to encode
* @return On error a negative value is returned, on success zero or the number
- * of bytes used from the input buffer.
+ * of bytes used from the output buffer.
*/
int avcodec_encode_video(AVCodecContext *avctx, uint8_t *buf, int buf_size,
const AVFrame *pict);