[Mplayer-cvslog] CVS: main/libao2 pl_surround.c,1.3,1.4

Stephen Davies steve at mplayer.dev.hu
Sun Dec 9 19:55:03 CET 2001


Update of /cvsroot/mplayer/main/libao2
In directory mplayer:/var/tmp.root/cvs-serv3221

Modified Files:
	pl_surround.c 
Log Message:
still fiddling with surround levels

Index: pl_surround.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/pl_surround.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pl_surround.c	7 Dec 2001 22:36:33 -0000	1.3
+++ pl_surround.c	9 Dec 2001 18:54:54 -0000	1.4
@@ -156,19 +156,21 @@
   out = pl_surround.databuf;  in = (int16_t *)ao_plugin_data.data;
   for (i=0; i<samples; i++) {
 
-    // About the .707 here and the /2 for surround:
+    // About volume balancing...
     //   Surround encoding does the following:
     //       Lt=L+.707*C+.707*S, Rt=R+.707*C-.707*S
-    //   So S needs to be extracted as:
-    //       .707*(L-R)
-    //   But L-R could still be as much as 32767-(-32768), way off scale
-    //   for signed 16 bits, so to avoid running out of bits, whilst still
-    //   keeping levels in balance, we scale L and R down by 3dB (*.707),
-    //   and scale the surround down by 6dB (.707*.707=.5)
+    //   So S should to be extracted as:
+    //       .707*(Lt-Rt)
+    //   But we are splitting the S to two output channels, so we
+    //   must take another 3dB off as we split it:
+    //       Ls=Rs=.707*.707*(Lt-Rt)
+    //            = .5*(Lt-Rt)
+    //   This result is handy as it is also sure not to clip, even
+    //   though L could be full scale +ve, R full scale -ve
 
     // front left and right
-    out[0] = in[0]*.707;
-    out[1] = in[1]*.707;
+    out[0] = in[0];
+    out[1] = in[1];
     // surround - from 15msec ago
     out[2] = pl_surround.delaybuf[pl_surround.delaybuf_ptr];
     out[3] = -out[2];
@@ -184,6 +186,3 @@
   ao_plugin_data.len=samples*sizeof(int16_t)*4;
   return 1;
 }
-
-
-




More information about the MPlayer-cvslog mailing list