[FFmpeg-cvslog] sws: better MOVNTQ macro
Michael Niedermayer
git at videolan.org
Sun Oct 23 19:38:31 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct 23 19:13:52 2011 +0200| [f15359727d9dfa46648266de82b81129ca5e3770] | committer: Michael Niedermayer
sws: better MOVNTQ macro
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f15359727d9dfa46648266de82b81129ca5e3770
---
libswscale/x86/swscale_template.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/libswscale/x86/swscale_template.c b/libswscale/x86/swscale_template.c
index ed84720..84884ac 100644
--- a/libswscale/x86/swscale_template.c
+++ b/libswscale/x86/swscale_template.c
@@ -20,6 +20,7 @@
#undef REAL_MOVNTQ
#undef MOVNTQ
+#undef MOVNTQ2
#undef PREFETCH
#if COMPILE_TEMPLATE_MMX2
@@ -30,8 +31,10 @@
#if COMPILE_TEMPLATE_MMX2
#define REAL_MOVNTQ(a,b) "movntq " #a ", " #b " \n\t"
+#define MOVNTQ2 "movntq "
#else
#define REAL_MOVNTQ(a,b) "movq " #a ", " #b " \n\t"
+#define MOVNTQ2 "movq "
#endif
#define MOVNTQ(a,b) REAL_MOVNTQ(a,b)
More information about the ffmpeg-cvslog
mailing list