28 ptrdiff_t buf_linesize,
29 ptrdiff_t src_linesize,
30 int block_w,
int block_h,
31 int src_x,
int src_y,
int w,
int h)
34 int start_y, start_x, end_y, end_x;
42 src -= src_y * src_linesize;
43 src += (
h - 1) * src_linesize;
45 }
else if (src_y <= -block_h) {
46 src -= src_y * src_linesize;
47 src += (1 - block_h) * src_linesize;
54 }
else if (src_x <= -block_w) {
55 src += (1 - block_w - src_x) *
sizeof(
pixel);
59 start_y =
FFMAX(0, -src_y);
60 start_x =
FFMAX(0, -src_x);
61 end_y =
FFMIN(block_h,
h-src_y);
62 end_x =
FFMIN(block_w,
w-src_x);
67 src += start_y * src_linesize + start_x *
sizeof(
pixel);
68 buf += start_x *
sizeof(
pixel);
71 for (y = 0; y < start_y; y++) {
77 for (; y < end_y; y++) {
85 for (; y < block_h; y++) {
90 buf -= block_h * buf_linesize + start_x *
sizeof(
pixel);
95 for(x = 0; x < start_x; x++) {
96 bufp[x] = bufp[start_x];
100 for (x = end_x; x < block_w; x++) {
101 bufp[x] = bufp[end_x - 1];