mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
LibGfx/JBIG2: Make context index a u8
This value is at most 46, so a u8 is enough. We have tens of thousands of these contexts. (We could pack the is_mps bit into that u8 as well, but then the I() and MPS() functions need to return helper objects instead of a direct reference, so let's not do that part for now.)
This commit is contained in:
parent
7cb12e057f
commit
924423c596
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ namespace JBIG2 {
|
||||||
class ArithmeticDecoder {
|
class ArithmeticDecoder {
|
||||||
public:
|
public:
|
||||||
struct Context {
|
struct Context {
|
||||||
u16 I; // Index I stored for context CX (E.2.4)
|
u8 I; // Index I stored for context CX (E.2.4)
|
||||||
u8 is_mps; // "More probable symbol" (E.1.1). 0 or 1.
|
u8 is_mps; // "More probable symbol" (E.1.1). 0 or 1.
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ private:
|
||||||
u8 CT; // Count of the number of bits in C.
|
u8 CT; // Count of the number of bits in C.
|
||||||
|
|
||||||
Context* CX;
|
Context* CX;
|
||||||
static u16& I(Context* cx) { return cx->I; }
|
static u8& I(Context* cx) { return cx->I; }
|
||||||
static u8& MPS(Context* cx) { return cx->is_mps; }
|
static u8& MPS(Context* cx) { return cx->is_mps; }
|
||||||
static u16 Qe(u16);
|
static u16 Qe(u16);
|
||||||
static u8 NMPS(u16);
|
static u8 NMPS(u16);
|
||||||
|
|
Loading…
Reference in a new issue