Home
last modified time | relevance | path

Searched refs:comp_pred (Results 1 – 20 of 20) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/ppc/
Dvariance_vsx.c58 void vpx_comp_avg_pred_vsx(uint8_t *comp_pred, const uint8_t *pred, int width, in vpx_comp_avg_pred_vsx() argument
62 assert(((intptr_t)comp_pred & 0xf) == 0); in vpx_comp_avg_pred_vsx()
68 vec_vsx_st(v, j, comp_pred); in vpx_comp_avg_pred_vsx()
70 comp_pred += width; in vpx_comp_avg_pred_vsx()
81 vec_vsx_st(v, 0, comp_pred); in vpx_comp_avg_pred_vsx()
82 comp_pred += 16; // width * 2; in vpx_comp_avg_pred_vsx()
97 vec_vsx_st(v, 0, comp_pred); in vpx_comp_avg_pred_vsx()
98 comp_pred += 16; // width * 4; in vpx_comp_avg_pred_vsx()
Dsad_vsx.c111 DECLARE_ALIGNED(16, uint8_t, comp_pred[16 * height]); \
112 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 16, height, ref, \
115 return vpx_sad16x##height##_vsx(src, src_stride, comp_pred, 16); \
122 DECLARE_ALIGNED(32, uint8_t, comp_pred[32 * height]); \
123 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 32, height, ref, \
126 return vpx_sad32x##height##_vsx(src, src_stride, comp_pred, 32); \
133 DECLARE_ALIGNED(64, uint8_t, comp_pred[64 * height]); \
134 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 64, height, ref, \
136 return vpx_sad64x##height##_vsx(src, src_stride, comp_pred, 64); \
/external/libvpx/libvpx/vpx_dsp/
Dsad.c42 DECLARE_ALIGNED(16, uint8_t, comp_pred[m * n]); \
43 vpx_comp_avg_pred_c(comp_pred, second_pred, m, n, ref, ref_stride); \
44 return sad(src, src_stride, comp_pred, m, m, n); \
175 DECLARE_ALIGNED(16, uint16_t, comp_pred[m * n]); \
176 vpx_highbd_comp_avg_pred_c(comp_pred, second_pred, m, n, ref, ref_stride); \
177 return highbd_sadb(src, src_stride, comp_pred, m, m, n); \
Dvariance.c224 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, in vpx_comp_avg_pred_c() argument
231 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1); in vpx_comp_avg_pred_c()
233 comp_pred += width; in vpx_comp_avg_pred_c()
541 void vpx_highbd_comp_avg_pred(uint16_t *comp_pred, const uint8_t *pred8, in vpx_highbd_comp_avg_pred() argument
550 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1); in vpx_highbd_comp_avg_pred()
552 comp_pred += width; in vpx_highbd_comp_avg_pred()
Dvpx_dsp_rtcd_defs.pl1150 add_proto qw/void vpx_comp_avg_pred/, "uint8_t *comp_pred, const uint8_t *pred, int width, int heig…
1370 …add_proto qw/void vpx_highbd_comp_avg_pred/, "uint16_t *comp_pred, const uint8_t *pred8, int width…
/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c3041 int comp_pred, i, k; in vp9_rd_pick_inter_mode_sb() local
3312 comp_pred = second_ref_frame > INTRA_FRAME; in vp9_rd_pick_inter_mode_sb()
3313 if (comp_pred) { in vp9_rd_pick_inter_mode_sb()
3380 if (comp_pred) xd->plane[i].pre[1] = yv12_mb[second_ref_frame][i]; in vp9_rd_pick_inter_mode_sb()
3416 compmode_cost = vp9_cost_bit(comp_mode_p, comp_pred); in vp9_rd_pick_inter_mode_sb()
3423 if (comp_pred) { in vp9_rd_pick_inter_mode_sb()
3553 if (!comp_pred) { in vp9_rd_pick_inter_mode_sb()
3590 if (x->skip && !comp_pred) break; in vp9_rd_pick_inter_mode_sb()
3710 const int comp_pred = 0; in vp9_rd_pick_inter_mode_sb_seg_skip() local
3767 rate2 += vp9_cost_bit(comp_mode_p, comp_pred); in vp9_rd_pick_inter_mode_sb_seg_skip()
[all …]
Dvp9_mcomp.c337 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]); in setup_center_error()
338 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride); in setup_center_error()
339 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1); in setup_center_error()
352 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]); in setup_center_error()
353 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride); in setup_center_error()
354 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1); in setup_center_error()
Dvp9_pickmode.c1677 int comp_pred = 0; in vp9_pick_inter_mode() local
1696 comp_pred = 1; in vp9_pick_inter_mode()
1715 if (comp_pred) { in vp9_pick_inter_mode()
1815 if (comp_pred) xd->plane[i].pre[1] = yv12_mb[second_ref_frame][i]; in vp9_pick_inter_mode()
1930 if (inter_mv_mode == this_mode || comp_pred) continue; in vp9_pick_inter_mode()
1956 if (this_mode != NEARESTMV && !comp_pred && in vp9_pick_inter_mode()
/external/libvpx/libvpx/test/
Dsad_test.cc171 const uint8_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); in ReferenceSADavg() local
172 sad += abs(source8[h * source_stride_ + w] - comp_pred); in ReferenceSADavg()
177 const uint16_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); in ReferenceSADavg() local
178 sad += abs(source16[h * source_stride_ + w] - comp_pred); in ReferenceSADavg()
/external/libvpx/config/arm64/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
33 void vpx_comp_avg_pred_neon(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
707 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/arm-neon/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
33 void vpx_comp_avg_pred_neon(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
707 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/mips64/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
654 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/generic/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
654 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/arm/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
654 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/mips32/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
654 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/mips32-dspr2/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
668 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/x86/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
33 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
823 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/x86_64/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
33 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
824 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/mips32-msa/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
689 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…
/external/libvpx/config/mips64-msa/
Dvpx_dsp_rtcd.h32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
689 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, c…