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/codec_desc.c | |
parent | 7ca2f8b1130bd3db86a6e1bf82493abe25b751dd (diff) | |
download | ffmpeg-8732271e4025ed4198055686228a62c1d4f1a8c7.tar.gz |
lavc: mark bitmap based subtitles codecs as such.
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 0806b5b1c5..440e9d9754 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2371,12 +2371,14 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_SUBTITLE, .name = "dvd_subtitle", .long_name = NULL_IF_CONFIG_SMALL("DVD subtitles"), + .props = AV_CODEC_PROP_BITMAP_SUB, }, { .id = AV_CODEC_ID_DVB_SUBTITLE, .type = AVMEDIA_TYPE_SUBTITLE, .name = "dvb_subtitle", .long_name = NULL_IF_CONFIG_SMALL("DVB subtitles"), + .props = AV_CODEC_PROP_BITMAP_SUB, }, { .id = AV_CODEC_ID_TEXT, @@ -2389,6 +2391,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_SUBTITLE, .name = "xsub", .long_name = NULL_IF_CONFIG_SMALL("XSUB"), + .props = AV_CODEC_PROP_BITMAP_SUB, }, { .id = AV_CODEC_ID_SSA, @@ -2407,6 +2410,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_SUBTITLE, .name = "hdmv_pgs_subtitle", .long_name = NULL_IF_CONFIG_SMALL("HDMV Presentation Graphic Stream subtitles"), + .props = AV_CODEC_PROP_BITMAP_SUB, }, { .id = AV_CODEC_ID_DVB_TELETEXT, |