Lines Matching refs:channel
412 Channel* channel; in StartChannel() local
413 channel = Channel::AllocChannel( in StartChannel()
421 if ( channel == NULL ) return false; in StartChannel()
424 channel->SetAttack( m_WaveSoundInfo.adshr.attack ); in StartChannel()
425 channel->SetHold( m_WaveSoundInfo.adshr.hold ); in StartChannel()
426 channel->SetDecay( m_WaveSoundInfo.adshr.decay ); in StartChannel()
427 channel->SetSustain( m_WaveSoundInfo.adshr.sustain ); in StartChannel()
428 channel->SetRelease( m_WaveSoundInfo.adshr.release ); in StartChannel()
430 channel->SetReleasePriorityFix( m_ReleasePriorityFixFlag ); in StartChannel()
431 channel->SetFrontBypass( IsFrontBypass() ); in StartChannel()
433 channel->Start( waveInfo, -1, startOffsetSamples ); in StartChannel()
436 m_pChannel = channel; in StartChannel()