diff options
author | Jens Arnold <amiconn@rockbox.org> | 2009-07-11 23:11:56 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2009-07-11 23:11:56 +0000 |
commit | fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2 (patch) | |
tree | b8a286f87871ce82c9024ae525f6434153f77b35 /apps/plugins/mpegplayer/audio_thread.c | |
parent | 34213c388bce18de3e5a609a3be5b4dfa075fee6 (diff) | |
download | rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.tar.gz rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.zip |
Fix plugins for the changed pitch scale from r21781
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21794 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/audio_thread.c')
-rw-r--r-- | apps/plugins/mpegplayer/audio_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c index f6552218b0..a901b721d8 100644 --- a/apps/plugins/mpegplayer/audio_thread.c +++ b/apps/plugins/mpegplayer/audio_thread.c | |||
@@ -481,7 +481,7 @@ static void audio_thread(void) | |||
481 | 481 | ||
482 | td.dsp = (struct dsp_config *)rb->dsp_configure(NULL, DSP_MYDSP, | 482 | td.dsp = (struct dsp_config *)rb->dsp_configure(NULL, DSP_MYDSP, |
483 | CODEC_IDX_AUDIO); | 483 | CODEC_IDX_AUDIO); |
484 | rb->sound_set_pitch(1000); | 484 | rb->sound_set_pitch(PITCH_SPEED_100); |
485 | rb->dsp_configure(td.dsp, DSP_RESET, 0); | 485 | rb->dsp_configure(td.dsp, DSP_RESET, 0); |
486 | rb->dsp_configure(td.dsp, DSP_SET_SAMPLE_DEPTH, MAD_F_FRACBITS); | 486 | rb->dsp_configure(td.dsp, DSP_SET_SAMPLE_DEPTH, MAD_F_FRACBITS); |
487 | 487 | ||