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

  /external/libvpx/libvpx/vp9/common/
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;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
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 62 TX_SIZE max_tx_size, vp9_reader *r) {
64 const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc.tx_probs);
66 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
68 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
73 ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size];
79 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
81 return read_selected_tx_size(cm, xd, max_tx_size, r);
83 return MIN(max_tx_size, tx_mode_to_biggest_tx_size[tx_mode]);
vp9_decodeframe.c 492 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
494 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size)
    [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...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize]; local
86 const vp9_prob *const tx_probs = get_tx_probs2(max_tx_size, xd,
89 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
91 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
666 const TX_SIZE max_tx_size = tx_mode_to_biggest_tx_size[tx_mode]; local
677 for (tx_size = TX_4X4; tx_size <= max_tx_size; ++tx_size)
    [all...]
vp9_rdopt.c 460 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
466 mbmi->tx_size = MIN(max_tx_size, largest_tx_size);
482 const TX_SIZE max_tx_size = max_txsize_lookup[bs]; local
499 const vp9_prob *tx_probs = get_tx_probs2(max_tx_size, xd, &cm->fc.tx_probs);
504 for (n = TX_4X4; n <= max_tx_size; n++) {
510 for (m = 0; m <= n - (n == max_tx_size); m++) {
532 best_tx : MIN(max_tx_size, max_mode_tx_size);
542 tx_cache[ALLOW_16X16] = rd[MIN(max_tx_size, TX_16X16)][0];
543 tx_cache[ALLOW_32X32] = rd[MIN(max_tx_size, TX_32X32)][0];
545 if (max_tx_size == TX_32X32 && best_tx == TX_32X32)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
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...]
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...]

Completed in 209 milliseconds