Surround-Sound Decoding

Surround-sound decoding contains member functions to enable and disable decoding, set the Surround Sound delay time, and set the cut-off frequency of the low-pass filter.

    To modify Surround Sound decoding settings

  1. Call AAM_GetSSDCaps to query the Surround Sound capabilities.
  2. Call AAM_SSDControl to modify the settings.

The following code example shows how to modify Surround Sound decoding settings.

if (AAM_SSDControl(AAM_FLAG_SSD_TYPE 
    | AAM_FLAG_GET, &lSurround) == 0)
{
    fSurroundOn = (lSurround != AAM_SSD_DISABLED);
}
AAM_EnableSSD(!fSurround)