Searched defs:comp_pred (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dvariance_vsx.c58 void vpx_comp_avg_pred_vsx(uint8_t *comp_pred, const uint8_t *pred, int width, argument
61 /* comp_pred and pred must be 16 byte aligned. */
62 assert(((intptr_t)comp_pred & 0xf) == 0);
68 vec_vsx_st(v, j, comp_pred);
70 comp_pred += width;
81 vec_vsx_st(v, 0, comp_pred);
82 comp_pred += 16; // width * 2;
97 vec_vsx_st(v, 0, comp_pred);
98 comp_pred += 16; // width * 4;
/external/libvpx/libvpx/vpx_dsp/
H A Dvariance.c224 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, argument
231 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1);
233 comp_pred += width;
541 void vpx_highbd_comp_avg_pred(uint16_t *comp_pred, const uint8_t *pred8, argument
550 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1);
552 comp_pred += width;
/external/libvpx/libvpx/test/
H A Dsad_test.cc171 const uint8_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); local
172 sad += abs(source8[h * source_stride_ + w] - comp_pred);
177 const uint16_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); local
178 sad += abs(source16[h * source_stride_ + w] - comp_pred);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_pickmode.c1677 int comp_pred = 0; local
1696 comp_pred = 1;
1715 if (comp_pred) {
1815 if (comp_pred) xd->plane[i].pre[1] = yv12_mb[second_ref_frame][i];
1930 if (inter_mv_mode == this_mode || comp_pred) continue;
1956 if (this_mode != NEARESTMV && !comp_pred &&
H A Dvp9_rdopt.c3041 int comp_pred, i, k; local
3312 comp_pred = second_ref_frame > INTRA_FRAME;
3313 if (comp_pred) {
3380 if (comp_pred) xd->plane[i].pre[1] = yv12_mb[second_ref_frame][i];
3416 compmode_cost = vp9_cost_bit(comp_mode_p, comp_pred);
3423 if (comp_pred) {
3553 if (!comp_pred) {
3590 if (x->skip && !comp_pred) break;
3710 const int comp_pred = 0; local
3767 rate2 += vp9_cost_bit(comp_mode_p, comp_pred);
3810 int comp_pred, i; local
[all...]

Completed in 381 milliseconds