diff --git a/index.html b/index.html index 5b1bce414..801179f89 100644 --- a/index.html +++ b/index.html @@ -2918,9 +2918,11 @@

The AudioListener Interface

The StereoPannerNode Interface

-This interface represents a processing node which positions an incoming audio -stream in a stereo image using a low-cost equal-power panning algorithm. This -panning effect is common in positioning audio components in a stereo stream.

+ This interface represents a processing node which positions an incoming audio + stream in a stereo image using a low-cost equal-power panning algorithm. This panning effect + is common in positioning audio components in a stereo stream. +

     numberOfInputs  : 1
@@ -2932,17 +2934,25 @@ 

The StereoPannerNode Interface

- The input of this node is stereo (2 channels) and cannot be increased. Connections from nodes with fewer or more channels will be up-mixed or down-mixed appropriately, but a NotSupportedError will be thrown if an attempt is made to set channelCount to a value great than 2 or if channelCountMode is set to "max". + The input of this node is stereo (2 channels) and cannot be increased. + Connections from nodes with fewer or more channels will be up-mixed or down-mixed +appropriately, but a NotSupportedError will be thrown if an attempt is made +to set channelCount to a value great than 2 or if channelCountMode is set to +"max".

-The output of this node is hard-coded to stereo (2 channels) and cannot be configured. + The output of this node is hard-coded to stereo (2 channels) and cannot be + configured.

readonly attribute AudioParam pan
- The position of the input in the output's stereo image. -1 represents full left, +1 represents full right. Its default value is 0, and its nominal range is from -1 to 1. + The position of the input in the output's stereo image. -1 represents full + left, +1 represents full right. Its default value is 0, and its nominal + range is from -1 to 1. This parameter is a a-rate.
@@ -6267,10 +6277,12 @@

Background

href="#Spatialization-panning-algorithm">Panning Algorithm section for details of how these values are used.

- + +
+

Azimuth and Elevation

The following algorithm must be used to calculate the azimuth - and elevation: + and elevation: for the PannerNode

@@ -6335,87 +6347,129 @@ 

Panning Algorithm

The following algorithms must be implemented: