blob: c53bd18cec4e23fdf528fc5d456e147063686606 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef NULLSOFT_AACFRAME_H
#define NULLSOFT_AACFRAME_H
class AACFrame
{
public:
void ReadBuffer(unsigned __int8 *buffer);
bool OK();
enum
{
NOT_PROTECTED=1,
PROTECTED=0,
SYNC = 0xFFF,
MAIN = 0x00,
LC = 0x01,
SSR = 0x10,
LTP = 0x11,
};
int GetNumChannels();
int GetSampleRate();
const wchar_t *GetProfileName();
const wchar_t *GetChannelConfigurationName();
int GetMPEGVersion(); // returns 2 or 4
public:
int syncword;
int layer;
int id;
int protection;
int profile;
int sampleRateIndex;
int privateBit;
int channelConfiguration;
int original;
int home;
int frameLength;
int bufferFullness;
int numDataBlocks;
};
#endif
|