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

  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.h 32 vpx_prob p32x32[TX_SIZE_CONTEXTS][TX_SIZES - 1];
33 vpx_prob p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 2];
34 vpx_prob p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 3];
38 unsigned int p32x32[TX_SIZE_CONTEXTS][TX_SIZES];
39 unsigned int p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 1];
40 unsigned int p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 2];
41 unsigned int tx_totals[TX_SIZES];
48 vp9_coeff_probs_model coef_probs[TX_SIZES][PLANE_TYPES];
66 vp9_coeff_count_model coef[TX_SIZES][PLANE_TYPES];
67 unsigned int eob_branch[TX_SIZES][PLANE_TYPES][REF_TYPES][COEF_BANDS
    [all...]
vp9_common_data.h 33 extern const BLOCK_SIZE txsize_to_bsize[TX_SIZES];
36 extern const TX_SIZE uv_txsize_lookup[BLOCK_SIZES][TX_SIZES][2][2];
vp9_scan.h 32 extern const scan_order vp9_default_scan_orders[TX_SIZES];
33 extern const scan_order vp9_scan_orders[TX_SIZES][TX_TYPES];
vp9_loopfilter.h 61 uint64_t left_y[TX_SIZES];
62 uint64_t above_y[TX_SIZES];
64 uint16_t left_uv[TX_SIZES];
65 uint16_t above_uv[TX_SIZES];
vp9_entropymode.c 382 unsigned int branch_ct_8x8p[TX_SIZES - 3][2];
383 unsigned int branch_ct_16x16p[TX_SIZES - 2][2];
384 unsigned int branch_ct_32x32p[TX_SIZES - 1][2];
388 for (j = 0; j < TX_SIZES - 3; ++j)
393 for (j = 0; j < TX_SIZES - 2; ++j)
398 for (j = 0; j < TX_SIZES - 1; ++j)
vp9_scan.c     [all...]
vp9_enums.h 80 #define TX_SIZES ((TX_SIZE)4)
vp9_thread_common.c 330 for (i = 0; i < TX_SIZES; i++)
341 for (i = 0; i < TX_SIZES; i++)
379 for (j = 0; j < TX_SIZES; j++)
382 for (j = 0; j < TX_SIZES - 1; j++)
385 for (j = 0; j < TX_SIZES - 2; j++)
389 for (i = 0; i < TX_SIZES; i++)
vp9_common_data.c 95 const BLOCK_SIZE txsize_to_bsize[TX_SIZES] = {
128 const TX_SIZE uv_txsize_lookup[BLOCK_SIZES][TX_SIZES][2][2] = {
vp9_reconintra.c 59 static intra_pred_fn pred[INTRA_MODES][TX_SIZES];
60 static intra_pred_fn dc_pred[2][2][TX_SIZES];
vp9_loopfilter.c 39 static const uint64_t left_64x64_txform_mask[TX_SIZES] = {
63 static const uint64_t above_64x64_txform_mask[TX_SIZES] = {
141 static const uint16_t left_64x64_txform_mask_uv[TX_SIZES] = {
148 static const uint16_t above_64x64_txform_mask_uv[TX_SIZES] = {
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_block.h 124 uint8_t zcoeff_blk[TX_SIZES][256];
127 int32_t sum_y_eobs[TX_SIZES];
134 vp9_coeff_cost token_costs[TX_SIZES];
vp9_speed_features.h 377 int intra_y_mode_mask[TX_SIZES];
378 int intra_uv_mode_mask[TX_SIZES];
vp9_bitstream.c 822 unsigned int ct_8x8p[TX_SIZES - 3][2];
823 unsigned int ct_16x16p[TX_SIZES - 2][2];
824 unsigned int ct_32x32p[TX_SIZES - 1][2];
828 for (j = 0; j < TX_SIZES - 3; j++)
834 for (j = 0; j < TX_SIZES - 2; j++)
841 for (j = 0; j < TX_SIZES - 1; j++)
    [all...]
vp9_speed_features.c 306 for (i = 0; i < TX_SIZES; ++i) {
452 for (i = 0; i < TX_SIZES; i++) {
718 for (i = 0; i < TX_SIZES; i++) {
vp9_encoder.c 180 for (i = 0; i < TX_SIZES; ++i) {
285 for (j = 0; j < TX_SIZES - 1; ++j) {
289 pre_last_prob = MAX_PROB - pre_fc->tx_probs.p32x32[i][TX_SIZES - 2];
290 cur_last_prob = MAX_PROB - cur_fc->tx_probs.p32x32[i][TX_SIZES - 2];
292 diff += (int)counts->tx.p32x32[i][TX_SIZES - 1] *
296 for (j = 0; j < TX_SIZES - 2; ++j) {
300 pre_last_prob = MAX_PROB - pre_fc->tx_probs.p16x16[i][TX_SIZES - 3];
301 cur_last_prob = MAX_PROB - cur_fc->tx_probs.p16x16[i][TX_SIZES - 3];
303 diff += (int)counts->tx.p16x16[i][TX_SIZES - 2] *
307 for (j = 0; j < TX_SIZES - 3; ++j)
    [all...]
vp9_rdopt.c 346 static const int16_t band_counts[TX_SIZES][8] = {
839 int r[TX_SIZES][2], s[TX_SIZES];
840 int64_t d[TX_SIZES], sse[TX_SIZES];
841 int64_t rd[TX_SIZES][2] = { { INT64_MAX, INT64_MAX },
    [all...]
vp9_encoder.h 322 vp9_coeff_count coef_counts[TX_SIZES][PLANE_TYPES];
vp9_encodemb.c 83 static const int16_t band_count_table[TX_SIZES][8] = {
89 static const int16_t band_cum_count_table[TX_SIZES][8] = {
    [all...]
vp9_ethread.c 28 for (i = 0; i < TX_SIZES; i++)
vp9_pickmode.c     [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 93 for (j = 0; j < TX_SIZES - 3; ++j)
97 for (j = 0; j < TX_SIZES - 2; ++j)
101 for (j = 0; j < TX_SIZES - 1; ++j)
    [all...]

Completed in 130 milliseconds