summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/sdl.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-04-15 14:00:48 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-04-15 14:00:48 -0400
commit9e71fd16a55bd69f2cf3345b5ab3459b29c1832d (patch)
tree4c60af99e480be496d4fe8b691c89b356b52e884 /firmware/drivers/audio/sdl.c
parentbbd991ad63805533ec4e2558061bbba48bfab1a9 (diff)
downloadrockbox-9e71fd16a55bd69f2cf3345b5ab3459b29c1832d.zip
rockbox-9e71fd16a55bd69f2cf3345b5ab3459b29c1832d.tar.gz
rockbox-9e71fd16a55bd69f2cf3345b5ab3459b29c1832d.tar.bz2
rockbox-9e71fd16a55bd69f2cf3345b5ab3459b29c1832d.tar.xz
Keep fixing 0c7b787 stuff
Change-Id: I0678d3307fbcad32156f9f4e0f8b90eed5a20d92
Diffstat (limited to 'firmware/drivers/audio/sdl.c')
-rw-r--r--firmware/drivers/audio/sdl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/drivers/audio/sdl.c b/firmware/drivers/audio/sdl.c
index eea10ad..dfc7737 100644
--- a/firmware/drivers/audio/sdl.c
+++ b/firmware/drivers/audio/sdl.c
@@ -21,7 +21,7 @@
#include <SDL_audio.h>
#include "config.h"
-#include "audiohw.h"
+#include "sound.h"
#include "pcm_sampr.h"
/**
@@ -85,6 +85,8 @@ void audiohw_set_treble(int value) { (void)value; }
#if CONFIG_CODEC != SWCODEC
void audiohw_set_channel(int value) { (void)value; }
void audiohw_set_stereo_width(int value){ (void)value; }
+void audiohw_set_pitch(int32_t value) { (void)value; }
+int32_t audiohw_get_pitch(void) { return PITCH_SPEED_100; }
#endif
#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
void audiohw_set_bass_cutoff(int value) { (void)value; }