Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/misc/emulator/xnes/snes9x/jma/ariprice.h
28798 views
1
#ifndef __COMPRESSION_ARIPRICE_H
2
#define __COMPRESSION_ARIPRICE_H
3
4
namespace NCompression {
5
namespace NArithmetic {
6
7
const UINT32 kNumBitPriceShiftBits = 6;
8
const UINT32 kBitPrice = 1 << kNumBitPriceShiftBits;
9
10
}}
11
12
#endif
13
14