From 3ba0060ac1fa1c39596c51d4bf259142e6d1847f Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Mon, 13 Feb 2006 21:46:28 +0000 Subject: Backlight support for 8-bit targets in SDL sim. Redo sound handling. Still doesn't work right, but is closer to how the actual Rockbox system does it. Move some stub functions in to Win32 and X11 sims to keep them compiling. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8686 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/x11/sound.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'uisimulator/x11/sound.c') diff --git a/uisimulator/x11/sound.c b/uisimulator/x11/sound.c index dd875e41f5..06d9c014ff 100644 --- a/uisimulator/x11/sound.c +++ b/uisimulator/x11/sound.c @@ -21,6 +21,7 @@ #ifdef ROCKBOX_HAS_SIMSOUND /* play sound in sim enabled */ +#include #include #include #include @@ -31,6 +32,8 @@ #include "sound.h" +static bool playing = false; + int sim_sound_init(void) { int fd; @@ -92,4 +95,46 @@ void sound_playback_thread(void) } +/* Stubs for PCM audio playback. */ +bool pcm_is_playing(void) +{ + return playing; +} + +void pcm_mute(bool state) +{ + (void)state; +} + +void pcm_play_pause(bool state) +{ + (void)state; +} + +bool pcm_is_paused(void) +{ + return false; +} + +void pcm_play_stop(void) +{ + playing = false; +} + +void pcm_init(void) +{ +} + +void (*sound_get_pcm)(unsigned char** start, long* size); +void pcm_play_data(void (*get_more)(unsigned char** start, long* size)) +{ + sound_get_pcm = get_more; + playing = true; +} + +long pcm_get_bytes_waiting(void) +{ + return 0; +} + #endif /* ROCKBOX_HAS_SIMSOUND */ -- cgit v1.2.3