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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*************************************************************************** *
* MPEG Layer3-Audio Decoder
* © 1997-2006 by Fraunhofer IIS
* All Rights Reserved
*
* filename: mp3read.h
* project : ISO/MPEG-Decoder
* author : Martin Sieler
* date : 1998-05-26
* contents/description: mp3 read-functions: sideinfo, main data,
* scalefactors
*
*
\***************************************************************************/
/*
* $Date: 2010/11/17 20:46:04 $
* $Id: mp3read.h,v 1.1 2010/11/17 20:46:04 audiodsp Exp $
*/
/*-------------------------------------------------------------------------*/
#ifndef __MP3READ_H__
#define __MP3READ_H__
/* ------------------------ includes --------------------------------------*/
#include "mpeg.h"
/* ------------------------------------------------------------------------*/
class CBitStream;
/* ------------------------------------------------------------------------*/
bool mp3SideInfoRead(CBitStream &Bs, MP3SI &Si, const MPEG_INFO &Info, int crc_check);
bool mp3MainDataRead
(
CBitStream &Bs, // bitstream
CBitStream &Db, // dynamic buffer
const MP3SI &Si,
const MPEG_INFO &Info
);
void mp3ScaleFactorRead
(
CBitStream &Bs,
MP3SI_GRCH &SiGrCh,
MP3SCF &ScaleFac,
const MPEG_INFO &Info,
const int *pScfsi,
int gr,
int ch
);
/*-------------------------------------------------------------------------*/
#endif
|