diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-29 13:48:31 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-29 13:48:31 +0000 |
| commit | 152c4fb81993749739bf41890bab6bdbf2825a1b (patch) | |
| tree | 882722056429758f6cdbdd19fb97509164c3cf96 /apps | |
| parent | 656625b30e17fe4033d0cf1476b8ee8c044d68a8 (diff) | |
| download | rockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.zip rockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.tar.gz rockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.tar.bz2 rockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.tar.xz | |
Final commit to get test_codec working properly for both freq-scaling and non-freq-scaling targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30375 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/test_codec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 425bb03..b1525ca 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -831,10 +831,7 @@ enum plugin_status plugin_start(const void* parameter) enum { -#ifdef HAVE_ADJUSTABLE_CPU_FREQ - BOOST = 0, -#endif - SPEED_TEST = 1, + SPEED_TEST = 0, SPEED_TEST_DIR, WRITE_WAV, SPEED_TEST_WITH_DSP, @@ -843,13 +840,13 @@ enum plugin_status plugin_start(const void* parameter) CHECKSUM, CHECKSUM_DIR, QUIT, +#ifdef HAVE_ADJUSTABLE_CPU_FREQ + BOOST, +#endif }; MENUITEM_STRINGLIST( menu, "test_codec", NULL, -#ifdef HAVE_ADJUSTABLE_CPU_FREQ - "Boosting", -#endif "Speed test", "Speed test folder", "Write WAV", @@ -859,6 +856,9 @@ enum plugin_status plugin_start(const void* parameter) "Checksum", "Checksum folder", "Quit", +#ifdef HAVE_ADJUSTABLE_CPU_FREQ + "Boosting", +#endif ); |