diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-06-12 21:37:58 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-06-12 22:12:26 +0000 |
commit | c1d62489e1c2823d52baa74f4c0e9d933c23bfbb (patch) | |
tree | 0c07ad8155675d41ada7cf2032bee57556274f47 /libavcodec/Makefile | |
parent | 2942431a0f94ecb77744a772c164ab71711ffe19 (diff) | |
download | ffmpeg-c1d62489e1c2823d52baa74f4c0e9d933c23bfbb.tar.gz |
libvorbis: split encoder from decoder
Also fix build dependencies while here.
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0bc6a0f6e2..9e352a612a 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -680,8 +680,9 @@ OBJS-$(CONFIG_LIBUTVIDEO_ENCODER) += libutvideoenc.o OBJS-$(CONFIG_LIBVO_AACENC_ENCODER) += libvo-aacenc.o mpeg4audio.o \ audio_frame_queue.o OBJS-$(CONFIG_LIBVO_AMRWBENC_ENCODER) += libvo-amrwbenc.o -OBJS-$(CONFIG_LIBVORBIS_ENCODER) += libvorbis.o audio_frame_queue.o \ - vorbis_data.o vorbis_parser.o +OBJS-$(CONFIG_LIBVORBIS_DECODER) += libvorbisdec.o +OBJS-$(CONFIG_LIBVORBIS_ENCODER) += libvorbisenc.o audio_frame_queue.o \ + vorbis_data.o vorbis_parser.o xiph.o OBJS-$(CONFIG_LIBVPX_DECODER) += libvpxdec.o OBJS-$(CONFIG_LIBVPX_ENCODER) += libvpxenc.o OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o |