annotate adpcm.h @ 3784:8b7722329a27

warning fix == cleanup
author arpi
date Thu, 27 Dec 2001 01:53:25 +0000
parents 734d0c0a8ab0
children 55603340d1b2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3756
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
1 #ifndef ADPCM_H
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
2 #define ADPCM_H
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
3
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
4 #define IMA_ADPCM_BLOCK_SIZE 0x22
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
5 #define IMA_ADPCM_SAMPLES_PER_BLOCK 0x40
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
6
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
7 static int adpcm_step[89] =
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
8 {
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
9 7, 8, 9, 10, 11, 12, 13, 14, 16, 17,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
10 19, 21, 23, 25, 28, 31, 34, 37, 41, 45,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
11 50, 55, 60, 66, 73, 80, 88, 97, 107, 118,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
12 130, 143, 157, 173, 190, 209, 230, 253, 279, 307,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
13 337, 371, 408, 449, 494, 544, 598, 658, 724, 796,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
14 876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
15 2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
16 5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
17 15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
18 };
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
19
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
20 static int adpcm_index[16] =
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
21 {
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
22 -1, -1, -1, -1, 2, 4, 6, 8,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
23 -1, -1, -1, -1, 2, 4, 6, 8
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
24 };
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
25
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
26 static int format_0x62_table[16] =
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
27 {
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
28 1, 3, 5, 7, 9, 11, 13, 15,
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
29 -1, -3, -5, -7, -9, -11, -13, -15
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
30 };
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
31
734d0c0a8ab0 Initial support for unified ADPCM decoder
melanson
parents:
diff changeset
32 #endif