MS Encoder/Decoder

Download

     Disclaimer...

23   desc:MS Encoder/Decoder, v1.0.0
24  
25   @init
26   gain = 0.707;
27  
28   @slider
29  
30   @sample
31   left_in = spl0 * gain;
32   right_in = spl1 * gain;
33  
34   // create MS pair ENCODER
35   mid = left_in + right_in;
36   sides = left_in - right_in;
37  
38   // output
39   spl0 = mid;
40   spl1 = sides;

Download