projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2be56c9
)
[Title]audio: remove restarting unflushed data
author
munkyu.im
<munkyu.im@samsung.com>
Wed, 29 Aug 2012 03:59:20 +0000
(12:59 +0900)
committer
munkyu.im
<munkyu.im@samsung.com>
Wed, 29 Aug 2012 03:59:20 +0000
(12:59 +0900)
[Type]
[Module]
[Priority]Minor
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]
audio/winwaveaudio.c
patch
|
blob
|
history
diff --git
a/audio/winwaveaudio.c
b/audio/winwaveaudio.c
index 234e3dc23ca8feef97eeaf5cd057f8dec732e782..3d6f8f70a4dc8904f7f92c38e3254d571c30d628 100644
(file)
--- a/
audio/winwaveaudio.c
+++ b/
audio/winwaveaudio.c
@@
-349,6
+349,9
@@
static int winwave_ctl_out (HWVoiceOut *hw, int cmd, ...)
else {
hw->poll_mode = 0;
}
+#if defined(CONFIG_MARU)
+ wave->paused = 0;
+#else
if (wave->paused) {
mr = waveOutRestart (wave->hwo);
if (mr != MMSYSERR_NOERROR) {
@@
-356,6
+359,7
@@
static int winwave_ctl_out (HWVoiceOut *hw, int cmd, ...)
}
wave->paused = 0;
}
+#endif
}
return 0;