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

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_pred_common.h 102 const struct tx_probs *tx_probs) {
105 return tx_probs->p8x8[ctx];
107 return tx_probs->p16x16[ctx];
109 return tx_probs->p32x32[ctx];
118 const struct tx_probs *tx_probs) {
119 return get_tx_probs(max_tx_size, vp9_get_tx_size_context(xd), tx_probs);
vp9_entropymode.h 28 struct tx_probs { struct
52 struct tx_probs tx_probs; member in struct:frame_contexts
vp9_entropymode.c 267 static const struct tx_probs default_tx_probs = {
326 fc->tx_probs = default_tx_probs;
402 fc->tx_probs.p8x8[i][j] = adapt_prob(pre_fc->tx_probs.p8x8[i][j],
407 fc->tx_probs.p16x16[i][j] = adapt_prob(pre_fc->tx_probs.p16x16[i][j],
412 fc->tx_probs.p32x32[i][j] = adapt_prob(pre_fc->tx_probs.p32x32[i][j],
  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.h 132 const struct tx_probs *tx_probs) {
135 return tx_probs->p8x8[ctx];
137 return tx_probs->p16x16[ctx];
139 return tx_probs->p32x32[ctx];
148 const struct tx_probs *tx_probs) {
149 return get_tx_probs(max_tx_size, get_tx_size_context(xd), tx_probs);
vp9_entropymode.h 31 struct tx_probs { struct
56 struct tx_probs tx_probs; member in struct:frame_contexts
vp9_entropymode.c 267 static const struct tx_probs default_tx_probs = {
326 fc->tx_probs = default_tx_probs;
390 fc->tx_probs.p8x8[i][j] = mode_mv_merge_probs(
391 pre_fc->tx_probs.p8x8[i][j], branch_ct_8x8p[j]);
395 fc->tx_probs.p16x16[i][j] = mode_mv_merge_probs(
396 pre_fc->tx_probs.p16x16[i][j], branch_ct_16x16p[j]);
400 fc->tx_probs.p32x32[i][j] = mode_mv_merge_probs(
401 pre_fc->tx_probs.p32x32[i][j], branch_ct_32x32p[j]);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 71 const vpx_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc->tx_probs); local
72 int tx_size = vpx_read(r, tx_probs[0]);
74 tx_size += vpx_read(r, tx_probs[1]);
76 tx_size += vpx_read(r, tx_probs[2]);
vp9_decodeframe.c 91 static void read_tx_mode_probs(struct tx_probs *tx_probs, vpx_reader *r) {
96 vp9_diff_update_prob(r, &tx_probs->p8x8[i][j]);
100 vp9_diff_update_prob(r, &tx_probs->p16x16[i][j]);
104 vp9_diff_update_prob(r, &tx_probs->p32x32[i][j]);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodemv.c 65 const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc.tx_probs); local
66 int tx_size = vp9_read(r, tx_probs[0]);
68 tx_size += vp9_read(r, tx_probs[1]);
70 tx_size += vp9_read(r, tx_probs[2]);
vp9_decodeframe.c 88 static void read_tx_mode_probs(struct tx_probs *tx_probs, vp9_reader *r) {
93 vp9_diff_update_prob(r, &tx_probs->p8x8[i][j]);
97 vp9_diff_update_prob(r, &tx_probs->p16x16[i][j]);
101 vp9_diff_update_prob(r, &tx_probs->p32x32[i][j]);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 85 const vpx_prob *const tx_probs = get_tx_probs2(max_tx_size, xd, local
86 &cm->fc->tx_probs);
87 vpx_write(w, tx_size != TX_4X4, tx_probs[0]);
89 vpx_write(w, tx_size != TX_8X8, tx_probs[1]);
91 vpx_write(w, tx_size != TX_16X16, tx_probs[2]);
832 vp9_cond_prob_diff_update(w, &cm->fc->tx_probs.p8x8[i][j], ct_8x8p[j]);
838 vp9_cond_prob_diff_update(w, &cm->fc->tx_probs.p16x16[i][j],
845 vp9_cond_prob_diff_update(w, &cm->fc->tx_probs.p32x32[i][j],
    [all...]
vp9_rdopt.c 654 const vpx_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc->tx_probs); local
673 r_tx_size += vp9_cost_zero(tx_probs[m]);
675 r_tx_size += vp9_cost_one(tx_probs[m]);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_bitstream.c 87 const vp9_prob *const tx_probs = get_tx_probs2(max_tx_size, xd, local
88 &cpi->common.fc.tx_probs);
89 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
91 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
93 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
822 vp9_cond_prob_diff_update(w, &cm->fc.tx_probs.p8x8[i][j], ct_8x8p[j]);
828 vp9_cond_prob_diff_update(w, &cm->fc.tx_probs.p16x16[i][j],
835 vp9_cond_prob_diff_update(w, &cm->fc.tx_probs.p32x32[i][j],
    [all...]
vp9_rdopt.c 813 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs); local
823 r[n][1] += vp9_cost_zero(tx_probs[m]);
825 r[n][1] += vp9_cost_one(tx_probs[m]);
897 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs); local
    [all...]

Completed in 1352 milliseconds