From ea840e203646db7f689a817a02b3b31c108d1b69 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Wed, 4 Jun 2008 06:07:43 +0000 Subject: Add effective clockrate for realtime decoding to the displayed results of test_codec plugin. This result shows the effectiveness of a codec on the current target plaform. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17687 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/test_codec.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index e948107cf8..2379ebb1b7 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -613,6 +613,17 @@ static enum plugin_status test_track(const char* filename) rb->snprintf(str,sizeof(str),"%d.%02d%% realtime",(int)speed/100,(int)speed%100); log_text(str,true); + +#ifndef SIMULATOR + /* show effective clockrate in MHz needed for realtime decoding */ + if (speed > 0) + { + speed = CPUFREQ_MAX / speed; + rb->snprintf(str,sizeof(str),"%d.%02dMHz needed for realtime", + (int)speed/100,(int)speed%100); + log_text(str,true); + } +#endif } res = PLUGIN_OK; -- cgit