that space triggered my ocd
This commit is contained in:
parent
62585f90e0
commit
22cfce90b2
|
|
@ -317,11 +317,11 @@ int fm_mpx_get_samples(float *mpx_buffer, int drds, float compressor_decay, floa
|
|||
if(enablecompressor) out_right=out_right/(right_max+compressor_max_gain_recip);
|
||||
}
|
||||
if(enablecompressor) out_left= out_left/(left_max+compressor_max_gain_recip); // Adjust volume with limited maximum gain
|
||||
if(drds) mpx_buffer[i] = 0.0; //do not remove this, the bandwidht will go nuts
|
||||
if(paused) {
|
||||
out_left = 0;
|
||||
if(channels > 1) out_right = 0;
|
||||
}
|
||||
if(drds) mpx_buffer[i] = 0; //do not remove this, the bandwidht will go nuts
|
||||
|
||||
// Generate the stereo mpx
|
||||
if( channels > 1 ) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue