Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/cdf.h
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2019-08-09 02:45:11 +0300
committerHenrik Gramner <henrik@gramner.com>2019-08-13 19:51:48 +0300
commita819653e1b71ea69c13faaa64c5bb89534ce2772 (patch)
tree62265e200db9cc896a9e3c71594524a4b92d6bd2 /src/cdf.h
parentdff0a08cd3ad1c1673b290bfa90ec32edd3ddc54 (diff)
Remove unused CDF:s
Diffstat (limited to 'src/cdf.h')
-rw-r--r--src/cdf.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/cdf.h b/src/cdf.h
index 7512408..7b8baa3 100644
--- a/src/cdf.h
+++ b/src/cdf.h
@@ -64,8 +64,11 @@ typedef struct CdfModeContext {
uint16_t comp_uni_ref[3][3][2];
uint16_t txsz[N_TX_SIZES - 1][3][4];
uint16_t txpart[7][3][2];
- uint16_t txtp_inter[4][N_TX_SIZES][N_TX_TYPES + 1];
- uint16_t txtp_intra[3][N_TX_SIZES][N_INTRA_PRED_MODES][N_TX_TYPES + 1];
+ uint16_t txtp_inter1[2][16 + 1];
+ uint16_t txtp_inter2[12 + 1 + 3];
+ uint16_t txtp_inter3[4][2];
+ uint16_t txtp_intra1[2][N_INTRA_PRED_MODES][7 + 1];
+ uint16_t txtp_intra2[3][N_INTRA_PRED_MODES][5 + 1 + 2];
uint16_t skip[3][2];
uint16_t skip_mode[3][2];
uint16_t partition[N_BL_LEVELS][4][N_PARTITIONS + 1 + 5];
@@ -94,8 +97,8 @@ typedef struct CdfCoefContext {
uint16_t eob_bin_64[2][2][8];
uint16_t eob_bin_128[2][2][9];
uint16_t eob_bin_256[2][2][10 + 6];
- uint16_t eob_bin_512[2][2][11 + 5];
- uint16_t eob_bin_1024[2][2][12 + 4];
+ uint16_t eob_bin_512[2][11 + 5];
+ uint16_t eob_bin_1024[2][12 + 4];
uint16_t eob_hi_bit[N_TX_SIZES][2][11 /*22*/][2];
uint16_t eob_base_tok[N_TX_SIZES][2][4][4];
uint16_t base_tok[N_TX_SIZES][2][41][5];