Lines Matching refs:m_pSound
62 StreamSoundHandle() : m_pSound( NULL ) { } in StreamSoundHandle()
116 if ( IsAttachedSound() ) m_pSound->StartPrepared(); in StartPrepared()
141 if ( IsAttachedSound() ) m_pSound->Stop( fadeFrames ); in Stop()
171 if ( IsAttachedSound() ) m_pSound->Pause( flag, fadeFrames ); in Pause()
189 bool IsPrepared() const { return IsAttachedSound() && m_pSound->IsPrepared(); } in IsPrepared()
200 bool IsPause() const { return IsAttachedSound() && m_pSound->IsPause(); } in IsPause()
214 return m_pSound->IsSuspendByLoadingDelay(); in IsSuspendByLoadingDelay()
240 if ( IsAttachedSound() ) m_pSound->FadeIn( frames ); in FadeIn()
279 if ( IsAttachedSound() ) m_pSound->SetVolume( volume, frames );
304 if ( IsAttachedSound() ) m_pSound->SetPitch( pitch ); in SetPitch()
328 if ( IsAttachedSound() ) m_pSound->SetPan( pan ); in SetPan()
356 if ( IsAttachedSound() ) m_pSound->SetSurroundPan( surroundPan ); in SetSurroundPan()
384 if ( IsAttachedSound() ) m_pSound->SetLpfFreq( lpfFreq ); in SetLpfFreq()
404 if ( IsAttachedSound() ) m_pSound->SetPlayerPriority( priority ); in SetPlayerPriority()
433 if ( IsAttachedSound() ) m_pSound->SetMainSend( send ); in SetMainSend()
460 if ( IsAttachedSound() ) m_pSound->SetFxSend( bus, send ); in SetFxSend()
500 if ( IsAttachedSound() ) m_pSound->SetTrackVolume( trackBitFlag, volume, frames );
531 if ( IsAttachedSound() ) m_pSound->SetTrackPan( trackBitFlag, pan ); in SetTrackPan()
563 if ( IsAttachedSound() ) m_pSound->SetTrackSurroundPan( trackBitFlag, surroundPan ); in SetTrackSurroundPan()
579 bool IsAttachedSound() const { return m_pSound != NULL; } in IsAttachedSound()
618 if ( IsAttachedSound() ) m_pSound->SetId( id ); in SetId()
635 if ( IsAttachedSound() ) return m_pSound->GetId(); in GetId()
660 return &m_pSound->GetAmbientParam(); in GetAmbientParam()
688 return m_pSound->ReadStreamDataInfo( pInfo ); in ReadStreamDataInfo()
705 return m_pSound->GetPlayLoopCount(); in GetPlayLoopCount()
722 return m_pSound->GetPlaySamplePosition(); in GetPlaySamplePosition()
753 return m_pSound->GetFilledBufferPercentage(); in GetFilledBufferPercentage()
766 internal::StreamSound* detail_GetAttachedSound() { return m_pSound; } in detail_GetAttachedSound()
769 const internal::StreamSound* detail_GetAttachedSound() const { return m_pSound; } in detail_GetAttachedSound()
774 internal::StreamSound* m_pSound; variable