diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-12-30 19:40:20 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-14 19:20:47 +0100 |
commit | 3f111804eb5c603a344706b84b7164cbf7b4e0df (patch) | |
tree | 512f926d6ae83bd6d3331146af5d7286812112f2 /libavcodec/allcodecs.c | |
parent | dab1f543fcac7ad3dcdd427fc1b859667c82aaa2 (diff) | |
download | ffmpeg-3f111804eb5c603a344706b84b7164cbf7b4e0df.tar.gz |
libvpx: make vp8 and vp9 selectable
Support older libvpx versions.
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 1aed693fa5..8bfa60329a 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -426,8 +426,8 @@ void avcodec_register_all(void) REGISTER_ENCODER(LIBVO_AACENC, libvo_aacenc); REGISTER_ENCODER(LIBVO_AMRWBENC, libvo_amrwbenc); REGISTER_ENCODER(LIBVORBIS, libvorbis); - REGISTER_ENCDEC (LIBVPX, libvpx); - REGISTER_ENCDEC (LIBVPX, libvpx_vp9); + REGISTER_ENCDEC (LIBVPX_VP8, libvpx_vp8); + REGISTER_ENCDEC (LIBVPX_VP9, libvpx_vp9); REGISTER_ENCODER(LIBX264, libx264); REGISTER_ENCODER(LIBXAVS, libxavs); REGISTER_ENCODER(LIBXVID, libxvid); |