]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/x86/cpu.c
x86/imdct36: don't build imdct36_float_sse on x86_64 targets
[ffmpeg] / libavutil / x86 / cpu.c
index e0b4c890629f71e36a891fb0e5ead96d6f664fb2..356cd44f0606bef508a8dc4f8ec386e752e33b4d 100644 (file)
@@ -133,27 +133,26 @@ int ff_get_cpu_flags_x86(void)
             xgetbv(0, eax, edx);
             if ((eax & 0x6) == 0x6) {
                 rval |= AV_CPU_FLAG_AVX;
-                if (ecx&0x00001000)
+                if (ecx & 0x00001000)
                     rval |= AV_CPU_FLAG_FMA3;
             }
         }
 #endif /* HAVE_AVX */
 #endif /* HAVE_SSE */
+    }
     if (max_std_level >= 7) {
         cpuid(7, eax, ebx, ecx, edx);
 #if HAVE_AVX2
-        if (ebx&0x00000020)
+        if (ebx & 0x00000020)
             rval |= AV_CPU_FLAG_AVX2;
 #endif /* HAVE_AVX2 */
         /* BMI1/2 don't need OS support */
-        if (ebx&0x00000008)
-        {
+        if (ebx & 0x00000008) {
             rval |= AV_CPU_FLAG_BMI1;
-            if (ebx&0x00000100)
+            if (ebx & 0x00000100)
                 rval |= AV_CPU_FLAG_BMI2;
         }
     }
-    }
 
     cpuid(0x80000000, max_ext_level, ebx, ecx, edx);