mirror of
https://github.com/libretro/Play-.git
synced 2024-12-04 15:26:23 +00:00
32 lines
499 B
C++
32 lines
499 B
C++
#ifndef _IPU_MOTIONCODETABLE_H_
|
|
#define _IPU_MOTIONCODETABLE_H_
|
|
|
|
#include "mpeg2/VLCTable.h"
|
|
|
|
namespace IPU
|
|
{
|
|
class CMotionCodeTable : public MPEG2::CVLCTable
|
|
{
|
|
public:
|
|
CMotionCodeTable();
|
|
static CVLCTable* GetInstance();
|
|
|
|
enum MAXBITS
|
|
{
|
|
MAXBITS = 11,
|
|
};
|
|
|
|
enum ENTRYCOUNT
|
|
{
|
|
ENTRYCOUNT = 33,
|
|
};
|
|
|
|
private:
|
|
static MPEG2::VLCTABLEENTRY m_pTable[ENTRYCOUNT];
|
|
static unsigned int m_pIndexTable[MAXBITS];
|
|
static MPEG2::CVLCTable* m_pInstance;
|
|
};
|
|
};
|
|
|
|
#endif
|