Change benchmarking code so it returns comparable values.
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 27 Jul 2008 20:53:30 +0000 (20:53 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 27 Jul 2008 20:53:30 +0000 (20:53 +0000)
Originally committed as revision 14434 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/random.c

index 251eb1f2704b7f3f95366378f94a5c8e56748b44..2f73c19755a1819a508ba4c6301e4dc8b5186d08 100644 (file)
@@ -87,15 +87,12 @@ void main(void)
     AVRandomState state;
 
     av_init_random(0xdeadbeef, &state);
-    for (j = 0; j < 100; j++) {
-        START_TIMER;
-        x+= av_random(&state);
-        STOP_TIMER("first call to av_random");
-        for (i = 1; i < AV_RANDOM_N; i++) {
-            START_TIMER;
+    for (j = 0; j < 10000; j++) {
+        START_TIMER
+        for (i = 0; i < 624; i++) {
             x+= av_random(&state);
-            STOP_TIMER("AV_RANDOM_N calls of av_random");
         }
+        STOP_TIMER("624 calls of av_random");
     }
     av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);
 }