Lines Matching refs:playAudioBuffer
754 ActivePlayer.playAudioBuffer = NULL; in THPPlayerPrepare()
926 if (ActivePlayer.playAudioBuffer) in THPPlayerSkip()
928 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in THPPlayerSkip()
929 ActivePlayer.playAudioBuffer = NULL; in THPPlayerSkip()
937 if (ActivePlayer.playAudioBuffer) in THPPlayerSkip()
939 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in THPPlayerSkip()
943 … ActivePlayer.playAudioBuffer = (THPAudioBuffer *)PopDecodedAudioBuffer(OS_MESSAGE_BLOCK); in THPPlayerSkip()
1147 … if (frameNumber == ActivePlayer.header.numFrames && ActivePlayer.playAudioBuffer == NULL) in PlayControl()
2292 if (ActivePlayer.playAudioBuffer == NULL) in GetAudioSample()
2294 …if ((ActivePlayer.playAudioBuffer = (THPAudioBuffer *)PopDecodedAudioBuffer(OS_MESSAGE_NOBLOCK)) =… in GetAudioSample()
2301 if (ActivePlayer.playAudioBuffer->validSample) in GetAudioSample()
2303 if (ActivePlayer.playAudioBuffer->validSample >= sample) in GetAudioSample()
2309 sampleNum = ActivePlayer.playAudioBuffer->validSample; in GetAudioSample()
2312 src = ActivePlayer.playAudioBuffer->curPtr; in GetAudioSample()
2339 ActivePlayer.playAudioBuffer->validSample -= sampleNum; in GetAudioSample()
2340 ActivePlayer.playAudioBuffer->curPtr = src; in GetAudioSample()
2342 if (ActivePlayer.playAudioBuffer->validSample == 0) in GetAudioSample()
2345 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in GetAudioSample()
2346 ActivePlayer.playAudioBuffer = NULL; in GetAudioSample()