author | llornkcor <llornkcor> | 2002-07-18 04:36:33 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-18 04:36:33 (UTC) |
commit | 0559e149a7a07463a5eeab8bc6a5792bba14326b (patch) (unidiff) | |
tree | 19de4cb910cbf0d6d49d19264172316a30b7e730 | |
parent | 7fba4ce72b9201e3a04214c75a1031958090a618 (diff) | |
download | opie-0559e149a7a07463a5eeab8bc6a5792bba14326b.zip opie-0559e149a7a07463a5eeab8bc6a5792bba14326b.tar.gz opie-0559e149a7a07463a5eeab8bc6a5792bba14326b.tar.bz2 |
change for video
-rw-r--r-- | core/multimedia/opieplayer/loopcontrol.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/core/multimedia/opieplayer/loopcontrol.cpp b/core/multimedia/opieplayer/loopcontrol.cpp index 70e4a78..ba14882 100644 --- a/core/multimedia/opieplayer/loopcontrol.cpp +++ b/core/multimedia/opieplayer/loopcontrol.cpp | |||
@@ -215,56 +215,58 @@ void LoopControl::startVideo() { | |||
215 | } | 215 | } |
216 | 216 | ||
217 | } | 217 | } |
218 | } | 218 | } |
219 | 219 | ||
220 | 220 | ||
221 | void LoopControl::startAudio() { | 221 | void LoopControl::startAudio() { |
222 | 222 | ||
223 | audioMutex->lock(); | 223 | audioMutex->lock(); |
224 | if ( moreAudio ) { | 224 | if ( moreAudio ) { |
225 | 225 | ||
226 | if ( !isMuted && mediaPlayerState->curDecoder() ) { | 226 | if ( !isMuted && mediaPlayerState->curDecoder() ) { |
227 | 227 | ||
228 | currentSample = audioSampleCounter + 1; | 228 | currentSample = audioSampleCounter + 1; |
229 | 229 | ||
230 | if ( currentSample != audioSampleCounter + 1 ) | 230 | if ( currentSample != audioSampleCounter + 1 ) |
231 | qDebug("out of sync with decoder %i %i", currentSample, audioSampleCounter); | 231 | qDebug("out of sync with decoder %i %i", currentSample, audioSampleCounter); |
232 | 232 | ||
233 | long samplesRead = 0; | 233 | long samplesRead = 0; |
234 | bool readOk=mediaPlayerState->curDecoder()->audioReadSamples( (short*)audioBuffer, channels, 1024, samplesRead, stream ); | 234 | bool readOk=mediaPlayerState->curDecoder()->audioReadSamples( (short*)audioBuffer, channels, 1024, samplesRead, stream ); |
235 | long sampleWeShouldBeAt = long( playtime.elapsed() ) * freq / 1000; | 235 | long sampleWeShouldBeAt = long( playtime.elapsed() ) * freq / 1000; |
236 | long sampleWaitTime = currentSample - sampleWeShouldBeAt; | 236 | long sampleWaitTime = currentSample - sampleWeShouldBeAt; |
237 | 237 | ||
238 | // this causes drop outs not sure why its even here | 238 | // this causes drop outs not sure why its even here |
239 | // if ( ( sampleWaitTime > 2000 ) && ( sampleWaitTime < 20000 ) ) { | 239 | if ( hasVideoChannel ) { |
240 | // usleep( (long)((double)sampleWaitTime * 1000000.0 / freq) ); | 240 | if ( ( sampleWaitTime > 2000 ) && ( sampleWaitTime < 20000 ) ) { |
241 | // } | 241 | usleep( (long)((double)sampleWaitTime * 1000000.0 / freq) ); |
242 | // else if ( sampleWaitTime <= -5000 ) { | 242 | } |
243 | // qDebug("need to catch up by: %li (%i,%li)", -sampleWaitTime, currentSample, sampleWeShouldBeAt ); | 243 | else if ( sampleWaitTime <= -5000 ) { |
244 | // // //mediaPlayerState->curDecoder()->audioSetSample( sampleWeShouldBeAt, stream ); | 244 | qDebug("need to catch up by: %li (%i,%li)", -sampleWaitTime, currentSample, sampleWeShouldBeAt ); |
245 | // currentSample = sampleWeShouldBeAt; | 245 | // //mediaPlayerState->curDecoder()->audioSetSample( sampleWeShouldBeAt, stream ); |
246 | // } | 246 | currentSample = sampleWeShouldBeAt; |
247 | } | ||
248 | } | ||
247 | 249 | ||
248 | audioDevice->write( audioBuffer, samplesRead * 2 * channels ); | 250 | audioDevice->write( audioBuffer, samplesRead * 2 * channels ); |
249 | 251 | ||
250 | if( mediaPlayerState->isStreaming == FALSE) | 252 | if( mediaPlayerState->isStreaming == FALSE) |
251 | audioSampleCounter = currentSample + samplesRead - 1; | 253 | audioSampleCounter = currentSample + samplesRead - 1; |
252 | 254 | ||
253 | moreAudio = readOk && (audioSampleCounter <= total_audio_samples); | 255 | moreAudio = readOk && (audioSampleCounter <= total_audio_samples); |
254 | 256 | ||
255 | } else { | 257 | } else { |
256 | 258 | ||
257 | moreAudio = FALSE; | 259 | moreAudio = FALSE; |
258 | 260 | ||
259 | } | 261 | } |
260 | 262 | ||
261 | } | 263 | } |
262 | 264 | ||
263 | audioMutex->unlock(); | 265 | audioMutex->unlock(); |
264 | } | 266 | } |
265 | 267 | ||
266 | 268 | ||
267 | void LoopControl::killTimers() { | 269 | void LoopControl::killTimers() { |
268 | 270 | ||
269 | audioMutex->lock(); | 271 | audioMutex->lock(); |
270 | 272 | ||