Lines Matching refs:m_pVoice

73   m_pVoice( NULL )  in Channel()
291 if ( m_pVoice != NULL ) in Update()
293 m_pVoice->SetVolume( volume ); in Update()
294 m_pVoice->SetPitch( pitch ); in Update()
295 m_pVoice->SetPan( pan ); in Update()
296 m_pVoice->SetSurroundPan( surroundPan ); in Update()
298 m_pVoice->SetLpfFreq( lpfFreq ); in Update()
299 m_pVoice->SetBiquadFilter( m_BiquadType, m_BiquadValue ); in Update()
301 m_pVoice->SetMainSend( m_MainSend ); in Update()
304 m_pVoice->SetFxSend( static_cast<AuxBus>( i ), m_FxSend[ i ] ); in Update()
333 m_pVoice->Initialize( waveInfo, startOffset ); in Start()
339 m_pVoice->SetPanMode( m_PanMode ); in Start()
340 m_pVoice->SetPanCurve( m_PanCurve ); in Start()
341 m_pVoice->SetInterpolationType( m_InterpolationType ); in Start()
343 m_pVoice->Start(); in Start()
359 const int channelCount = m_pVoice->GetChannelCount(); in AppendWaveBuffer()
392 m_pVoice->SetAdpcmParam( ch, param ); in AppendWaveBuffer()
413 m_pVoice->AppendWaveBuffer( ch, pBuffer0, ! waveInfo.loopFlag ); in AppendWaveBuffer()
425 m_pVoice->AppendWaveBuffer( ch, pBuffer1, true ); in AppendWaveBuffer()
456 if ( m_pVoice != NULL ) in Release()
460 m_pVoice->SetPriority( Channel::PRIORITY_RELEASE ); in Release()
496 if ( m_pVoice == NULL ) return; in Stop()
498 m_pVoice->Stop(); in Stop()
499 m_pVoice->Free(); in Stop()
500 m_pVoice = NULL; in Stop()
557 NW_NULL_ASSERT( m_pVoice ); in GetCurrentPlayingSample()
560 return m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
564 return m_LoopStartFrame + m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
568 return m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
615 channel->m_pVoice = NULL; in VoiceCallbackFunc()
665 channel->m_pVoice = voice; in AllocChannel()
690 if ( m_pChannel->m_pVoice == NULL ) return; in InvalidateData()
694 int channelCount = m_pChannel->m_pVoice->GetChannelCount(); in InvalidateData()
712 m_pChannel->m_pVoice->GetFormat() ) ); in InvalidateData()