HomeSort by relevance Sort by last modified time
    Searched defs:recon_yoffset (Results 1 - 5 of 5) sorted by null

  /external/libvpx/vp8/encoder/
ethreading.c 18 extern int vp8cx_encode_inter_macroblock(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t, int recon_yoffset, int recon_uvoffset);
57 int recon_yoffset, recon_uvoffset; local
77 recon_yoffset = (mb_row * recon_y_stride * 16);
109 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
139 *totalrate += vp8cx_encode_inter_macroblock(cpi, x, tp, recon_yoffset, recon_uvoffset);
174 recon_yoffset += 16;
encodeframe.c 51 int vp8cx_encode_inter_macroblock(VP8_COMP *cpi, MACROBLOCK *x, TOKENEXTRA **t, int recon_yoffset, int recon_uvoffset);
378 int recon_yoffset, recon_uvoffset; local
391 recon_yoffset = (mb_row * recon_y_stride * 16);
423 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
454 *totalrate += vp8cx_encode_inter_macroblock(cpi, x, tp, recon_yoffset, recon_uvoffset);
510 recon_yoffset += 16;
    [all...]
firstpass.c 432 void vp8_zz_motion_search( VP8_COMP *cpi, MACROBLOCK * x, YV12_BUFFER_CONFIG * recon_buffer, int * best_motion_err, int recon_yoffset )
444 xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset;
452 void vp8_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 )
472 xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset;
520 int recon_yoffset, recon_uvoffset; local
581 recon_yoffset = (mb_row * recon_y_stride * 16);
593 xd->dst.y_buffer = new_yv12->y_buffer + recon_yoffset;
629 vp8_zz_motion_search( cpi, x, lst_yv12, &motion_error, recon_yoffset );
640 &motion_error, recon_yoffset);
647 lst_yv12, &tmp_err, recon_yoffset);
    [all...]
  /external/libvpx/vp8/decoder/
decodframe.c 330 int recon_yoffset, recon_uvoffset; local
338 recon_yoffset = mb_row * recon_y_stride * 16;
366 xd->dst.y_buffer = pc->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
380 xd->pre.y_buffer = pc->yv12_fb[ref_fb_idx].y_buffer + recon_yoffset;
395 recon_yoffset += 16;
threading.c 265 int recon_yoffset, recon_uvoffset; local
282 recon_yoffset = mb_row * recon_y_stride * 16;
332 xd->dst.y_buffer = pc->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
346 xd->pre.y_buffer = pc->yv12_fb[ref_fb_idx].y_buffer + recon_yoffset;
398 recon_yoffset += 16;
820 int recon_yoffset, recon_uvoffset; local
832 recon_yoffset = mb_row * recon_y_stride * 16;
    [all...]

Completed in 233 milliseconds