Commit e48feef2 authored by michael's avatar michael

Document AVCodec.capabilities.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12538 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 61ce86d1
...@@ -2217,6 +2217,10 @@ typedef struct AVCodec { ...@@ -2217,6 +2217,10 @@ typedef struct AVCodec {
int (*close)(AVCodecContext *); int (*close)(AVCodecContext *);
int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
const uint8_t *buf, int buf_size); const uint8_t *buf, int buf_size);
/**
* Codec capabilities.
* see CODEC_CAP_*
*/
int capabilities; int capabilities;
struct AVCodec *next; struct AVCodec *next;
void (*flush)(AVCodecContext *); void (*flush)(AVCodecContext *);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment