Home | History | Annotate | Download | only in decoder

Lines Matching defs:tx_size

193                                     TX_SIZE tx_size, uint8_t *dst, int stride,
200 switch (tx_size) {
227 if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
228 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0]));
229 else if (tx_size == TX_32X32 && eob <= 34)
232 vpx_memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
245 TX_SIZE tx_size, void *arg) {
255 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y);
258 vp9_predict_intra_block(xd, block >> (tx_size << 1),
259 b_width_log2(plane_bsize), tx_size, mode,
265 plane_bsize, x, y, tx_size,
267 inverse_transform_block(xd, plane, block, tx_size, dst, pd->dst.stride,
281 TX_SIZE tx_size, void *arg) {
287 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y);
289 tx_size, args->r);
290 inverse_transform_block(xd, plane, block, tx_size,
484 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode];
485 TX_SIZE tx_size;
486 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size)
487 read_coef_probs_common(fc->coef_probs[tx_size], r);