HomeSort by relevance Sort by last modified time
    Searched refs:yv12_fb (Results 1 - 20 of 20) sorted by null

  /external/libvpx/libvpx/vp8/decoder/
onyxd_if.c 127 if(cm->yv12_fb[ref_fb_idx].y_height != sd->y_height ||
128 cm->yv12_fb[ref_fb_idx].y_width != sd->y_width ||
129 cm->yv12_fb[ref_fb_idx].uv_height != sd->uv_height ||
130 cm->yv12_fb[ref_fb_idx].uv_width != sd->uv_width){
135 vp8_yv12_copy_frame(&cm->yv12_fb[ref_fb_idx], sd);
159 if(cm->yv12_fb[*ref_fb_ptr].y_height != sd->y_height ||
160 cm->yv12_fb[*ref_fb_ptr].y_width != sd->y_width ||
161 cm->yv12_fb[*ref_fb_ptr].uv_height != sd->uv_height ||
162 cm->yv12_fb[*ref_fb_ptr].uv_width != sd->uv_width){
175 vp8_yv12_copy_frame(sd, &cm->yv12_fb[*ref_fb_ptr])
    [all...]
  /external/libvpx/libvpx/vp8/common/
alloccommon.c 24 vp8_yv12_de_alloc_frame_buffer(&oci->yv12_fb[i]);
64 oci->yv12_fb[i].flags = 0;
65 if (vp8_yv12_alloc_frame_buffer(&oci->yv12_fb[i], width, height, VP8BORDERINPIXELS) < 0)
onyxc_int.h 79 YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; member in struct:VP8Common
  /external/libvpx/libvpx/vp8/encoder/
rdopt.h 90 get_plane_pointers(&cpi->common.yv12_fb[cpi->common.lst_fb_idx],
94 get_plane_pointers(&cpi->common.yv12_fb[cpi->common.gld_fb_idx],
98 get_plane_pointers(&cpi->common.yv12_fb[cpi->common.alt_fb_idx],
ethreading.c 87 int recon_y_stride = cm->yv12_fb[ref_fb_idx].y_stride;
88 int recon_uv_stride = cm->yv12_fb[ref_fb_idx].uv_stride;
150 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
151 xd->dst.u_buffer = cm->yv12_fb[dst_fb_idx].u_buffer + recon_uvoffset;
152 xd->dst.v_buffer = cm->yv12_fb[dst_fb_idx].v_buffer + recon_uvoffset;
277 vp8_extend_mb_row( &cm->yv12_fb[dst_fb_idx],
468 mbd->pre = cm->yv12_fb[cm->lst_fb_idx];
469 mbd->dst = cm->yv12_fb[cm->new_fb_idx];
encodeframe.c 269 YV12_BUFFER_CONFIG *new_yv12 = &cm->yv12_fb[cm->new_fb_idx];
374 int recon_y_stride = cm->yv12_fb[ref_fb_idx].y_stride;
375 int recon_uv_stride = cm->yv12_fb[ref_fb_idx].uv_stride;
450 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
451 xd->dst.u_buffer = cm->yv12_fb[dst_fb_idx].u_buffer + recon_uvoffset;
452 xd->dst.v_buffer = cm->yv12_fb[dst_fb_idx].v_buffer + recon_uvoffset;
591 vp8_extend_mb_row( &cm->yv12_fb[dst_fb_idx],
633 xd->pre = cm->yv12_fb[cm->lst_fb_idx];
634 xd->dst = cm->yv12_fb[cm->new_fb_idx];
637 vp8_setup_intra_recon(&cm->yv12_fb[cm->new_fb_idx])
    [all...]
onyx_if.c 3081 YV12_BUFFER_CONFIG *yv12_fb = cm->yv12_fb; local
    [all...]
firstpass.c 515 YV12_BUFFER_CONFIG *lst_yv12 = &cm->yv12_fb[cm->lst_fb_idx];
516 YV12_BUFFER_CONFIG *new_yv12 = &cm->yv12_fb[cm->new_fb_idx];
517 YV12_BUFFER_CONFIG *gld_yv12 = &cm->yv12_fb[cm->gld_fb_idx];
    [all...]
rdopt.c     [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_onyxc_int.h 111 YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; member in struct:VP9Common
217 return &cm->yv12_fb[cm->active_ref_idx[ref]];
221 return &cm->yv12_fb[cm->new_fb_idx];
vp9_alloccommon.c 38 vp9_free_frame_buffer(&cm->yv12_fb[i]);
146 if (vp9_alloc_frame_buffer(&cm->yv12_fb[i], width, height, ss_x, ss_y,
vp9_reconinter.c 236 YV12_BUFFER_CONFIG *const fb = &cm->yv12_fb[ref];
  /external/libvpx/libvpx/vp9/decoder/
vp9_onyxd_if.c 203 YV12_BUFFER_CONFIG *cfg = &cm->yv12_fb[cm->ref_frame_map[0]];
241 if (!equal_dimensions(&cm->yv12_fb[*ref_fb_ptr], sd)) {
253 vp8_yv12_copy_frame(sd, &cm->yv12_fb[*ref_fb_ptr]);
267 *fb = &cm->yv12_fb[cm->ref_frame_map[index]];
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 502 xd->pre = pc->yv12_fb[pc->lst_fb_idx];
503 xd->dst = pc->yv12_fb[pc->new_fb_idx];
508 pbi->mb_row_di[i].mbd.dst = pc->yv12_fb[pc->new_fb_idx];
  /external/libvpx/libvpx/vp9/encoder/
vp9_onyx_if.c     [all...]
vp9_mbgraph.c 396 &cm->yv12_fb[cm->ref_frame_map[cpi->gld_fb_idx]];
vp9_encodeframe.c 538 setup_dst_planes(xd, &cm->yv12_fb[dst_fb_idx], mi_row, mi_col);
    [all...]
vp9_firstpass.c 493 YV12_BUFFER_CONFIG *const lst_yv12 = &cm->yv12_fb[lst_yv12_idx];
494 YV12_BUFFER_CONFIG *const gld_yv12 = &cm->yv12_fb[gld_yv12_idx];
    [all...]
vp9_bitstream.c     [all...]
vp9_rdopt.c     [all...]

Completed in 1030 milliseconds