Using a exponential curve (x^4) instead of linear mixing for the internal mixer.

pull/210/head
Holger Wirtz 3 years ago
parent 1b681a814c
commit 32810b9c04
  1. 2
      src/effect_mixer.hpp
  2. 2
      src/serialmididevice.cpp

@ -52,7 +52,7 @@ public:
gain = MAX_GAIN;
else if (gain < MIN_GAIN)
gain = MIN_GAIN;
multiplier[channel] = gain;
multiplier[channel] = powf(gain, 4); // see: https://www.dr-lex.be/info-stuff/volumecontrols.html#ideal2
}
void gain(float32_t gain)

@ -57,6 +57,8 @@ void CSerialMIDIDevice::Process (void)
int nResult = m_Serial.Read (Buffer, sizeof Buffer);
if (nResult <= 0)
{
if(nResult!=0)
printf("Serial-Read: %d\n",nResult);
return;
}

Loading…
Cancel
Save