forked from len0rd/rockbox
Moved the mpeg_sound_xxx() functions to sound.c and renamed them to sound_xxx()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6240 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
88d5aab5a1
commit
674eaca5ef
21 changed files with 841 additions and 778 deletions
|
@ -1055,17 +1055,17 @@ unsigned long splitedit_editor(struct mp3entry * mp3_to_split,
|
|||
#if (CONFIG_HWCODEC == MAS3587F) || (CONFIG_HWCODEC == MAS3539F)
|
||||
#if defined(SPLITEDIT_SPEED150) && defined(SPLITEDIT_SPEED100) && defined(SPLITEDIT_SPEED50)
|
||||
case SPLITEDIT_SPEED150:
|
||||
rb->mpeg_set_pitch(1500);
|
||||
rb->sound_set_pitch(1500);
|
||||
splitedit_invalidate_osci();
|
||||
break;
|
||||
|
||||
case SPLITEDIT_SPEED100:
|
||||
rb->mpeg_set_pitch(1000);
|
||||
rb->sound_set_pitch(1000);
|
||||
splitedit_invalidate_osci();
|
||||
break;
|
||||
|
||||
case SPLITEDIT_SPEED50:
|
||||
rb->mpeg_set_pitch(500);
|
||||
rb->sound_set_pitch(500);
|
||||
splitedit_invalidate_osci();
|
||||
break;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue