aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/Makefile
diff options
context:
space:
mode:
authorDaniel Kang <daniel.d.kang@gmail.com>2011-05-24 15:14:38 -0400
committerRonald S. Bultje <rbultje@google.com>2011-05-31 15:02:32 -0700
commit836f47d34b49e8ba9883e738a42f154130421caa (patch)
tree1fe14b9d671350b87e88959ac5752d1bcb68cb32 /libavcodec/x86/Makefile
parent7e985c9e35f2be426039da9a1696a584ebd57ad0 (diff)
downloadffmpeg-836f47d34b49e8ba9883e738a42f154130421caa.tar.gz
Add IDCT functions for 10-bit H.264.
Ports the majority of IDCT functions for 10-bit H.264. Parts are inspired from 8-bit IDCT code in Libav; other parts ported from x264 with relicensing permission from author. Signed-off-by: Ronald S. Bultje <rbultje@google.com>
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r--libavcodec/x86/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile
index ba664abb1e..38b736e5e7 100644
--- a/libavcodec/x86/Makefile
+++ b/libavcodec/x86/Makefile
@@ -12,8 +12,9 @@ YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o \
MMX-OBJS-$(CONFIG_H264DSP) += x86/h264dsp_mmx.o
YASM-OBJS-$(CONFIG_H264DSP) += x86/h264_deblock.o \
x86/h264_deblock_10bit.o \
- x86/h264_weight.o \
x86/h264_idct.o \
+ x86/h264_idct_10bit.o \
+ x86/h264_weight.o \
YASM-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred.o
MMX-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred_init.o