26 ptrdiff_t buf_linesize,
27 ptrdiff_t src_linesize,
28 int block_w,
int block_h,
29 int src_x,
int src_y,
int w,
int h)
32 int start_y, start_x, end_y, end_x;
38 src -= src_y * src_linesize;
39 src += (h - 1) * src_linesize;
41 }
else if (src_y <= -block_h) {
42 src -= src_y * src_linesize;
43 src += (1 - block_h) * src_linesize;
47 src += (w - 1 - src_x) *
sizeof(
pixel);
49 }
else if (src_x <= -block_w) {
50 src += (1 - block_w - src_x) *
sizeof(
pixel);
54 start_y =
FFMAX(0, -src_y);
55 start_x =
FFMAX(0, -src_x);
56 end_y =
FFMIN(block_h, h-src_y);
57 end_x =
FFMIN(block_w, w-src_x);
62 src += start_y * src_linesize + start_x *
sizeof(
pixel);
66 for (y = 0; y < start_y; y++) {
72 for (; y < end_y; y++) {
80 for (; y < block_h; y++) {
85 buf -= block_h * buf_linesize + start_x *
sizeof(
pixel);
90 for(x = 0; x < start_x; x++) {
91 bufp[x] = bufp[start_x];
95 for (x = end_x; x < block_w; x++) {
96 bufp[x] = bufp[end_x - 1];