Lines Matching refs:dest_cb
967 uint8_t *dest_cb,
1078 dest_cb += s->uvlinesize;
1097 pix_op[op_index](dest_cb, ptr_cb, uvlinesize, hc, uvsx, uvsy);
1105 uint8_t *dest_cb, uint8_t *dest_cr,
1148 pix_op[op_index](dest_cb, ptr, s->uvlinesize, block_s, sx, sy);
1165 * @param dest_cb chroma cb/u destination pointer
1173 uint8_t *dest_y, uint8_t *dest_cb,
1188 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1213 chroma_4mv_motion_lowres(s, dest_cb, dest_cr, ref_picture,
1219 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1225 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1236 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1254 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1261 dest_cb += (2 * block_s >> s->chroma_y_shift) * s->uvlinesize;
1270 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1281 mpeg_motion_lowres(s, dest_y, dest_cb, dest_cr,
1438 uint8_t *dest_y, *dest_cb, *dest_cr;
1468 dest_cb= s->dest[1];
1472 dest_cb= s->sc.b_scratchpad+16*linesize;
1498 MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f->data, op_pix);
1502 MPV_motion_lowres(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f->data, op_pix);
1512 ff_mpv_motion(s, dest_y, dest_cb, dest_cr, 0, s->last_picture.f->data, op_pix, op_qpix);
1517 ff_mpv_motion(s, dest_y, dest_cb, dest_cr, 1, s->next_picture.f->data, op_pix, op_qpix);
1540 add_dequant_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
1545 add_dequant_dct(s, block[4], 4, dest_cb, dct_linesize, s->chroma_qscale);
1547 add_dequant_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
1559 add_dct(s, block[4], 4, dest_cb, uvlinesize);
1566 add_dct(s, block[4], 4, dest_cb, dct_linesize);
1568 add_dct(s, block[6], 6, dest_cb+dct_offset, dct_linesize);
1571 add_dct(s, block[8], 8, dest_cb+block_size, dct_linesize);
1573 add_dct(s, block[10], 10, dest_cb+block_size+dct_offset, dct_linesize);
1579 ff_wmv2_add_mb(s, block, dest_y, dest_cb, dest_cr);
1586 ff_mpeg4_decode_studio(s, dest_y, dest_cb, dest_cr, block_size,
1598 put_dct(s, block[4], 4, dest_cb, uvlinesize, s->chroma_qscale);
1603 put_dct(s, block[4], 4, dest_cb, dct_linesize, s->chroma_qscale);
1605 put_dct(s, block[6], 6, dest_cb + dct_offset, dct_linesize, s->chroma_qscale);
1617 s->idsp.idct_put(dest_cb, uvlinesize, block[4]);
1624 s->idsp.idct_put(dest_cb, dct_linesize, block[4]);
1626 s->idsp.idct_put(dest_cb + dct_offset, dct_linesize, block[6]);
1629 s->idsp.idct_put(dest_cb + block_size, dct_linesize, block[8]);
1631 s->idsp.idct_put(dest_cb + block_size + dct_offset, dct_linesize, block[10]);
1642 s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);