Lines Matching refs:playAudioBuffer
743 ActivePlayer.playAudioBuffer = NULL; in THPPlayerPrepare()
915 if (ActivePlayer.playAudioBuffer) in THPPlayerSkip()
917 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in THPPlayerSkip()
918 ActivePlayer.playAudioBuffer = NULL; in THPPlayerSkip()
926 if (ActivePlayer.playAudioBuffer) in THPPlayerSkip()
928 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in THPPlayerSkip()
932 … ActivePlayer.playAudioBuffer = (THPAudioBuffer *)PopDecodedAudioBuffer(OS_MESSAGE_BLOCK); in THPPlayerSkip()
1136 … if (frameNumber == ActivePlayer.header.numFrames && ActivePlayer.playAudioBuffer == NULL) in PlayControl()
1881 if (ActivePlayer.playAudioBuffer == NULL) in GetAudioSample()
1883 …if ((ActivePlayer.playAudioBuffer = (THPAudioBuffer *)PopDecodedAudioBuffer(OS_MESSAGE_NOBLOCK)) =… in GetAudioSample()
1890 if (ActivePlayer.playAudioBuffer->validSample) in GetAudioSample()
1892 if (ActivePlayer.playAudioBuffer->validSample >= sample) in GetAudioSample()
1898 sampleNum = ActivePlayer.playAudioBuffer->validSample; in GetAudioSample()
1901 src = ActivePlayer.playAudioBuffer->curPtr; in GetAudioSample()
1928 ActivePlayer.playAudioBuffer->validSample -= sampleNum; in GetAudioSample()
1929 ActivePlayer.playAudioBuffer->curPtr = src; in GetAudioSample()
1931 if (ActivePlayer.playAudioBuffer->validSample == 0) in GetAudioSample()
1934 PushFreeAudioBuffer(ActivePlayer.playAudioBuffer); in GetAudioSample()
1935 ActivePlayer.playAudioBuffer = NULL; in GetAudioSample()