Lines Matching refs:dst
225 static int copy_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src,
243 dstride = dst->linesize[plane];
247 dbuf = dst->data[plane];
261 static int copyadd_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src,
268 int dstride = dst->linesize[plane];
272 uint8_t *dbuf = dst->data[plane];
418 static int tile_do_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src,
424 ret = copy_block(avctx, dst, src, plane, x, y, dx, dy, size);
426 ret = copyadd_block(avctx, dst, src, plane, x, y, dx, dy, size, bias);
432 static int restore_tree(AVCodecContext *avctx, AVFrame *dst, AVFrame *src,
443 ret = tile_do_block(avctx, dst, src, plane, x, y, mv.x, mv.y, size, tile->bias);
452 ret = restore_tree(avctx, dst, src, plane, x + xoff, y + yoff, hsize, tile->child[i], root_mv);
455 ret = tile_do_block(avctx, dst, src, plane, x + xoff, y + yoff, mv.x, mv.y, hsize, tile->bias);