HomeSort by relevance Sort by last modified time
    Searched refs:rtcd (Results 26 - 37 of 37) sorted by null

12

  /external/libvpx/vp8/common/
loopfilter.c 201 cm->lf_mbv = LF_INVOKE(&cm->rtcd.loopfilter, normal_mb_v);
202 cm->lf_bv = LF_INVOKE(&cm->rtcd.loopfilter, normal_b_v);
203 cm->lf_mbh = LF_INVOKE(&cm->rtcd.loopfilter, normal_mb_h);
204 cm->lf_bh = LF_INVOKE(&cm->rtcd.loopfilter, normal_b_h);
208 cm->lf_mbv = LF_INVOKE(&cm->rtcd.loopfilter, simple_mb_v);
209 cm->lf_bv = LF_INVOKE(&cm->rtcd.loopfilter, simple_b_v);
210 cm->lf_mbh = LF_INVOKE(&cm->rtcd.loopfilter, simple_mb_h);
211 cm->lf_bh = LF_INVOKE(&cm->rtcd.loopfilter, simple_b_h);
blockd.h 286 struct VP8_COMMON_RTCD *rtcd; member in struct:__anon5054
onyxc_int.h 197 VP8_COMMON_RTCD rtcd; member in struct:VP8Common
reconintra.c 20 void vp8_recon_intra_mbuv(const vp8_recon_rtcd_vtable_t *rtcd, MACROBLOCKD *x)
27 RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
  /external/libvpx/vp8/encoder/
pickinter.c 36 extern int VP8_UVSSE(MACROBLOCK *x, const vp8_variance_rtcd_vtable_t *rtcd);
152 static int get_prediction_error(BLOCK *be, BLOCKD *b, const vp8_variance_rtcd_vtable_t *rtcd)
159 return VARIANCE_INVOKE(rtcd, get4x4sse_cs)(sptr, be->src_stride, dptr, 16, 0x7fffffff);
164 const VP8_ENCODER_RTCD *rtcd,
200 distortion = get_prediction_error(be, b, &rtcd->variance);
213 vp8_encode_intra4x4block(rtcd, x, be, b, b->bmi.mode);
218 int vp8_pick_intra4x4mby_modes(const VP8_ENCODER_RTCD *rtcd, MACROBLOCK *mb, int *Rate, int *best_dist)
246 error += pick_intra4x4block(rtcd,
622 vp8_pick_intra4x4mby_modes(IF_RTCD(&cpi->rtcd), x, &rate, &distortion2);
624 distortion2 = VARIANCE_INVOKE(&cpi->rtcd.variance, get16x16prederror)(x->src.y_buffer, x->src.y_stride, x->e_mbd.predictor, 16, 0x7fffffff)
    [all...]
rdopt.c 541 int VP8_UVSSE(MACROBLOCK *x, const vp8_variance_rtcd_vtable_t *rtcd)
565 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
566 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
571 VARIANCE_INVOKE(rtcd, subpixvar8x8)(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
572 VARIANCE_INVOKE(rtcd, subpixvar8x8)(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
684 vp8_encode_intra4x4block_rd(IF_RTCD(&cpi->rtcd), x, be, b, mode);
691 distortion = ENCODEMB_INVOKE(IF_RTCD(&cpi->rtcd.encodemb), berr)(be->coeff, b->dqcoeff) >> 2;
708 vp8_encode_intra4x4block_rd(IF_RTCD(&cpi->rtcd), x, be, b, b->bmi.mode);
779 vp8_encode_intra16x16mbyrd(IF_RTCD(&cpi->rtcd), x);
785 VARIANCE_INVOKE(&cpi->rtcd.variance, get16x16var)(x->src.y_buffer, x->src.y_stride, x->e_mbd.dst.y_buffer, x->e_mbd.dst.y_str (…)
    [all...]
temporal_filter.c 90 RECON_INVOKE(&x->rtcd->recon, copy16x16)(yptr, stride, &pred[0], 16);
110 RECON_INVOKE(&x->rtcd->recon, copy8x8)(uptr, stride, &pred[256], 8);
111 RECON_INVOKE(&x->rtcd->recon, copy8x8)(vptr, stride, &pred[320], 8);
ethreading.c 361 mbd->rtcd = xd->rtcd;
onyx_int.h 623 VP8_ENCODER_RTCD rtcd; member in struct:__anon5136
firstpass.c 84 vp8_encode_intra16x16mby(IF_RTCD(&cpi->rtcd), x);
93 vp8_encode_intra4x4block(IF_RTCD(&cpi->rtcd), x, be, b, B_DC_PRED);
97 intra_pred_var = VARIANCE_INVOKE(&cpi->rtcd.variance, getmbss)(x->src_diff);
448 VARIANCE_INVOKE(IF_RTCD(&cpi->rtcd.variance), mse16x16) ( src_ptr, src_stride, ref_ptr, ref_stride, (unsigned int *)(best_motion_err));
469 v_fn_ptr.vf = VARIANCE_INVOKE(IF_RTCD(&cpi->rtcd.variance), mse16x16);
690 vp8_encode_inter16x16y(IF_RTCD(&cpi->rtcd), x);
    [all...]
  /external/libvpx/vp8/decoder/
threading.c 34 #define RTCD_VTABLE(x) (&(pbi)->common.rtcd.x)
49 mbd->rtcd = xd->rtcd;
    [all...]
decodframe.c 105 #define RTCD_VTABLE(x) (&(pbi)->common.rtcd.x)

Completed in 276 milliseconds

12