Lines Matching refs:channel
402 Channel* channel; in StartChannel() local
403 channel = Channel::AllocChannel( in StartChannel()
411 if ( channel == NULL ) return false; in StartChannel()
414 channel->SetAttack( m_WaveSoundInfo.adshr.attack ); in StartChannel()
415 channel->SetHold( m_WaveSoundInfo.adshr.hold ); in StartChannel()
416 channel->SetDecay( m_WaveSoundInfo.adshr.decay ); in StartChannel()
417 channel->SetSustain( m_WaveSoundInfo.adshr.sustain ); in StartChannel()
418 channel->SetRelease( m_WaveSoundInfo.adshr.release ); in StartChannel()
420 channel->SetReleasePriorityFix( m_ReleasePriorityFixFlag ); in StartChannel()
421 channel->SetFrontBypass( IsFrontBypass() ); in StartChannel()
423 channel->Start( waveInfo, -1, startOffsetSamples ); in StartChannel()
426 m_pChannel = channel; in StartChannel()