Lines Matching refs:pChannel
116 Channel* pChannel = Channel::AllocChannel( in NoteOn() local
122 if ( pChannel == NULL ) in NoteOn()
128 pChannel->SetKey( noteOnInfo.key, regionInfo.originalKey ); in NoteOn()
135 pChannel->SetInitVolume( initVolume ); in NoteOn()
136 pChannel->SetTune( regionInfo.pitch ); in NoteOn()
138 pChannel->SetAttack( regionInfo.adshrCurve.attack ); in NoteOn()
139 pChannel->SetHold( regionInfo.adshrCurve.hold ); in NoteOn()
140 pChannel->SetDecay( regionInfo.adshrCurve.decay ); in NoteOn()
141 pChannel->SetSustain( regionInfo.adshrCurve.sustain ); in NoteOn()
142 pChannel->SetRelease( regionInfo.adshrCurve.release ); in NoteOn()
145 pChannel->SetInitPan( initPan ); in NoteOn()
148 pChannel->SetKeyGroupId( regionInfo.keyGroup ); in NoteOn()
149 pChannel->SetIsIgnoreNoteOff( regionInfo.isIgnoreNoteOff ); in NoteOn()
150 pChannel->SetInterpolationType( regionInfo.interpolationType ); in NoteOn()
152 pChannel->Start( waveInfo, noteOnInfo.length, 0 ); in NoteOn()
154 return pChannel; in NoteOn()