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.tar.gz
rockbox-9e71fd16a55bd69f2cf3345b5ab3459b29c1832d.zip
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 eea10ad12c..dfc77378bd 100644
--- a/firmware/drivers/audio/sdl.c
+++ b/firmware/drivers/audio/sdl.c
@@ -21,7 +21,7 @@
21 21
22#include <SDL_audio.h> 22#include <SDL_audio.h>
23#include "config.h" 23#include "config.h"
24#include "audiohw.h" 24#include "sound.h"
25#include "pcm_sampr.h" 25#include "pcm_sampr.h"
26 26
27/** 27/**
@@ -85,6 +85,8 @@ void audiohw_set_treble(int value) { (void)value; }
85#if CONFIG_CODEC != SWCODEC 85#if CONFIG_CODEC != SWCODEC
86void audiohw_set_channel(int value) { (void)value; } 86void audiohw_set_channel(int value) { (void)value; }
87void audiohw_set_stereo_width(int value){ (void)value; } 87void audiohw_set_stereo_width(int value){ (void)value; }
88void audiohw_set_pitch(int32_t value) { (void)value; }
89int32_t audiohw_get_pitch(void) { return PITCH_SPEED_100; }
88#endif 90#endif
89#if defined(AUDIOHW_HAVE_BASS_CUTOFF) 91#if defined(AUDIOHW_HAVE_BASS_CUTOFF)
90void audiohw_set_bass_cutoff(int value) { (void)value; } 92void audiohw_set_bass_cutoff(int value) { (void)value; }