Lines Matching refs:m_pVoice

71   m_pVoice( NULL )  in Channel()
289 if ( m_pVoice != NULL ) in Update()
291 m_pVoice->SetVolume( volume ); in Update()
292 m_pVoice->SetPitch( pitch ); in Update()
293 m_pVoice->SetPan( pan ); in Update()
294 m_pVoice->SetSurroundPan( surroundPan ); in Update()
296 m_pVoice->SetLpfFreq( lpfFreq ); in Update()
297 m_pVoice->SetBiquadFilter( m_BiquadType, m_BiquadValue ); in Update()
299 m_pVoice->SetMainSend( m_MainSend ); in Update()
302 m_pVoice->SetFxSend( static_cast<AuxBus>( i ), m_FxSend[ i ] ); in Update()
331 m_pVoice->Initialize( waveInfo, startOffset ); in Start()
337 m_pVoice->SetPanMode( m_PanMode ); in Start()
338 m_pVoice->SetPanCurve( m_PanCurve ); in Start()
339 m_pVoice->SetInterpolationType( m_InterpolationType ); in Start()
341 m_pVoice->Start(); in Start()
357 const int channelCount = m_pVoice->GetChannelCount(); in AppendWaveBuffer()
390 m_pVoice->SetAdpcmParam( ch, param ); in AppendWaveBuffer()
411 m_pVoice->AppendWaveBuffer( ch, pBuffer0, ! waveInfo.loopFlag ); in AppendWaveBuffer()
423 m_pVoice->AppendWaveBuffer( ch, pBuffer1, true ); in AppendWaveBuffer()
454 if ( m_pVoice != NULL ) in Release()
458 m_pVoice->SetPriority( Channel::PRIORITY_RELEASE ); in Release()
494 if ( m_pVoice == NULL ) return; in Stop()
496 m_pVoice->Stop(); in Stop()
497 m_pVoice->Free(); in Stop()
498 m_pVoice = NULL; in Stop()
555 NW_NULL_ASSERT( m_pVoice ); in GetCurrentPlayingSample()
558 return m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
562 return m_LoopStartFrame + m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
566 return m_pVoice->GetCurrentPlayingSample(); in GetCurrentPlayingSample()
613 channel->m_pVoice = NULL; in VoiceCallbackFunc()
663 channel->m_pVoice = voice; in AllocChannel()
688 if ( m_pChannel->m_pVoice == NULL ) return; in InvalidateData()
692 int channelCount = m_pChannel->m_pVoice->GetChannelCount(); in InvalidateData()
710 m_pChannel->m_pVoice->GetFormat() ) ); in InvalidateData()