/external/libvpx/libvpx/vp9/common/ |
vp9_entropymode.h | 26 struct tx_probs { struct
|
vp9_onyxc_int.h | 53 struct tx_probs tx_probs; member in struct:frame_contexts
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodemv.c | 48 const vp9_prob *tx_probs = get_tx_probs(bsize, context, &cm->fc.tx_probs); local 49 TX_SIZE tx_size = vp9_read(r, tx_probs[0]); 51 tx_size += vp9_read(r, tx_probs[1]); 53 tx_size += vp9_read(r, tx_probs[2]);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_bitstream.c | 205 const vp9_prob *tx_probs = get_tx_probs2(xd, &cpi->common.fc.tx_probs, m); local 206 vp9_write(w, tx_size != TX_4X4, tx_probs[0]); 208 vp9_write(w, tx_size != TX_8X8, tx_probs[1]); 210 vp9_write(w, tx_size != TX_16X16, tx_probs[2]); [all...] |
vp9_onyx_int.h | 94 struct tx_probs tx_probs; member in struct:__anon23100
|
vp9_rdopt.c | 738 const vp9_prob *tx_probs = get_tx_probs2(xd, &cm->fc.tx_probs, xd->this_mi); local 746 r[n][1] += vp9_cost_zero(tx_probs[m]); 748 r[n][1] += vp9_cost_one(tx_probs[m]); 843 const vp9_prob *tx_probs = get_tx_probs2(xd, &cm->fc.tx_probs, xd->this_mi); local 852 r[n][1] += vp9_cost_zero(tx_probs[m]); 854 r[n][1] += vp9_cost_one(tx_probs[m]); [all...] |