This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
x86: h264qpel: Only define mmxext QPEL functions if H264QPEL is enabled
This fixes compilation with --disable-everything and components enabled.
tags/n1.1
Diego Biurrun
13 years ago
parent
dbb37e7711
commit
930e26a3ea
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/x86/h264_qpel.c
+ 1
- 1
libavcodec/x86/h264_qpel.c
View File
@@ -1286,6 +1286,6 @@ QPEL16_OP(mc31, MMX)\
QPEL16_OP(mc32, MMX)\
QPEL16_OP(mc33, MMX)
#if ARCH_X86_32 && HAVE_YASM
// ARCH_X86_64 implies sse
2+
#if ARCH_X86_32 && HAVE_YASM
&& CONFIG_H264QPEL // ARCH_X86_64 implies SSE
2+
QPEL16(mmxext)
#endif
Write
Preview
Loading…
Cancel
Save