Lines Matching refs:pChannel
103 Channel* pChannel = Channel::AllocChannel( in NoteOn() local
109 if ( pChannel == NULL ) in NoteOn()
115 pChannel->SetKey( noteOnInfo.key, regionInfo.originalKey ); in NoteOn()
122 pChannel->SetInitVolume( initVolume ); in NoteOn()
123 pChannel->SetTune( regionInfo.pitch ); in NoteOn()
125 pChannel->SetAttack( regionInfo.adshrCurve.attack ); in NoteOn()
126 pChannel->SetHold( regionInfo.adshrCurve.hold ); in NoteOn()
127 pChannel->SetDecay( regionInfo.adshrCurve.decay ); in NoteOn()
128 pChannel->SetSustain( regionInfo.adshrCurve.sustain ); in NoteOn()
129 pChannel->SetRelease( regionInfo.adshrCurve.release ); in NoteOn()
132 pChannel->SetInitPan( initPan ); in NoteOn()
135 pChannel->SetKeyGroupId( regionInfo.keyGroup ); in NoteOn()
136 pChannel->SetIsIgnoreNoteOff( regionInfo.isIgnoreNoteOff ); in NoteOn()
137 pChannel->SetInterpolationType( regionInfo.interpolationType ); in NoteOn()
139 pChannel->Start( waveInfo, noteOnInfo.length, 0 ); in NoteOn()
141 return pChannel; in NoteOn()