Home | History | Annotate | Download | only in common

Lines Matching refs:max_tx_size

153   const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
159 (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
161 (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166 return (above_ctx + left_ctx) > max_tx_size;
169 static INLINE const vpx_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
171 switch (max_tx_size) {
175 default: assert(0 && "Invalid max_tx_size."); return NULL;
179 static INLINE const vpx_prob *get_tx_probs2(TX_SIZE max_tx_size,
182 return get_tx_probs(max_tx_size, get_tx_size_context(xd), tx_probs);
185 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
187 switch (max_tx_size) {
191 default: assert(0 && "Invalid max_tx_size."); return NULL;