Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-03-08 13:29:40 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-03-08 16:32:00 +0300
commit1d0bad421ceb5c0040819a0c9f8e66a7bf4a5fd2 (patch)
tree07ef3623ed4e0b837a46b83650e2ee89ac89ed5e /libavutil/tests
parenta50ccbd240a958c32078352021b677c5476d734e (diff)
avutil/tests/lfg: Remove debugging start/stop timer
Fixes code with qemu ARM Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/tests')
-rw-r--r--libavutil/tests/lfg.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavutil/tests/lfg.c b/libavutil/tests/lfg.c
index 9e908d2a90..bf127e3031 100644
--- a/libavutil/tests/lfg.c
+++ b/libavutil/tests/lfg.c
@@ -104,15 +104,12 @@ int main(void)
int x = 0;
int i, j;
AVLFG state;
-
av_lfg_init(&state, 0xdeadbeef);
for (j = 0; j < 10000; j++) {
- START_TIMER
for (i = 0; i < 624; i++) {
//av_log(NULL, AV_LOG_ERROR, "%X\n", av_lfg_get(&state));
x += av_lfg_get(&state);
}
- STOP_TIMER("624 calls of av_lfg_get");
}
av_log(NULL, AV_LOG_ERROR, "final value:%X\n", x);