/external/libvpx/vp8/encoder/ |
pickinter.h | 20 extern int vp8_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int recon_uvoffset, int *returnrate, int *returndistortion, int *returnintra);
|
rdopt.h | 18 extern int vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int recon_uvoffset, int *returnrate, int *returndistortion, int *returnintra); 31 void vp8_cal_sad(VP8_COMP *cpi, MACROBLOCKD *xd, MACROBLOCK *x, int recon_yoffset, int near_sadidx[]);
|
ethreading.c | 19 TOKENEXTRA **t, int recon_yoffset, 88 int recon_yoffset, recon_uvoffset; local 108 recon_yoffset = (mb_row * recon_y_stride * 16); 142 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 179 *totalrate += vp8cx_encode_inter_macroblock(cpi, x, &tp, recon_yoffset, recon_uvoffset); 235 recon_yoffset += 16;
|
encodeframe.c | 51 int vp8cx_encode_inter_macroblock(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t, int recon_yoffset, int recon_uvoffset); 475 int recon_yoffset, recon_uvoffset; local 498 recon_yoffset = (mb_row * recon_y_stride * 16); 530 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 582 *totalrate += vp8cx_encode_inter_macroblock(cpi, x, tp, recon_yoffset, recon_uvoffset); 638 recon_yoffset += 16; [all...] |
firstpass.c | 407 static void zz_motion_search( VP8_COMP *cpi, MACROBLOCK * x, YV12_BUFFER_CONFIG * recon_buffer, int * best_motion_err, int recon_yoffset ) 419 xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset; 426 static void first_pass_motion_search(VP8_COMP *cpi, MACROBLOCK *x, MV *ref_mv, MV *best_mv, YV12_BUFFER_CONFIG *recon_buffer, int *best_motion_err, int recon_yoffset ) 446 xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset; 494 int recon_yoffset, recon_uvoffset; local 555 recon_yoffset = (mb_row * recon_y_stride * 16); 571 xd->dst.y_buffer = new_yv12->y_buffer + recon_yoffset; 602 zz_motion_search( cpi, x, lst_yv12, &motion_error, recon_yoffset ); 610 &motion_error, recon_yoffset); 617 lst_yv12, &tmp_err, recon_yoffset); [all...] |
pickinter.c | 415 int vp8_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int recon_uvoffset, int *returnrate, int *returndistortion, int *returnintra) 470 y_buffer[LAST_FRAME] = lst_yv12->y_buffer + recon_yoffset; 484 y_buffer[GOLDEN_FRAME] = gld_yv12->y_buffer + recon_yoffset; 498 y_buffer[ALTREF_FRAME] = alt_yv12->y_buffer + recon_yoffset; 615 vp8_cal_sad(cpi,xd,x, recon_yoffset ,&near_sadidx[0] );
|
rdopt.c | [all...] |
/external/libvpx/vp8/decoder/ |
threading.c | 247 int recon_yoffset, recon_uvoffset; local 264 recon_yoffset = mb_row * recon_y_stride * 16; 302 xd->dst.y_buffer = pc->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 316 xd->pre.y_buffer = pc->yv12_fb[ref_fb_idx].y_buffer + recon_yoffset; 377 recon_yoffset += 16; 734 int recon_yoffset, recon_uvoffset; local 746 recon_yoffset = mb_row * recon_y_stride * 16; 781 xd->dst.y_buffer = pc->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 795 xd->pre.y_buffer = pc->yv12_fb[ref_fb_idx].y_buffer + recon_yoffset; [all...] |
decodframe.c | 328 int recon_yoffset, recon_uvoffset; local 336 recon_yoffset = mb_row * recon_y_stride * 16; 364 xd->dst.y_buffer = pc->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 378 xd->pre.y_buffer = pc->yv12_fb[ref_fb_idx].y_buffer + recon_yoffset; 401 recon_yoffset += 16;
|