The parameter samples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
14
15
/**
16
* Decode IMA ADPCM samples into 16-bit PCM samples.
17
* @param {!Uint8Array} adpcmSamples A array of ADPCM samples.
The parameter blockAlign is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
The parameter adpcmSamples is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
22
23
/**
24
* Encode a block of 505 16-bit samples as 4-bit ADPCM samples.
25
* @param {!Array<number>} block A sample block of 505 samples.
The parameter block is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
29
30
/**
31
* Decode a block of ADPCM samples into 16-bit PCM samples.
32
* @param {!Array<number>} block A adpcm sample block.
The parameter block is not used and could be removed.
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.