Lines Matching refs:m_pSound

64     StreamSoundHandle() : m_pSound( NULL ) { }  in StreamSoundHandle()
118 if ( IsAttachedSound() ) m_pSound->StartPrepared(); in StartPrepared()
146 if ( IsAttachedSound() ) m_pSound->Stop( fadeFrames ); in Stop()
179 if ( IsAttachedSound() ) m_pSound->Pause( flag, fadeFrames ); in Pause()
197 bool IsPrepared() const { return IsAttachedSound() && m_pSound->IsPrepared(); } in IsPrepared()
208 bool IsPause() const { return IsAttachedSound() && m_pSound->IsPause(); } in IsPause()
223 return m_pSound->IsSuspendByLoadingDelay(); in IsSuspendByLoadingDelay()
252 if ( IsAttachedSound() ) m_pSound->FadeIn( frames ); in FadeIn()
294 if ( IsAttachedSound() ) m_pSound->SetVolume( volume, frames );
319 if ( IsAttachedSound() ) m_pSound->SetPitch( pitch ); in SetPitch()
343 if ( IsAttachedSound() ) m_pSound->SetPan( pan ); in SetPan()
371 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
399 if ( IsAttachedSound() ) m_pSound->SetLpfFreq( lpfFreq ); in SetLpfFreq()
419 if ( IsAttachedSound() ) m_pSound->SetPlayerPriority( priority ); in SetPlayerPriority()
448 if ( IsAttachedSound() ) m_pSound->SetMainSend( send ); in SetMainSend()
475 if ( IsAttachedSound() ) m_pSound->SetFxSend( bus, send ); in SetFxSend()
518 if ( IsAttachedSound() ) m_pSound->SetTrackVolume( trackBitFlag, volume, frames );
549 if ( IsAttachedSound() ) m_pSound->SetTrackPan( trackBitFlag, pan ); in SetTrackPan()
581 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
597 bool IsAttachedSound() const { return m_pSound != NULL; } in IsAttachedSound()
636 if ( IsAttachedSound() ) m_pSound->SetId( id ); in SetId()
653 if ( IsAttachedSound() ) return m_pSound->GetId(); in GetId()
678 return &m_pSound->GetAmbientParam(); in GetAmbientParam()
706 return m_pSound->ReadStreamDataInfo( pInfo ); in ReadStreamDataInfo()
723 return m_pSound->GetPlayLoopCount(); in GetPlayLoopCount()
740 return m_pSound->GetPlaySamplePosition(); in GetPlaySamplePosition()
769 return m_pSound->GetFilledBufferPercentage(); in GetFilledBufferPercentage()
782 internal::StreamSound* detail_GetAttachedSound() { return m_pSound; } in detail_GetAttachedSound()
785 const internal::StreamSound* detail_GetAttachedSound() const { return m_pSound; } in detail_GetAttachedSound()
790 internal::StreamSound* m_pSound; variable