diff options
author | Guillaume Martres <smarter@ubuntu.com> | 2013-11-15 23:28:30 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-12-08 00:28:27 +0100 |
commit | 9aa053ceded5550b2e538578af383fd89d82364c (patch) | |
tree | 59fda0bc8eb5493846787ab47da09a3aa28926cc /libavcodec/Makefile | |
parent | b6a971994187e87fcc8811108e144f15c1652728 (diff) | |
download | ffmpeg-9aa053ceded5550b2e538578af383fd89d82364c.tar.gz |
libvpx: do not mark VP9 as experimental when using libvpx >= 1.3.0
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index a4314bb3db..4a304ec320 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -611,8 +611,8 @@ OBJS-$(CONFIG_LIBVORBIS_ENCODER) += libvorbis.o \ vorbis_data.o vorbis_parser.o OBJS-$(CONFIG_LIBVPX_VP8_DECODER) += libvpxdec.o OBJS-$(CONFIG_LIBVPX_VP8_ENCODER) += libvpxenc.o -OBJS-$(CONFIG_LIBVPX_VP9_DECODER) += libvpxdec.o -OBJS-$(CONFIG_LIBVPX_VP9_ENCODER) += libvpxenc.o +OBJS-$(CONFIG_LIBVPX_VP9_DECODER) += libvpxdec.o libvpx.o +OBJS-$(CONFIG_LIBVPX_VP9_ENCODER) += libvpxenc.o libvpx.o OBJS-$(CONFIG_LIBWAVPACK_ENCODER) += libwavpackenc.o OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o OBJS-$(CONFIG_LIBXAVS_ENCODER) += libxavs.o |