summaryrefslogtreecommitdiff
path: root/lib/rbcodec/test/warble.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-05-23 14:19:06 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-05-23 14:25:37 -0400
commit6e211ab3ac36cf792f6412cd61b8336c12533778 (patch)
treeb4136d81ba1719a24ed60c4bac75862111945024 /lib/rbcodec/test/warble.c
parentb7e0e1a0a3b44868ddb9ad60210158ccbe220e90 (diff)
downloadrockbox-6e211ab3ac36cf792f6412cd61b8336c12533778.tar.gz
rockbox-6e211ab3ac36cf792f6412cd61b8336c12533778.zip
Remove dsp_callback because DSP is now library code, not app code.
Yep, nope, not necessary anymore. Just call functions directly. Change-Id: I21dc35f8d674c2a9c8379b7cebd5613c1f05b5eb
Diffstat (limited to 'lib/rbcodec/test/warble.c')
-rw-r--r--lib/rbcodec/test/warble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/test/warble.c b/lib/rbcodec/test/warble.c
index 6aabf95d17..735fa2511f 100644
--- a/lib/rbcodec/test/warble.c
+++ b/lib/rbcodec/test/warble.c
@@ -387,7 +387,7 @@ static void perform_config(void)
387 } else if (!strncmp(name, "offset=", 7)) { 387 } else if (!strncmp(name, "offset=", 7)) {
388 ci.id3->offset = atoi(val); 388 ci.id3->offset = atoi(val);
389 } else if (!strncmp(name, "rate=", 5)) { 389 } else if (!strncmp(name, "rate=", 5)) {
390 dsp_callback(DSP_CALLBACK_SET_PITCH, atof(val) * PITCH_SPEED_100); 390 dsp_set_pitch(atof(val) * PITCH_SPEED_100);
391 } else if (!strncmp(name, "seek=", 5)) { 391 } else if (!strncmp(name, "seek=", 5)) {
392 codec_action = CODEC_ACTION_SEEK_TIME; 392 codec_action = CODEC_ACTION_SEEK_TIME;
393 codec_action_param = atoi(val); 393 codec_action_param = atoi(val);