diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-14 21:10:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-23 01:38:47 +0200 |
commit | 9eae43ddcf7c435eb25914f7a2c1cfae05a6a32a (patch) | |
tree | c4021664b00133996efbb85f4b914d3a0d85eb73 | |
parent | 92779658838487489c7f7ac0a2c4087b158fd57d (diff) | |
download | ffmpeg-9eae43ddcf7c435eb25914f7a2c1cfae05a6a32a.tar.gz |
lavc: add intra only codec flag
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 b93562e545..d9da2ad2e1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -726,6 +726,10 @@ typedef struct RcOverride{ */ #define CODEC_CAP_VARIABLE_FRAME_SIZE 0x10000 /** + * Codec is intra only. + */ +#define CODEC_CAP_INTRA_ONLY 0x40000000 +/** * Codec is lossless. */ #define CODEC_CAP_LOSSLESS 0x80000000 |