R-PAGE
Resistance's Portable-Adventure-Game-Engine
adpcm.h
Go to the documentation of this file.
1 #ifndef __MT_ADPCM__
2 #define __MT_ADPCM__
3 
4 #include <exec/types.h>
5 #define SWAP(x) x
6 #define SWAPW(x) x
7 #define attrib(x)
8 
9 #define MAKE_ID(a,b,c,d) SWAP(( (a)<<24 | (b)<<16 | (c)<<8 | (d) ))
10 
11 
12 static int Matrix[3][8] =
13 {
14  {0x3800, 0x5600, 0, 0, 0, 0, 0, 0},
15  {0x399a, 0x3a9f, 0x4d14, 0x6607, 0, 0, 0, 0},
16  {0x3556, 0x3556, 0x399A, 0x3A9F, 0x4200, 0x4D14, 0x6607, 0x6607},
17 };
18 
19 static int bitmask[9] =
20 {
21  0, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff
22 };
23 
24 // struct ADPCMHeader
25 // {
26 // UBYTE Identifier[6];
27 // ULONG Frequency;
28 // }; // attrib(packed);
29 
30 // struct Voice8Header {
31 // ULONG oneShotHiSamples, /* # samples in the high octave 1-shot part */
32 // repeatHiSamples, /* # samples in the high octave repeat part */
33 // samplesPerHiCycle;/* # samples/cycle in high octave, else 0 */
34 // UWORD samplesPerSec; /* data sampling rate */
35 // UBYTE ctOctave, /* # octaves of waveforms */
36 // sCompression; /* data compression technique used */
37 // LONG volume; /* playback volume from 0 to Unity (full
38 // * volume). Map this value into the output
39 // * hardware's dynamic range. */
40 // }; // attrib(packed) attrib(packed);
41 
42 // struct SVXHeader
43 // {
44 // ULONG FORM;
45 // ULONG fSize;
46 // ULONG SVX, VHDR;
47 // ULONG vSize;
48 // struct Voice8Header v8h;
49 // ULONG ANNO;
50 // ULONG aSize;
51 // UBYTE aData[20];
52 // ULONG BODY;
53 // ULONG bSize;
54 // }; // attrib(packed) attrib(packed);
55 
56 // struct WAVHeaderFmt
57 // {
58 // UWORD AudioFormat;
59 // UWORD NumOfChan;
60 // ULONG SamplesPerSec;
61 // ULONG bytesPerSec;
62 // UWORD blockAlign;
63 // UWORD bitsPerSample;
64 // }; // attrib(packed) attrib(packed);
65 
66 // struct WAVHeader
67 // {
68 // ULONG RIFF;
69 // ULONG ChunkSize;
70 // ULONG WAVE;
71 // ULONG fmt;
72 // ULONG Subchunk1Size;
73 // struct WAVHeaderFmt whf;
74 // ULONG Subchunk2ID;
75 // ULONG Subchunk2Size;
76 // }; // attrib(packed) attrib(packed);
77 
78 #endif /* __MT_ADPCM__ */