projects
/
projects
/
chimara
/
chimara.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88f7453
)
Stop playing old sound when playing new sound
author
P. F. Chimento
<philip.chimento@gmail.com>
Sun, 30 Jan 2011 12:44:25 +0000
(13:44 +0100)
committer
P. F. Chimento
<philip.chimento@gmail.com>
Sun, 30 Jan 2011 12:44:25 +0000
(13:44 +0100)
Sound playing now stops any previous sound already playing on that sound
channel.
libchimara/schannel.c
patch
|
blob
|
history
diff --git
a/libchimara/schannel.c
b/libchimara/schannel.c
index 4ec75c0985c1df4ea8555ffc2434a0fa2155dc1c..036c76094b4b1939373d7f6ca4e382ba90cef6a3 100644
(file)
--- a/
libchimara/schannel.c
+++ b/
libchimara/schannel.c
@@
-371,8
+371,11
@@
glui32
glk_schannel_play_ext(schanid_t chan, glui32 snd, glui32 repeats, glui32 notify)
{
VALID_SCHANNEL(chan, return 0);
-#ifdef GSTREAMER_SOUND
+#ifdef GSTREAMER_SOUND
ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
+
+ /* Stop the previous sound */
+ clean_up_after_playing_sound(chan);
if(!glk_data->resource_map) {
if(!glk_data->resource_load_callback) {