summaryrefslogtreecommitdiff
path: root/apps/plugins/bench_scaler.c
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-05-18 20:21:03 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-05-18 20:21:03 +0000
commite631d1fb28f25ff05522263c44fa9c347cd63883 (patch)
treef96efae3b2561b10712fc8bbb934e8ec4416b0ec /apps/plugins/bench_scaler.c
parentc8d6a02c5a792f7c5d634dac8a99a82c6b4c3ad5 (diff)
downloadrockbox-e631d1fb28f25ff05522263c44fa9c347cd63883.zip
rockbox-e631d1fb28f25ff05522263c44fa9c347cd63883.tar.gz
rockbox-e631d1fb28f25ff05522263c44fa9c347cd63883.tar.bz2
rockbox-e631d1fb28f25ff05522263c44fa9c347cd63883.tar.xz
Use TIME_BEFORE in bench_* plugins, and use 10s test duration.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20983 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bench_scaler.c')
-rw-r--r--apps/plugins/bench_scaler.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/bench_scaler.c b/apps/plugins/bench_scaler.c
index 723e427..c24807d 100644
--- a/apps/plugins/bench_scaler.c
+++ b/apps/plugins/bench_scaler.c
@@ -109,17 +109,18 @@ enum plugin_status plugin_start(const void* parameter)
if (in == out)
continue;
lcd_printf("timing %dx%d->%dx>%d scale", in, in, out, out);
- long t1, t2;
+ long t1, t2, t_end;
int count = 0;
t2 = *(rb->current_tick);
in_dim.width = in_dim.height = in;
bm.width = bm.height = rset.rowstop = out;
while (t2 != (t1 = *(rb->current_tick)));
+ t_end = t1 + 10 * HZ;
do {
resize_on_load(&bm, false, &in_dim, &rset, (unsigned char *)plugin_buf, plugin_buf_len, &format_null, IF_PIX_FMT(0,) store_part_null, NULL);
count++;
t2 = *(rb->current_tick);
- } while (t2 - t1 < HZ || count < 10);
+ } while (TIME_BEFORE(t2, t_end) || count < 10);
t2 -= t1;
t2 *= 10;
t2 += count >> 1;