Lines Matching refs:cpi

140     VP8_COMP *cpi,
147 MACROBLOCK *x = &cpi->mb;
179 if (cpi->Speed < 8)
181 step_param = cpi->sf.first_step + (cpi->Speed > 5);
185 step_param = cpi->sf.first_step + 2;
192 &cpi->fn_ptr[BLOCK_16X16],
201 bestsme = cpi->find_fractional_mv_step(x, b, d,
205 &cpi->fn_ptr[BLOCK_16X16],
224 VP8_COMP *cpi,
234 int mb_cols = cpi->common.mb_cols;
235 int mb_rows = cpi->common.mb_rows;
240 MACROBLOCKD *mbd = &cpi->mb.e_mbd;
241 YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index];
264 cpi->mb.mv_row_min = -((mb_row * 16) + (16 - 5));
265 cpi->mb.mv_row_max = ((cpi->common.mb_rows - 1 - mb_row) * 16)
278 cpi->mb.mv_col_min = -((mb_col * 16) + (16 - 5));
279 cpi->mb.mv_col_max = ((cpi->common.mb_cols - 1 - mb_col) * 16)
285 if (cpi->frames[frame] == NULL)
303 (cpi,
304 cpi->frames[alt_ref_index],
305 cpi->frames[frame],
322 cpi->frames[frame]->y_buffer + mb_y_offset,
323 cpi->frames[frame]->u_buffer + mb_uv_offset,
324 cpi->frames[frame]->v_buffer + mb_uv_offset,
325 cpi->frames[frame]->y_stride,
364 dst1 = cpi->alt_ref_buffer.y_buffer;
365 stride = cpi->alt_ref_buffer.y_stride;
372 pval *= cpi->fixed_divide[count[k]];
384 dst1 = cpi->alt_ref_buffer.u_buffer;
385 dst2 = cpi->alt_ref_buffer.v_buffer;
386 stride = cpi->alt_ref_buffer.uv_stride;
396 pval *= cpi->fixed_divide[count[k]];
402 pval *= cpi->fixed_divide[count[m]];
429 VP8_COMP *cpi,
442 int strength = cpi->oxcf.arnr_strength;
444 int blur_type = cpi->oxcf.arnr_type;
446 int max_frames = cpi->active_arnr_frames;
449 num_frames_forward = vp8_lookahead_depth(cpi->lookahead)
502 vpx_memset(cpi->frames, 0, max_frames*sizeof(YV12_BUFFER_CONFIG *));
506 struct lookahead_entry* buf = vp8_lookahead_peek(cpi->lookahead,
509 cpi->frames[frames_to_blur-1-frame] = &buf->img;
513 cpi,