author | llornkcor <llornkcor> | 2002-04-21 03:39:22 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-21 03:39:22 (UTC) |
commit | e22eee22120129209bf91c91bd3176f977c75493 (patch) (unidiff) | |
tree | d11225387cde06f3c22019f7ea6837b4a2d1ffe7 | |
parent | 6818807a46b80774de328b4c3001d4bc9d788666 (diff) | |
download | opie-e22eee22120129209bf91c91bd3176f977c75493.zip opie-e22eee22120129209bf91c91bd3176f977c75493.tar.gz opie-e22eee22120129209bf91c91bd3176f977c75493.tar.bz2 |
REALLY fixed when playing stream..., stopped stream
-rw-r--r-- | core/multimedia/opieplayer/loopcontrol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/loopcontrol.cpp b/core/multimedia/opieplayer/loopcontrol.cpp index 45c2d3e..15175d0 100644 --- a/core/multimedia/opieplayer/loopcontrol.cpp +++ b/core/multimedia/opieplayer/loopcontrol.cpp | |||
@@ -247,6 +247,8 @@ void LoopControl::startAudio() { | |||
247 | // } | 247 | // } |
248 | 248 | ||
249 | audioDevice->write( audioBuffer, samplesRead * 2 * channels ); | 249 | audioDevice->write( audioBuffer, samplesRead * 2 * channels ); |
250 | if( mediaPlayerState->isStreaming == FALSE); | ||
251 | |||
250 | audioSampleCounter = currentSample + samplesRead - 1; | 252 | audioSampleCounter = currentSample + samplesRead - 1; |
251 | 253 | ||
252 | moreAudio = readOk && (audioSampleCounter <= total_audio_samples); | 254 | moreAudio = readOk && (audioSampleCounter <= total_audio_samples); |