forked from hxim/paq8px
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndirectMap.hpp
41 lines (36 loc) · 926 Bytes
/
IndirectMap.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef PAQ8PX_INDIRECTMAP_HPP
#define PAQ8PX_INDIRECTMAP_HPP
#include "IPredictor.hpp"
#include "Hash.hpp"
#include "Mixer.hpp"
#include "Shared.hpp"
#include "StateMap.hpp"
#include "UpdateBroadcaster.hpp"
#include <cassert>
#include <cstdint>
class IndirectMap : IPredictor {
public:
static constexpr int MIXERINPUTS = 2;
private:
const Shared * const shared;
Random rnd;
Array<uint8_t> data;
StateMap sm;
const uint32_t mask;
const uint32_t maskBits;
const uint32_t stride;
const uint32_t bTotal;
uint32_t b {};
uint32_t bCount {};
uint32_t context {};
uint8_t *cp;
int scale;
public:
IndirectMap(const Shared* const sh, int bitsOfContext, int inputBits, int scale, int limit);
void setDirect(uint32_t ctx);
void set(uint64_t ctx);
void update() override;
void setScale(int Scale);
void mix(Mixer &m);
};
#endif //PAQ8PX_INDIRECTMAP_HPP