diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-12-20 17:22:06 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-14 19:20:47 +0100 |
commit | dab1f543fcac7ad3dcdd427fc1b859667c82aaa2 (patch) | |
tree | b8cadc285736af9a6b327a7b0d1b71aeafc3baef /libavcodec/codec_desc.c | |
parent | 23a610b9d66a512afed8627d294f4ae7b16153a0 (diff) | |
download | ffmpeg-dab1f543fcac7ad3dcdd427fc1b859667c82aaa2.tar.gz |
libvpx: support vp9
This feature is experimental use at your risk
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 77b3653312..fe2cbab0ba 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -1013,6 +1013,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .props = AV_CODEC_PROP_LOSSY, }, { + .id = AV_CODEC_ID_VP9, + .type = AVMEDIA_TYPE_VIDEO, + .name = "vp9", + .long_name = NULL_IF_CONFIG_SMALL("Google VP9"), + .props = AV_CODEC_PROP_LOSSY, + }, + { .id = AV_CODEC_ID_PICTOR, .type = AVMEDIA_TYPE_VIDEO, .name = "pictor", |