Lines Matching defs:plane
338 static void vp56_mc(VP56Context *s, int b, int plane, uint8_t *src,
341 uint8_t *dst = s->frames[VP56_FRAME_CURRENT]->data[plane] + s->block_offset[b];
365 if (x<0 || x+12>=s->plane_width[plane] ||
366 y<0 || y+12>=s->plane_height[plane]) {
371 s->plane_width[plane],
372 s->plane_height[plane]);
429 int b, ab, b_max, plane, off;
446 plane = ff_vp56_b2p[b+ab];
447 vp56_idct_put(s, frame_current->data[plane] + s->block_offset[b],
448 s->stride[plane], s->block_coeff[b], s->idct_selector[b]);
455 plane = ff_vp56_b2p[b+ab];
457 s->hdsp.put_pixels_tab[1][0](frame_current->data[plane] + off,
458 frame_ref->data[plane] + off,
459 s->stride[plane], 8);
460 vp56_idct_add(s, frame_current->data[plane] + off,
461 s->stride[plane], s->block_coeff[b], s->idct_selector[b]);
475 plane = ff_vp56_b2p[b+ab];
476 vp56_mc(s, b, plane, frame_ref->data[plane], s->stride[plane],
478 vp56_idct_add(s, frame_current->data[plane] + s->block_offset[b],
479 s->stride[plane], s->block_coeff[b], s->idct_selector[b]);