mirror of
https://github.com/libretro/snes9x.git
synced 2024-11-23 08:19:46 +00:00
13 lines
222 B
C
13 lines
222 B
C
|
#ifndef __COMPRESSION_ARIPRICE_H
|
||
|
#define __COMPRESSION_ARIPRICE_H
|
||
|
|
||
|
namespace NCompression {
|
||
|
namespace NArithmetic {
|
||
|
|
||
|
const UINT32 kNumBitPriceShiftBits = 6;
|
||
|
const UINT32 kBitPrice = 1 << kNumBitPriceShiftBits;
|
||
|
|
||
|
}}
|
||
|
|
||
|
#endif
|