diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-08 20:40:16 -0800 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-08 12:38:33 +0300 |
commit | 610b18e2e3d8ef5eca3e78f33a0625689b8d2bb9 (patch) | |
tree | a29b386fff4c4e642332b4d5178a4c548fe3a5b8 /libavcodec/x86/Makefile | |
parent | 0f598457089023f86829b34fef582f3810c491b2 (diff) | |
download | ffmpeg-610b18e2e3d8ef5eca3e78f33a0625689b8d2bb9.tar.gz |
x86: qpel: Move fullpel and l2 functions to a separate file
This way, they can be shared between mpeg4qpel and h264qpel without
requiring either one to be compiled unconditionally.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index a759e6e9e0..cc60f2f0b3 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -76,3 +76,4 @@ YASM-OBJS += x86/dsputil.o \ x86/fmtconvert.o \ x86/hpeldsp.o \ x86/mpeg4qpel.o \ + x86/qpel.o \ |