Commit 9270bc81 authored by michael's avatar michael

Change benchmarking code so it returns compareable values.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14434 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e82dbed5
......@@ -87,15 +87,12 @@ void main(void)
AVRandomState state;
av_init_random(0xdeadbeef, &state);
for (j = 0; j < 100; j++) {
START_TIMER;
for (j = 0; j < 10000; j++) {
START_TIMER
for (i = 0; i < 624; i++) {
x+= av_random(&state);
STOP_TIMER("first call to av_random");
for (i = 1; i < AV_RANDOM_N; i++) {
START_TIMER;
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);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment