projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
swscale: make filterPos 32bit.
[ffmpeg.git]
/
libswscale
/
x86
/
rgb2rgb.c
diff --git
a/libswscale/x86/rgb2rgb.c
b/libswscale/x86/rgb2rgb.c
index
97c50dd
..
282618c
100644
(file)
--- a/
libswscale/x86/rgb2rgb.c
+++ b/
libswscale/x86/rgb2rgb.c
@@
-127,7
+127,7
@@
void rgb2rgb_init_x86(void)
{
int cpu_flags = av_get_cpu_flags();
- if (
HAVE_MMX &&
cpu_flags & AV_CPU_FLAG_MMX)
+ if (cpu_flags & AV_CPU_FLAG_MMX)
rgb2rgb_init_MMX();
if (HAVE_AMD3DNOW && cpu_flags & AV_CPU_FLAG_3DNOW)
rgb2rgb_init_3DNOW();