From a2d1124605a1902977d3538628759f59d84b25c9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 21 Mar 2008 11:35:32 +0000 Subject: [PATCH] Document AVCodec.capabilities. Originally committed as revision 12538 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 284ffcc688..451d9f54ad 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2217,6 +2217,10 @@ typedef struct AVCodec { int (*close)(AVCodecContext *); int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, const uint8_t *buf, int buf_size); + /** + * Codec capabilities. + * see CODEC_CAP_* + */ int capabilities; struct AVCodec *next; void (*flush)(AVCodecContext *);