Inspired by patch 4784 by Dominik, add pitch to WPS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9517 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9613b91164
commit
a482da3692
1 changed files with 14 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
#include "backdrop.h"
|
#include "backdrop.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include "dsp.h"
|
||||||
|
|
||||||
#ifdef HAVE_LCD_CHARCELLS
|
#ifdef HAVE_LCD_CHARCELLS
|
||||||
static bool draw_player_progress(struct gui_wps *gwps);
|
static bool draw_player_progress(struct gui_wps *gwps);
|
||||||
|
@ -719,6 +720,19 @@ static char* get_tag(struct wps_data* wps_data,
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#if (CONFIG_CODEC == SWCODEC)
|
||||||
|
case 's': /* Sound (DSP) Settings */
|
||||||
|
switch (tag[1])
|
||||||
|
{
|
||||||
|
case 'p': /* pitch */
|
||||||
|
*intval = sound_get_pitch();
|
||||||
|
snprintf(buf, buf_size, "%d.%d",
|
||||||
|
*intval / 10, *intval % 10);
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case 'm':
|
case 'm':
|
||||||
switch (tag[1])
|
switch (tag[1])
|
||||||
|
|
Loading…
Reference in a new issue