Source: Engine/Primitive/AxPCMFormat.js

/**
 * Represents the format of a Pulse-Code Modulation (PCM) sound
 * @param {Integer} sampleSizeInBytes The size in bytes of a sample. This is 1 for 8-bit sound, 2 for 16-bit sound and so on
 * @param {Integer} frequency description The frequency of the sound in Hz
 * @param {Integer} channelsCount description The number of channels of the sound
 * @constructor
 */
function AxPCMFormat(sampleSizeInBytes, frequency, channelsCount)
{
    this.sampleSizeInBytes = sampleSizeInBytes;
    this.frequency = frequency;
    this.channelsCount = channelsCount;
}

Documentation generated by JSDoc 3.5.3 on Mon Feb 19 2018 20:39:26 GMT+0200 (FLE Standard Time)