---
 libavcodec/dct-test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 6502f02..f33a7bd 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -67,7 +67,7 @@ struct algo {
     void (*func)(int16_t *block);
     enum formattag { NO_PERM, MMX_PERM, MMX_SIMPLE_PERM, SCALE_PERM,
                      SSE2_PERM, PARTTRANS_PERM } format;
-    int mm_support;
+    int cpu_flag;
     int nonspec;
 };
 
@@ -503,7 +503,7 @@ int main(int argc, char **argv)
         const int cpu_flags = av_get_cpu_flags();
         const struct algo *algos = test_idct ? idct_tab : fdct_tab;
         for (i = 0; algos[i].name; i++)
-            if (!(~cpu_flags & algos[i].mm_support)) {
+            if (!(~cpu_flags & algos[i].cpu_flag)) {
                 err |= dct_error(&algos[i], test, test_idct, speed);
             }
     }
-- 
1.8.3.2

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to