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

  /external/libaom/libaom/av1/common/
txb_common.h 77 static INLINE int get_padded_idx(const int idx, const int bwl) {
78 return idx + ((idx >> bwl) << TX_PAD_HOR_LOG2);
147 const int bwl) {
149 const int row = c >> bwl;
150 const int col = c - (row << bwl);
151 const int stride = (1 << bwl) + TX_PAD_HOR;
163 const int bwl,
165 const int row = c >> bwl;
166 const int col = c - (row << bwl);
177 const int bwl, const TX_CLASS tx_class)
    [all...]
  /external/libaom/libaom/av1/decoder/
decodetxb.c 64 const int16_t *scan, int bwl,
70 const int coeff_ctx = get_lower_levels_ctx_2d(levels, pos, bwl, tx_size);
74 const int br_ctx = get_br_ctx_2d(levels, pos, bwl);
82 levels[get_padded_idx(pos, bwl)] = level;
88 int end_si, const int16_t *scan, int bwl,
94 get_lower_levels_ctx(levels, pos, bwl, tx_size, tx_class);
98 const int br_ctx = get_br_ctx(levels, pos, bwl, tx_class);
106 levels[get_padded_idx(pos, bwl)] = level;
125 const int bwl = get_txb_bwl(tx_size); local
252 const int coeff_ctx = get_lower_levels_ctx_eob(bwl, height, c)
    [all...]
  /external/libaom/libaom/test/
encodetxb_test.cc 70 const int bwl = get_txb_bwl((TX_SIZE)tx_size); local
80 InitDataWithEob(scan, bwl, eob);
105 const int bwl = get_txb_bwl((TX_SIZE)tx_size); local
117 InitDataWithEob(scan, bwl, eob);
133 void InitDataWithEob(const int16_t *const scan, const int bwl,
139 levels_[get_padded_idx(scan[c], bwl)] =
  /external/libaom/libaom/av1/encoder/
encodetxb.c 346 get_br_ctx(txb_info->levels, pos, txb_info->bwl, tx_class);
354 const int coeff_idx, const int bwl,
360 if (scan_idx <= (height << bwl) / 8) return 1;
361 if (scan_idx <= (height << bwl) / 4) return 2;
365 get_nz_mag(levels + get_padded_idx(coeff_idx, bwl), bwl, tx_class);
366 return get_nz_map_ctx_from_stats(stats, coeff_idx, bwl, tx_size, tx_class);
390 get_nz_map_ctx(levels, coeff_idx, txb_info->bwl, txb_info->height,
442 txb_info->levels, coeff_idx, txb_info->bwl, txb_info->height, scan_idx, 1,
462 txb_info->levels[get_padded_idx(coeff_idx, txb_info->bwl)]
496 const int bwl = get_txb_bwl(tx_size); local
521 const int bwl = get_txb_bwl(tx_size); local
745 const int bwl = get_txb_bwl(tx_size); local
1683 const int bwl = get_txb_bwl(tx_size); local
1831 const int bwl = get_txb_bwl(tx_size); local
1993 const int bwl = get_txb_bwl(tx_size); local
    [all...]
encodetxb.h 37 int bwl; member in struct:TxbInfo
mcomp.c     [all...]
rdopt.c 7107 int bwl = mi_size_wide_log2[bsize]; local
    [all...]
  /external/libaom/libaom/aom_dsp/
avg.c 212 // bwl: {2, 3, 4, 5}
213 int aom_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) {
215 int width = 4 << bwl;
225 var = sse - ((mean * mean) >> (bwl + 2));
  /external/libvpx/libvpx/vpx_dsp/arm/
avg_neon.c 147 // bwl = {2, 3, 4}, width = {16, 32, 64}
148 int vpx_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl) {
149 int width = 4 << bwl;
183 const int shift_factor = bwl + 2;
  /external/libaom/libaom/av1/encoder/x86/
encodetxb_sse2.c 497 const int bwl = get_txb_bwl(tx_size); local
499 if (last_idx <= (height << bwl) / 8)
501 else if (last_idx <= (height << bwl) / 4)
  /external/libvpx/libvpx/vpx_dsp/
avg.c 369 // bwl: {2, 3, 4}
370 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) {
372 int width = 4 << bwl;
382 var = sse - ((mean * mean) >> (bwl + 2));
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 775 static void set_plane_n4(MACROBLOCKD *const xd, int bw, int bh, int bwl,
781 xd->plane[i].n4_wl = bwl - xd->plane[i].subsampling_x;
788 int bwl, int bhl) {
793 set_plane_n4(xd, bw, bh, bwl, bhl);
807 int bh, int x_mis, int y_mis, int bwl, int bhl) {
814 // TODO(slavarnway): Generate sb_type based on bwl and bhl, instead of
822 set_plane_n4(xd, bw, bh, bwl, bhl);
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
avg_msa.c 567 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl) {
576 if (2 == bwl) {
594 } else if (3 == bwl) {
620 } else if (4 == bwl) {
665 const int width = 4 << bwl;
678 var = sse - ((mean * mean) >> (bwl + 2));
  /external/libvpx/libvpx/vpx_dsp/x86/
avg_intrin_sse2.c 536 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl) {
538 int width = 4 << bwl;
576 return _mm_cvtsi128_si32(sse) - ((mean * mean) >> (bwl + 2));
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c     [all...]
vp9_encodemb.c 767 const int bwl = b_width_log2_lookup[plane_bsize]; local
768 const int diff_stride = 4 * (1 << bwl);
801 xd, bwl, tx_size, mode, (x->skip_encode || x->fp_src_pred) ? src : dst,
    [all...]
vp9_rdopt.c 2442 int bwl = b_width_log2_lookup[bsize]; local
    [all...]
  /external/libvpx/config/arm-neon/
vpx_dsp_rtcd.h     [all...]
  /external/libvpx/config/arm64/
vpx_dsp_rtcd.h     [all...]
  /external/libvpx/config/x86/
vpx_dsp_rtcd.h     [all...]
  /external/libvpx/config/x86_64/
vpx_dsp_rtcd.h     [all...]
  /external/libvpx/config/generic/
vpx_dsp_rtcd.h     [all...]

Completed in 548 milliseconds