diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-03-21 11:35:32 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-03-21 11:35:32 +0000 |
commit | a2d1124605a1902977d3538628759f59d84b25c9 (patch) | |
tree | 104e93f01c4df8c027712be6b9413320d07c5a64 /libavcodec | |
parent | 67e2102042b991e7eaec6a6af4da1fbb0e7a2b57 (diff) | |
download | ffmpeg-a2d1124605a1902977d3538628759f59d84b25c9.tar.gz |
Document AVCodec.capabilities.
Originally committed as revision 12538 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 *); |