diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-19 23:19:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-22 01:02:17 +0200 |
commit | 4264a0dd54420182ce0d083b308452739311edaa (patch) | |
tree | b57718b62a6822b3f90c78555be728e06b614e98 /libavcodec/Makefile | |
parent | efa4d6adf32417625be1c4f98f2f347cbd30f3e1 (diff) | |
download | ffmpeg-4264a0dd54420182ce0d083b308452739311edaa.tar.gz |
build: Make the E-AC-3 encoder select the AC-3 encoder
The E-AC-3 encoder depends on almost all of the code of the AC-3
encoder, so it makes no sense to enable one without the other.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index f8b67b852a..2db999d487 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -144,8 +144,7 @@ OBJS-$(CONFIG_DVVIDEO_ENCODER) += dv.o dvdata.o dv_profile.o OBJS-$(CONFIG_DXA_DECODER) += dxa.o OBJS-$(CONFIG_DXTORY_DECODER) += dxtory.o OBJS-$(CONFIG_EAC3_DECODER) += eac3dec.o eac3_data.o -OBJS-$(CONFIG_EAC3_ENCODER) += eac3enc.o ac3enc.o ac3enc_float.o \ - ac3tab.o ac3.o kbdwin.o eac3_data.o +OBJS-$(CONFIG_EAC3_ENCODER) += eac3enc.o eac3_data.o OBJS-$(CONFIG_EACMV_DECODER) += eacmv.o OBJS-$(CONFIG_EAMAD_DECODER) += eamad.o eaidct.o mpeg12.o \ mpeg12data.o |