Home
last modified time | relevance | path

Searched refs:MidiMaxVelocity (Results 1 – 3 of 3) sorted by relevance

/dports/audio/lmms/lmms-1.2.2/src/core/midi/
H A DMidiPort.cpp53 m_fixedInputVelocityModel( -1, -1, MidiMaxVelocity, this, tr( "Fixed input velocity" ) ), in MidiPort()
54 m_fixedOutputVelocityModel( -1, -1, MidiMaxVelocity, this, tr( "Fixed output velocity" ) ), in MidiPort()
57 m_baseVelocityModel( MidiMaxVelocity/2, 1, MidiMaxVelocity, this, tr( "Base velocity" ) ), in MidiPort()
272 m_baseVelocityModel.setValue( MidiMaxVelocity ); in loadSettings()
/dports/audio/lmms/lmms-1.2.2/include/
H A DMidi.h129 const int MidiMaxVelocity = 127; variable
130 const int MidiDefaultVelocity = MidiMaxVelocity / 2;
H A DNote.h190 return qMin( MidiMaxVelocity, getVolume() * midiBaseVelocity / DefaultVolume ); in midiVelocity()