diff options
author | James Almer <jamrial@gmail.com> | 2014-07-08 17:08:24 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-08 22:19:38 +0200 |
commit | 2375b094734e95c031defb475b5492ac1b659391 (patch) | |
tree | 13af393bcd73df2f1b938eedbd36b1ef77dc6da4 /libavcodec/alpha/Makefile | |
parent | 8635954335061ea4c03d3f492b7bc803ea740d9c (diff) | |
download | ffmpeg-2375b094734e95c031defb475b5492ac1b659391.tar.gz |
alpha/idctdsp: move idct init code out of dsputil
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alpha/Makefile')
-rw-r--r-- | libavcodec/alpha/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/alpha/Makefile b/libavcodec/alpha/Makefile index 8b7f1abd9f..34e5275d99 100644 --- a/libavcodec/alpha/Makefile +++ b/libavcodec/alpha/Makefile @@ -1,10 +1,10 @@ -OBJS += alpha/blockdsp_alpha.o \ - alpha/dsputil_alpha.o \ - alpha/dsputil_alpha_asm.o \ - alpha/motion_est_alpha.o \ - alpha/motion_est_mvi_asm.o \ - alpha/simple_idct_alpha.o \ - +OBJS-$(CONFIG_BLOCKDSP) += alpha/blockdsp_alpha.o +OBJS-$(CONFIG_DSPUTIL) += alpha/dsputil_alpha.o \ + alpha/motion_est_alpha.o \ + alpha/motion_est_mvi_asm.o OBJS-$(CONFIG_HPELDSP) += alpha/hpeldsp_alpha.o \ alpha/hpeldsp_alpha_asm.o +OBJS-$(CONFIG_IDCTDSP) += alpha/idctdsp_alpha.o \ + alpha/idctdsp_alpha_asm.o \ + alpha/simple_idct_alpha.o OBJS-$(CONFIG_MPEGVIDEO) += alpha/mpegvideo_alpha.o |