Lines Matching refs:m_pSound
86 SoundHandle() : m_pSound( NULL ) { } in SoundHandle()
112 if ( IsAttachedSound() ) m_pSound->StartPrepared(); in StartPrepared()
143 if ( IsAttachedSound() ) m_pSound->Stop( fadeFrames ); in Stop()
173 if ( IsAttachedSound() ) m_pSound->Pause( flag, fadeFrames ); in Pause()
192 bool IsPrepared() const { return IsAttachedSound() && m_pSound->IsPrepared(); } in IsPrepared()
201 bool IsPause() const { return IsAttachedSound() && m_pSound->IsPause(); } in IsPause()
228 if ( IsAttachedSound() ) m_pSound->FadeIn( frames ); in FadeIn()
245 if ( IsAttachedSound() ) return m_pSound->GetRemainingFadeFrames(); in GetRemainingFadeFrames()
262 if ( IsAttachedSound() ) return m_pSound->GetRemainingPauseFadeFrames(); in GetRemainingPauseFadeFrames()
300 if ( IsAttachedSound() ) m_pSound->SetVolume( volume, frames );
326 if ( IsAttachedSound() ) m_pSound->SetPitch( pitch ); in SetPitch()
351 if ( IsAttachedSound() ) m_pSound->SetPan( pan ); in SetPan()
377 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
402 if ( IsAttachedSound() ) m_pSound->SetLpfFreq( lpfFreq ); in SetLpfFreq()
446 m_pSound->SetBiquadFilter( type, value ); in SetBiquadFilter()
475 if ( IsAttachedSound() ) m_pSound->SetPlayerPriority( priority ); in SetPlayerPriority()
509 if ( IsAttachedSound() ) m_pSound->SetMainSend( send ); in SetMainSend()
536 if ( IsAttachedSound() ) m_pSound->SetFxSend( bus, send ); in SetFxSend()
550 bool IsAttachedSound() const { return m_pSound != NULL; } in IsAttachedSound()
587 if ( IsAttachedSound() ) m_pSound->SetId( id ); in SetId()
604 if ( IsAttachedSound() ) return m_pSound->GetId(); in GetId()
613 return &m_pSound->GetAmbientParam(); in GetAmbientParam()
627 internal::BasicSound* detail_GetAttachedSound() { return m_pSound; } in detail_GetAttachedSound()
629 const internal::BasicSound* detail_GetAttachedSound() const { return m_pSound; } in detail_GetAttachedSound()
638 internal::BasicSound* m_pSound; variable