Total Complexity | 5 |
Complexity/F | 1 |
Lines of Code | 13 |
Function Count | 5 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | // Type definitions for imaadpcm 4.0 |
||
2 | // Project: https://github.com/rochars/imaadpcm |
||
3 | // Definitions by: Rafael S. Rocha <https://github.com/rochars> |
||
4 | // Definitions: https://github.com/rochars/imaadpcm |
||
5 | |||
6 | export function encode(samples: Int16Array): Uint8Array; |
||
7 | |||
8 | export function decode(samples: Uint8Array, blockAlign?: number): Int16Array; |
||
9 | |||
10 | export function encodeBlock(block: Array<number>): Array<number>; |
||
11 | |||
12 | export function decodeBlock(block: Array<number>): Array<number>; |
||
13 |