HomeSort by relevance Sort by last modified time
    Searched refs:tx_probs (Results 1 - 8 of 8) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.h 113 const struct tx_probs *tx_probs) {
116 return tx_probs->p8x8[ctx];
118 return tx_probs->p16x16[ctx];
120 return tx_probs->p32x32[ctx];
128 const struct tx_probs *tx_probs) {
130 return get_tx_probs(max_tx_size, ctx, tx_probs);
vp9_entropymode.c 271 static const struct tx_probs default_tx_probs = {
330 cm->fc.tx_probs = default_tx_probs;
414 fc->tx_probs.p8x8[i][j] = adapt_prob(pre_fc->tx_probs.p8x8[i][j],
419 fc->tx_probs.p16x16[i][j] = adapt_prob(pre_fc->tx_probs.p16x16[i][j],
424 fc->tx_probs.p32x32[i][j] = adapt_prob(pre_fc->tx_probs.p32x32[i][j],
vp9_entropymode.h 25 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 67 const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc.tx_probs); local
68 TX_SIZE tx_size = vp9_read(r, tx_probs[0]);
70 tx_size += vp9_read(r, tx_probs[1]);
72 tx_size += vp9_read(r, tx_probs[2]);
vp9_decodframe.c 98 static void read_tx_probs(struct tx_probs *tx_probs, vp9_reader *r) {
103 vp9_diff_update_prob(r, &tx_probs->p8x8[i][j]);
107 vp9_diff_update_prob(r, &tx_probs->p16x16[i][j]);
111 vp9_diff_update_prob(r, &tx_probs->p32x32[i][j]);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 194 const vp9_prob *const tx_probs = get_tx_probs2(max_tx_size, xd, local
195 &cpi->common.fc.tx_probs);
196 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
198 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
200 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
    [all...]
vp9_rdopt.c 747 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs); local
755 r[n][1] += vp9_cost_zero(tx_probs[m]);
757 r[n][1] += vp9_cost_one(tx_probs[m]);
852 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs); local
861 r[n][1] += vp9_cost_zero(tx_probs[m]);
863 r[n][1] += vp9_cost_one(tx_probs[m]);
    [all...]

Completed in 120 milliseconds