[FFmpeg-cvslog] build: fix standalone compilation of ADX encoder

Diego Biurrun git at videolan.org
Wed Dec 21 03:51:28 CET 2011


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Tue Dec 20 18:26:54 2011 +0100| [19277d933574a8c702db51ea5dbb1d450d6a967c] | committer: Diego Biurrun

build: fix standalone compilation of ADX encoder

The encoder depends on the common code, so link against it.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=19277d933574a8c702db51ea5dbb1d450d6a967c
---

 libavcodec/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 7553456..b426129 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -493,7 +493,7 @@ OBJS-$(CONFIG_PCM_ZORK_DECODER)           += pcm.o
 
 OBJS-$(CONFIG_ADPCM_4XM_DECODER)          += adpcm.o adpcm_data.o
 OBJS-$(CONFIG_ADPCM_ADX_DECODER)          += adxdec.o adx.o
-OBJS-$(CONFIG_ADPCM_ADX_ENCODER)          += adxenc.o
+OBJS-$(CONFIG_ADPCM_ADX_ENCODER)          += adxenc.o adx.o
 OBJS-$(CONFIG_ADPCM_CT_DECODER)           += adpcm.o adpcm_data.o
 OBJS-$(CONFIG_ADPCM_EA_DECODER)           += adpcm.o adpcm_data.o
 OBJS-$(CONFIG_ADPCM_EA_MAXIS_XA_DECODER)  += adpcm.o adpcm_data.o



More information about the ffmpeg-cvslog mailing list