diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-01-05 11:06:31 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-02-17 11:59:24 +0100 |
commit | 8732271e4025ed4198055686228a62c1d4f1a8c7 (patch) | |
tree | 44aa1e6e109ce3de7a5ec8e0eccaf8fbeccc840b /libavcodec/avcodec.h | |
parent | 7ca2f8b1130bd3db86a6e1bf82493abe25b751dd (diff) | |
download | ffmpeg-8732271e4025ed4198055686228a62c1d4f1a8c7.tar.gz |
lavc: mark bitmap based subtitles codecs as such.
Diffstat (limited to 'libavcodec/avcodec.h')
-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 68eac5525b..fc7091c16c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -540,6 +540,10 @@ typedef struct AVCodecDescriptor { * Codec supports lossless compression. Audio and video codecs only. */ #define AV_CODEC_PROP_LOSSLESS (1 << 2) +/** + * Subtitle codec is bitmap based + */ +#define AV_CODEC_PROP_BITMAP_SUB (1 << 16) #if FF_API_OLD_DECODE_AUDIO /* in bytes */ |