summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-08-29 13:48:31 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-08-29 13:48:31 +0000
commit152c4fb81993749739bf41890bab6bdbf2825a1b (patch)
tree882722056429758f6cdbdd19fb97509164c3cf96 /apps/plugins
parent656625b30e17fe4033d0cf1476b8ee8c044d68a8 (diff)
downloadrockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.tar.gz
rockbox-152c4fb81993749739bf41890bab6bdbf2825a1b.zip
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/plugins')
-rw-r--r--apps/plugins/test_codec.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c
index 425bb03226..b1525ca30a 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)
831 831
832 enum 832 enum
833 { 833 {
834#ifdef HAVE_ADJUSTABLE_CPU_FREQ 834 SPEED_TEST = 0,
835 BOOST = 0,
836#endif
837 SPEED_TEST = 1,
838 SPEED_TEST_DIR, 835 SPEED_TEST_DIR,
839 WRITE_WAV, 836 WRITE_WAV,
840 SPEED_TEST_WITH_DSP, 837 SPEED_TEST_WITH_DSP,
@@ -843,13 +840,13 @@ enum plugin_status plugin_start(const void* parameter)
843 CHECKSUM, 840 CHECKSUM,
844 CHECKSUM_DIR, 841 CHECKSUM_DIR,
845 QUIT, 842 QUIT,
843#ifdef HAVE_ADJUSTABLE_CPU_FREQ
844 BOOST,
845#endif
846 }; 846 };
847 847
848 MENUITEM_STRINGLIST( 848 MENUITEM_STRINGLIST(
849 menu, "test_codec", NULL, 849 menu, "test_codec", NULL,
850#ifdef HAVE_ADJUSTABLE_CPU_FREQ
851 "Boosting",
852#endif
853 "Speed test", 850 "Speed test",
854 "Speed test folder", 851 "Speed test folder",
855 "Write WAV", 852 "Write WAV",
@@ -859,6 +856,9 @@ enum plugin_status plugin_start(const void* parameter)
859 "Checksum", 856 "Checksum",
860 "Checksum folder", 857 "Checksum folder",
861 "Quit", 858 "Quit",
859#ifdef HAVE_ADJUSTABLE_CPU_FREQ
860 "Boosting",
861#endif
862 ); 862 );
863 863
864 864