home *** CD-ROM | disk | FTP | other *** search
- #ifndef AC3DEC_H
- #define AC3DEC_H
-
-
- #include "..\..\FlasKMPEG.h"
- #include "..\..\AsyncBuffer.h"
-
-
- class CAC3Dec
- {
- public:
- int decodeFrame(short *framedata, int datasize,short *buffer);
- char sBitRate[256];
- CAC3Dec();
- ~CAC3Dec();
- int read(char *buffer);
- char sAudioMode[256];
- char sSampleRate[256];
- int sampleRate;
- void Initialize_Buffer();
- int decodeFrame(short *buffer);
- int End();
- int Init();
- };
-
-
- #endif