Some fixes on context size for the 128x128 expt

Change-Id: I56f050502e3a750ce74b196d033b780218df2c1f
This commit is contained in:
Debargha Mukherjee 2015-11-13 07:06:19 -08:00
parent a0c13e6757
commit 9d9962aec9
3 changed files with 6 additions and 6 deletions

View File

@ -478,8 +478,8 @@ void vp9_model_rd_from_var_lapndz(unsigned int var, unsigned int n,
void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
const struct macroblockd_plane *pd,
ENTROPY_CONTEXT t_above[16],
ENTROPY_CONTEXT t_left[16]) {
ENTROPY_CONTEXT t_above[(CODING_UNIT_SIZE >> 2)],
ENTROPY_CONTEXT t_left[(CODING_UNIT_SIZE >> 2)]) {
const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
const int num_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize];
const int num_4x4_h = num_4x4_blocks_high_lookup[plane_bsize];

View File

@ -422,8 +422,8 @@ void vp9_init_me_luts();
void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
const struct macroblockd_plane *pd,
ENTROPY_CONTEXT t_above[16],
ENTROPY_CONTEXT t_left[16]);
ENTROPY_CONTEXT t_above[(CODING_UNIT_SIZE >> 2)],
ENTROPY_CONTEXT t_left[(CODING_UNIT_SIZE >> 2)]);
void vp9_set_rd_speed_thresholds(struct VP9_COMP *cpi);

View File

@ -121,8 +121,8 @@ typedef struct {
struct rdcost_block_args {
MACROBLOCK *x;
ENTROPY_CONTEXT t_above[16];
ENTROPY_CONTEXT t_left[16];
ENTROPY_CONTEXT t_above[(CODING_UNIT_SIZE >> 2)];
ENTROPY_CONTEXT t_left[(CODING_UNIT_SIZE >> 2)];
int rate;
int64_t dist;
int64_t sse;