Well, for instance in VU mode:Chris-S wrote:And this is different from Mid?TB-ProAudio wrote:In stereo mode, the average level of both channels is calculated: (l+r)/2.0.
My understanding is that Mid=Mono=(L+R)/2
EDIT: After some testing I think that in Stereo mode you calculate the max(L,R) and in Mid Mode the average (L+R)/2.
Lvl_stereo = (VU(Inp_l) + VU(Inp_r))/2.0; // first VU level calculation of each channel and then average level calculation
Lvl_mid = VU((Inp_l + Inp_r)/2.0); // first mid signal calculation and then VU level calculation
There must be a difference as Inp_l/Inp_r can be negative and positive, the result of VU() can only be positive. So if you have equal signals on left and right channel and left signal is phase-shifted against right signal Lvl_mid can even go down to zero, while Lvl_stereo still shows the average level of left and right signal. (all levels before dB calculation)
I hope this makes the difference of Stereo and Mid mode clear
