Play-/tools/MediaCenter/Source/Ac3SoundStreamDecoder.h

19 lines
310 B
C
Raw Permalink Normal View History

#ifndef _AC3SOUNDSTREAMDECODER_H_
#define _AC3SOUNDSTREAMDECODER_H_
#include "BitStream.h"
class Ac3SoundStreamDecoder
{
public:
2018-04-30 21:01:23 +01:00
Ac3SoundStreamDecoder();
virtual ~Ac3SoundStreamDecoder();
2018-04-30 21:01:23 +01:00
void Execute(Framework::CBitStream&);
private:
2018-04-30 21:01:23 +01:00
void ReadBsi(Framework::CBitStream&);
};
#endif