[FFmpeg-cvslog] r32392 - trunk/libswscale/utils.c
janne
subversion
Mon Sep 27 22:09:30 CEST 2010
Author: janne
Date: Mon Sep 27 22:09:29 2010
New Revision: 32392
Log:
cosmetics: break long line update_flags_cpu
Modified:
trunk/libswscale/utils.c
Modified: trunk/libswscale/utils.c
==============================================================================
--- trunk/libswscale/utils.c Mon Sep 27 20:37:43 2010 (r32391)
+++ trunk/libswscale/utils.c Mon Sep 27 22:09:29 2010 (r32392)
@@ -729,7 +729,11 @@ static int handle_jpeg(enum PixelFormat
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;
More information about the ffmpeg-cvslog
mailing list