diff options
author | Janne Grunau <janne-ffmpeg@jannau.net> | 2010-09-27 20:09:29 +0000 |
---|---|---|
committer | Janne Grunau <janne-ffmpeg@jannau.net> | 2010-09-27 20:09:29 +0000 |
commit | 829e5dafc2af460b2294f236809f30dc9da55345 (patch) | |
tree | ac6f5ebea3e8a4a424f6a70f9ee4e7b6c406d52b /libswscale | |
parent | d04247a13430611b438660012dad8c8c1d0bed4e (diff) | |
download | ffmpeg-829e5dafc2af460b2294f236809f30dc9da55345.tar.gz |
cosmetics: break long line update_flags_cpu
Originally committed as revision 32392 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 6 |
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; |