diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2012-09-28 23:16:09 -0600 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 14:42:40 +0200 |
commit | 6cb8c8540978ce6fe5355ec282693d6e6a3466d7 (patch) | |
tree | 9384a1cb299e2a208158bc53488562d3cd83159e /libavcodec/Makefile | |
parent | 15d35bee83f7ace32725ea85044105867657d663 (diff) | |
download | ffmpeg-6cb8c8540978ce6fe5355ec282693d6e6a3466d7.tar.gz |
Opus encoder using libopus
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index d4537fd4cd..64c0125a64 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -581,7 +581,10 @@ OBJS-$(CONFIG_LIBOPENCORE_AMRNB_ENCODER) += libopencore-amr.o OBJS-$(CONFIG_LIBOPENCORE_AMRWB_DECODER) += libopencore-amr.o OBJS-$(CONFIG_LIBOPENJPEG_DECODER) += libopenjpegdec.o OBJS-$(CONFIG_LIBOPENJPEG_ENCODER) += libopenjpegenc.o -OBJS-$(CONFIG_LIBOPUS_DECODER) += libopusdec.o vorbis_data.o +OBJS-$(CONFIG_LIBOPUS_DECODER) += libopusdec.o libopus.o \ + vorbis_data.o +OBJS-$(CONFIG_LIBOPUS_ENCODER) += libopusenc.o libopus.o \ + vorbis_data.o audio_frame_queue.o OBJS-$(CONFIG_LIBSCHROEDINGER_DECODER) += libschroedingerdec.o \ libschroedinger.o OBJS-$(CONFIG_LIBSCHROEDINGER_ENCODER) += libschroedingerenc.o \ |