diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-09-08 15:18:06 +0100 |
---|---|---|
committer | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-09-17 14:21:05 +0100 |
commit | 9fd8589c9d4574c04a989a6c5e1d335779d2b244 (patch) | |
tree | eb97d0032314c76e6735bb34af1415e8210d4a6d /src/multimedia/audio | |
parent | 4b0435b0dc2287756221e35f2ebe9493aad8306d (diff) | |
download | qt4-tools-9fd8589c9d4574c04a989a6c5e1d335779d2b244.tar.gz |
Discard buffer pointer when DevSound is stopped
Task-number: QTBUG-13504
Reviewed-by: Derick Hawcroft
Diffstat (limited to 'src/multimedia/audio')
-rw-r--r-- | src/multimedia/audio/qaudiooutput_symbian_p.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/multimedia/audio/qaudiooutput_symbian_p.cpp b/src/multimedia/audio/qaudiooutput_symbian_p.cpp index c8b6ecff2a..cc32f9ddcb 100644 --- a/src/multimedia/audio/qaudiooutput_symbian_p.cpp +++ b/src/multimedia/audio/qaudiooutput_symbian_p.cpp @@ -195,6 +195,7 @@ void QAudioOutputPrivate::suspend() // lost data with silence following a call to resume(), in order to // ensure that processedUSecs() returns the correct value. m_devSound->stop(); + m_devSoundBuffer = 0; m_totalSamplesPlayed += samplesPlayed; // Calculate the amount of data dropped |