From c4bfa098072ba338d83555d6e2199f7e1e64ffff Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Tue, 16 Apr 2013 22:42:26 +0530 Subject: Add a WebP decoder Container and lossy decoding by Aneesh Dogra Lossless decoding by Justin Ruggles --- libavcodec/codec_desc.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libavcodec/codec_desc.c') diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 90e489175c..abab828ec6 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1228,6 +1228,14 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("Go2Meeting"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_WEBP, + .type = AVMEDIA_TYPE_VIDEO, + .name = "webp", + .long_name = NULL_IF_CONFIG_SMALL("WebP"), + .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY | + AV_CODEC_PROP_LOSSLESS, + }, /* various PCM "codecs" */ { -- cgit v1.2.1