diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-20 18:26:54 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-20 22:38:52 +0100 |
commit | 19277d933574a8c702db51ea5dbb1d450d6a967c (patch) | |
tree | d9e66f74a893fe48feced06f6af6ba431b1644f1 /libavcodec/Makefile | |
parent | 18725fcdc2aaf40fc25f09886e0e508c5dafd385 (diff) | |
download | ffmpeg-19277d933574a8c702db51ea5dbb1d450d6a967c.tar.gz |
build: fix standalone compilation of ADX encoder
The encoder depends on the common code, so link against it.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7553456d4d..b426129af3 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 |