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

  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.h 113 const int max_tx_size = max_txsize_lookup[xd->mi[0]->mbmi.sb_type]; local
119 : max_tx_size;
121 : max_tx_size;
128 return (above_ctx + left_ctx) > max_tx_size;
131 static INLINE const vpx_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
133 switch (max_tx_size) {
141 assert(0 && "Invalid max_tx_size.");
146 static INLINE const vpx_prob *get_tx_probs2(TX_SIZE max_tx_size,
149 return get_tx_probs(max_tx_size, get_tx_size_context(xd), tx_probs);
152 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_pred_common.h 101 static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
103 switch (max_tx_size) {
111 assert(0 && "Invalid max_tx_size.");
116 static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
119 return get_tx_probs(max_tx_size, vp9_get_tx_size_context(xd), tx_probs);
122 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
124 switch (max_tx_size) {
132 assert(0 && "Invalid max_tx_size.");
vp9_pred_common.c 351 const int max_tx_size = max_txsize_lookup[xd->mi[0]->mbmi.sb_type]; local
357 : max_tx_size;
359 : max_tx_size;
366 return (above_ctx + left_ctx) > max_tx_size;
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 68 TX_SIZE max_tx_size, vpx_reader *r) {
71 const vpx_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc->tx_probs);
73 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
75 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
80 ++get_tx_counts(max_tx_size, ctx, &counts->tx)[tx_size];
88 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
90 return read_selected_tx_size(cm, xd, max_tx_size, r);
92 return VPXMIN(max_tx_size, tx_mode_to_biggest_tx_size[tx_mode]);
vp9_decodeframe.c 1047 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodemv.c 63 TX_SIZE max_tx_size, vp9_reader *r) {
65 const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc.tx_probs);
67 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
69 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
74 ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size];
80 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
82 return read_selected_tx_size(cm, xd, max_tx_size, r);
84 return MIN(max_tx_size, tx_mode_to_biggest_tx_size[tx_mode]);
vp9_decodeframe.c 484 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
486 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_rdopt.c 778 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
784 mbmi->tx_size = MIN(max_tx_size, largest_tx_size);
798 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
813 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs);
818 for (n = TX_4X4; n <= max_tx_size; n++) {
821 for (m = 0; m <= n - (n == max_tx_size); m++) {
843 best_tx : MIN(max_tx_size, max_mode_tx_size);
852 tx_cache[ALLOW_16X16] = rd[MIN(max_tx_size, TX_16X16)][0];
853 tx_cache[ALLOW_32X32] = rd[MIN(max_tx_size, TX_32X32)][0];
855 if (max_tx_size == TX_32X32 && best_tx == TX_32X32)
881 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
955 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
    [all...]
vp9_bitstream.c 85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
87 const vp9_prob *const tx_probs = get_tx_probs2(max_tx_size, xd,
90 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
92 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
670 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
679 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 84 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
85 const vpx_prob *const tx_probs = get_tx_probs2(max_tx_size, xd,
88 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
90 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
677 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
679 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size) {
    [all...]
vp9_rdopt.c 190 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
191 const BLOCK_SIZE unit_size = txsize_to_bsize[max_tx_size];
617 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
623 mbmi->tx_size = VPXMIN(max_tx_size, largest_tx_size);
637 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
651 TX_SIZE best_tx = max_tx_size;
654 const vpx_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc->tx_probs);
660 start_tx = max_tx_size;
663 TX_SIZE chosen_tx_size = VPXMIN(max_tx_size,
671 for (m = 0; m <= n - (n == (int) max_tx_size); m++)
    [all...]
vp9_encodeframe.c     [all...]
  /system/bt/bta/hl/
bta_hl_int.h 709 extern UINT16 bta_hl_set_user_tx_buf_size(UINT16 max_tx_size);
    [all...]
bta_hl_utils.c 144 UINT16 bta_hl_set_user_tx_buf_size(UINT16 max_tx_size)
146 if (max_tx_size > BT_DEFAULT_BUFFER_SIZE)
    [all...]

Completed in 532 milliseconds