diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-03 10:09:45 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-07 12:28:45 -0700 |
commit | a9aee08d900f686e966c64afec5d88a7d9d130a3 (patch) | |
tree | 92335216bc97235507f805401693ed534a8f5fc9 /libavcodec/Makefile | |
parent | 1e9a93bfca2c2f43a07e01f2ef9fd5cbafe6c22d (diff) | |
download | ffmpeg-a9aee08d900f686e966c64afec5d88a7d9d130a3.tar.gz |
dsputil: Split off FDCT bits into their own context
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index fcd35cd4bd..ab340d79e3 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -35,8 +35,9 @@ OBJS-$(CONFIG_CABAC) += cabac.o OBJS-$(CONFIG_DCT) += dct.o dct32_fixed.o dct32_float.o OBJS-$(CONFIG_DSPUTIL) += dsputil.o OBJS-$(CONFIG_DXVA2) += dxva2.o -OBJS-$(CONFIG_ENCODERS) += faandct.o jfdctfst.o jfdctint.o OBJS-$(CONFIG_ERROR_RESILIENCE) += error_resilience.o +OBJS-$(CONFIG_FDCTDSP) += fdctdsp.o faandct.o \ + jfdctfst.o jfdctint.o FFT-OBJS-$(CONFIG_HARDCODED_TABLES) += cos_tables.o cos_fixed_tables.o OBJS-$(CONFIG_FFT) += avfft.o fft_fixed.o fft_float.o \ $(FFT-OBJS-yes) |