some slight tweaks to the compressed format

This commit is contained in:
2021-12-27 16:58:39 +01:00
parent 7d280bd533
commit 08c86af06f
3 changed files with 23 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
use crate::context_state::Context;
const L_BITS: u32 = 16;
pub const PROB_BITS: u32 = 12;
const L_BITS: u32 = 12;
pub const PROB_BITS: u32 = 8;
pub const ONE_PROB: u32 = 1 << PROB_BITS;
pub trait EntropyCoder {