diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-10-29 14:45:48 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-01 22:05:20 +0100 |
commit | 1700b4e678ed329611a16b20d11e64b7abda4839 (patch) | |
tree | b8d054b7718a1c8d63ac9fefc4606123c522ce80 /libavcodec/x86/Makefile | |
parent | 056fd4fe65e70b4dbca97bcf7faf8b7ce3df993f (diff) | |
download | ffmpeg-1700b4e678ed329611a16b20d11e64b7abda4839.tar.gz |
x86: vp8dsp: Split loopfilter code into a separate file
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index ea6628cb61..84dd49cf3c 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -88,4 +88,5 @@ YASM-OBJS-$(CONFIG_VIDEODSP) += x86/videodsp.o YASM-OBJS-$(CONFIG_VORBIS_DECODER) += x86/vorbisdsp.o YASM-OBJS-$(CONFIG_VP3DSP) += x86/vp3dsp.o YASM-OBJS-$(CONFIG_VP6_DECODER) += x86/vp6dsp.o -YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o +YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o \ + x86/vp8dsp_loopfilter.o |