Lines Matching refs:channel
410 Channel* channel; in StartChannel() local
411 channel = Channel::AllocChannel( in StartChannel()
419 if ( channel == NULL ) return false; in StartChannel()
422 channel->SetAttack( m_WaveSoundInfo.adshr.attack ); in StartChannel()
423 channel->SetHold( m_WaveSoundInfo.adshr.hold ); in StartChannel()
424 channel->SetDecay( m_WaveSoundInfo.adshr.decay ); in StartChannel()
425 channel->SetSustain( m_WaveSoundInfo.adshr.sustain ); in StartChannel()
426 channel->SetRelease( m_WaveSoundInfo.adshr.release ); in StartChannel()
428 channel->SetReleasePriorityFix( m_ReleasePriorityFixFlag ); in StartChannel()
429 channel->SetFrontBypass( IsFrontBypass() ); in StartChannel()
431 channel->Start( waveInfo, -1, startOffsetSamples ); in StartChannel()
434 m_pChannel = channel; in StartChannel()