summaryrefslogtreecommitdiff
path: root/libswscale/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index d2438560d3..76179ccb31 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -729,7 +729,11 @@ static int handle_jpeg(enum PixelFormat *format)
static int update_flags_cpu(int flags)
{
#if !CONFIG_RUNTIME_CPUDETECT //ensure that the flags match the compiled variant if cpudetect is off
- flags &= ~(SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2|SWS_CPU_CAPS_3DNOW|SWS_CPU_CAPS_ALTIVEC|SWS_CPU_CAPS_BFIN);
+ flags &= ~( SWS_CPU_CAPS_MMX
+ |SWS_CPU_CAPS_MMX2
+ |SWS_CPU_CAPS_3DNOW
+ |SWS_CPU_CAPS_ALTIVEC
+ |SWS_CPU_CAPS_BFIN);
flags |= ff_hardcodedcpuflags();
#endif /* CONFIG_RUNTIME_CPUDETECT */
return flags;