diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-29 12:49:24 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:31:27 -0700 |
commit | efc7290eb668ce77ef28d0ab9958024d0a35fbe8 (patch) | |
tree | b450ea6566d6055ccdab82f27d9f27df870ffc5f /libavcodec/x86/Makefile | |
parent | 55d7f26e7bcf1dfb69ee986aa9fc21c62e0b3ae6 (diff) | |
download | ffmpeg-efc7290eb668ce77ef28d0ab9958024d0a35fbe8.tar.gz |
x86: hpeldsp: Keep all rnd_template instantiations in hpeldsp_init
There is no point in having a separate file just for the instantiation
that provides the public functions.
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 24bf96b29b..eb312a2dd1 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -44,11 +44,9 @@ MMX-OBJS-$(CONFIG_DSPUTIL) += x86/dsputil_mmx.o \ x86/fpel_mmx.o \ x86/idct_mmx_xvid.o \ x86/idct_sse2_xvid.o \ - x86/rnd_mmx.o \ x86/simple_idct.o MMX-OBJS-$(CONFIG_HPELDSP) += x86/fpel_mmx.o \ - x86/hpeldsp_mmx.o \ - x86/rnd_mmx.o + x86/hpeldsp_mmx.o MMX-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_mmx.o |