Home | History | Annotate | Download | only in encoder

Lines Matching refs:lst_yv12

521     YV12_BUFFER_CONFIG *lst_yv12 = &cm->yv12_fb[cm->lst_fb_idx];
524 int recon_y_stride = lst_yv12->y_stride;
525 int recon_uv_stride = lst_yv12->uv_stride;
547 xd->pre = *lst_yv12;
629 vp8_zz_motion_search( cpi, x, lst_yv12, &motion_error, recon_yoffset );
639 &d->bmi.mv.as_mv, lst_yv12,
647 lst_yv12, &tmp_err, recon_yoffset);
679 xd->pre.y_buffer = lst_yv12->y_buffer + recon_yoffset;
680 xd->pre.u_buffer = lst_yv12->u_buffer + recon_uvoffset;
681 xd->pre.v_buffer = lst_yv12->v_buffer + recon_uvoffset;
856 vp8_yv12_copy_frame_ptr(lst_yv12, gld_yv12);
860 vp8_swap_yv12_buffer(lst_yv12, new_yv12);
861 vp8_yv12_extend_frame_borders(lst_yv12);
866 vp8_yv12_copy_frame_ptr(lst_yv12, gld_yv12);
882 if(fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file));
2409 YV12_BUFFER_CONFIG *lst_yv12 = &cpi->common.yv12_fb[cpi->common.lst_fb_idx];
2429 if ((lst_yv12->y_width * lst_yv12->y_height) > (320 * 240))
2430 kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240);
2431 else if ((lst_yv12->y_width * lst_yv12->y_height) < (320 * 240))
2432 kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height);