mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
18 lines
310 B
C++
18 lines
310 B
C++
#ifndef _AC3SOUNDSTREAMDECODER_H_
|
|
#define _AC3SOUNDSTREAMDECODER_H_
|
|
|
|
#include "BitStream.h"
|
|
|
|
class Ac3SoundStreamDecoder
|
|
{
|
|
public:
|
|
Ac3SoundStreamDecoder();
|
|
virtual ~Ac3SoundStreamDecoder();
|
|
|
|
void Execute(Framework::CBitStream&);
|
|
|
|
private:
|
|
void ReadBsi(Framework::CBitStream&);
|
|
};
|
|
|
|
#endif
|