diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-03-12 14:50:33 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-03-12 18:24:49 +0100 |
commit | 01b069c1b81f68373f4401a611f1b8a4ad552895 (patch) | |
tree | fc925e46d0b474e3737979e09d21a30f3f2169f9 | |
parent | 404d2b977fde6018affef80255f2f0578be5dace (diff) | |
download | ffmpeg-01b069c1b81f68373f4401a611f1b8a4ad552895.tar.gz |
avcodec/codec_desc: add mime type for X-BitMap
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/codec_desc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 75a69c501f..c0418e4880 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1589,6 +1589,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .name = "xbm", .long_name = NULL_IF_CONFIG_SMALL("XBM (X BitMap) image"), .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + .mime_types= MT("image/x-xbitmap"), }, { .id = AV_CODEC_ID_XPM, |