You are here

Add new comment

Hi Rui,

you didn't take this into code, did you?
Just a small addition:
In file qtractorMidiControl.cpp I added two lines after line 327
if (fValue > 1.0) fValue = 1.0;
if (fValue < 0.0) fValue = 0.0;
to make sure that the audio level higher than 0.0db are just cut up. The same works for TrackPanning command.

The problem is, that if the gain value of an audio track is higher than 0.0dB, the MIDI controller gets wrong values... I think we could just cut up values over 0.0dB. I think, the check for the overun now has to be after line 306, and the same after line 368. What do you think?