Remove the soundfield panning algorithm from the spec
authorEhsan Akhgari <ehsan@mozilla.com>
Mon, 06 May 2013 14:04:03 -0400
changeset 310 ba6f07a395c5
parent 309 c4b01f068f97
child 311 cfe4ae147c64
Remove the soundfield panning algorithm from the spec
webaudio/specification.html
--- a/webaudio/specification.html	Sat May 04 16:16:39 2013 -0400
+++ b/webaudio/specification.html	Mon May 06 14:04:03 2013 -0400
@@ -2600,8 +2600,7 @@
 
 enum <dfn>PanningModelType</dfn> {
   "equalpower",
-  "HRTF",
-  "soundfield"
+  "HRTF"
 };
 
 enum <dfn>DistanceModelType</dfn> {
@@ -2657,12 +2656,6 @@
             renders stereo output. </p>
           </dd>
       </dl>
-      <dl>
-        <dt id="dfn-SOUNDFIELD"><code>"soundfield"</code></dt>
-          <dd><p>An algorithm which spatializes multi-channel audio using sound field
-            algorithms. </p>
-          </dd>
-      </dl>
     </dd>
 </dl>
 <dl>
@@ -5334,13 +5327,11 @@
 // Old way
 const unsigned short EQUALPOWER = 0;
 const unsigned short HRTF = 1;
-const unsigned short SOUNDFIELD = 2;
 
 // New way
 enum <dfn>PanningModelType</dfn> {
   "equalpower",
-  "HRTF",
-  "soundfield"
+  "HRTF"
 };
 </pre>
 </blockquote>