interim rescale improvements
[melted] / src / modules / gtk2 / pixops.c
1 /* GdkPixbuf library - Scaling and compositing functions
2 *
3 * Copyright (C) 1999 The Free Software Foundation
4 *
5 * Author: Owen Taylor <otaylor@redhat.com>
6 * Modified for YUV422 by Dan Dennedy <dan@dennedy.org>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 */
23
24 #include <math.h>
25 #include <glib.h>
26 #include <stdio.h>
27
28 #include "pixops.h"
29
30 #define SUBSAMPLE_BITS 4
31 #define SUBSAMPLE (1 << SUBSAMPLE_BITS)
32 #define SUBSAMPLE_MASK ((1 << SUBSAMPLE_BITS)-1)
33 #define SCALE_SHIFT 16
34
35 typedef struct _PixopsFilter PixopsFilter;
36 typedef struct _PixopsFilterDimension PixopsFilterDimension;
37
38 struct _PixopsFilterDimension
39 {
40 int n;
41 double offset;
42 double *weights;
43 };
44
45 struct _PixopsFilter
46 {
47 PixopsFilterDimension x;
48 PixopsFilterDimension y;
49 double overall_alpha;
50 };
51
52 typedef guchar *( *PixopsLineFunc ) ( int *weights, int n_x, int n_y,
53 guchar *dest, int dest_x, guchar *dest_end,
54 guchar **src,
55 int x_init, int x_step, int src_width );
56
57 typedef void ( *PixopsPixelFunc ) ( guchar *dest, guint y1, guint cr, guint y2, guint cb );
58
59
60 /* mmx function declarations */
61 #ifdef USE_MMX
62 guchar *pixops_scale_line_22_33_mmx ( guint32 weights[ 16 ][ 8 ], guchar *p, guchar *q1, guchar *q2, int x_step, guchar *p_stop, int x_init );
63 int pixops_have_mmx ( void );
64 #endif
65
66 static inline int
67 get_check_shift ( int check_size )
68 {
69 int check_shift = 0;
70 g_return_val_if_fail ( check_size >= 0, 4 );
71
72 while ( !( check_size & 1 ) )
73 {
74 check_shift++;
75 check_size >>= 1;
76 }
77
78 return check_shift;
79 }
80
81 static inline void
82 pixops_scale_nearest ( guchar *dest_buf,
83 int render_x0,
84 int render_y0,
85 int render_x1,
86 int render_y1,
87 int dest_rowstride,
88 const guchar *src_buf,
89 int src_width,
90 int src_height,
91 int src_rowstride,
92 double scale_x,
93 double scale_y )
94 {
95 register int i, j;
96 register int x;
97 register int x_step = ( 1 << SCALE_SHIFT ) / scale_x;
98 register int y_step = ( 1 << SCALE_SHIFT ) / scale_y;
99
100 for ( i = 0; i < ( render_y1 - render_y0 ); i++ )
101 {
102 const guchar *src = src_buf + ( ( ( i + render_y0 ) * y_step + ( y_step >> 1 ) ) >> SCALE_SHIFT ) * src_rowstride;
103 guchar *dest = dest_buf + i * dest_rowstride;
104
105 x = render_x0 * x_step + ( x_step >> 1 );
106
107 for ( j = 0; j < ( render_x1 - render_x0 ); j++ )
108 {
109 int x_scaled = x >> SCALE_SHIFT;
110 *dest++ = src[ x_scaled << 1 ];
111 *dest++ = src[ ( ( x_scaled >> 1 ) << 2 ) + ( ( j & 1 ) << 1 ) + 1 ];
112 x += x_step;
113 }
114 }
115 }
116
117
118 static inline guchar *
119 scale_line ( int *weights, int n_x, int n_y,
120 guchar *dest, int dest_x, guchar *dest_end,
121 guchar **src,
122 int x_init, int x_step, int src_width )
123 {
124 int x = x_init;
125 register int i, j, dx = 0;
126
127 while ( dest < dest_end )
128 {
129 int x_scaled = x >> SCALE_SHIFT;
130 int *pixel_weights;
131 unsigned int y = 0, uv = 0;
132
133 pixel_weights = weights + ( ( x >> ( SCALE_SHIFT - SUBSAMPLE_BITS ) ) & SUBSAMPLE_MASK ) * n_x * n_y;
134
135 for ( i = 0; i < n_y; i++ )
136 {
137 int *line_weights = pixel_weights + n_x * i;
138 guchar *q = src[ i ];
139
140 for ( j = 0; j < n_x; j ++ )
141 {
142 unsigned int ta = line_weights[ j ];
143
144 y += ta * q[ ( x_scaled << 1 ) ];
145 uv += ta * q[ ( ( x_scaled >> 1 ) << 2 ) + ( ( dx & 1 ) << 1 ) + 1 ];
146 }
147 }
148
149 *dest++ = ( y + 0xffff ) >> SCALE_SHIFT;
150 *dest++ = ( uv + 0xffff ) >> SCALE_SHIFT;
151
152 x += x_step;
153 dx++;
154 }
155
156 return dest;
157 }
158
159 #ifdef USE_MMX
160 static inline guchar *
161 scale_line_22_33_mmx_stub ( int *weights, int n_x, int n_y,
162 guchar *dest, int dest_x, guchar *dest_end,
163 guchar **src,
164 int x_init, int x_step, int src_width )
165 {
166 guint32 mmx_weights[ 16 ][ 8 ];
167 int j;
168
169 for ( j = 0; j < 16; j++ )
170 {
171 mmx_weights[ j ][ 0 ] = 0x00010001 * ( weights[ 4 * j ] >> 8 );
172 mmx_weights[ j ][ 1 ] = 0x00010001 * ( weights[ 4 * j ] >> 8 );
173 mmx_weights[ j ][ 2 ] = 0x00010001 * ( weights[ 4 * j + 1 ] >> 8 );
174 mmx_weights[ j ][ 3 ] = 0x00010001 * ( weights[ 4 * j + 1 ] >> 8 );
175 mmx_weights[ j ][ 4 ] = 0x00010001 * ( weights[ 4 * j + 2 ] >> 8 );
176 mmx_weights[ j ][ 5 ] = 0x00010001 * ( weights[ 4 * j + 2 ] >> 8 );
177 mmx_weights[ j ][ 6 ] = 0x00010001 * ( weights[ 4 * j + 3 ] >> 8 );
178 mmx_weights[ j ][ 7 ] = 0x00010001 * ( weights[ 4 * j + 3 ] >> 8 );
179 }
180
181 return pixops_scale_line_22_33_mmx ( mmx_weights, dest, src[ 0 ], src[ 1 ], x_step, dest_end, x_init );
182 }
183 #endif /* USE_MMX */
184
185 static inline guchar *
186 scale_line_22_33 ( int *weights, int n_x, int n_y,
187 guchar *dest, int dest_x, guchar *dest_end,
188 guchar **src,
189 int x_init, int x_step, int src_width )
190 {
191 int x = x_init;
192 guchar *src0 = src[ 0 ];
193 guchar *src1 = src[ 1 ];
194 int dx = 0;
195
196 while ( dest < dest_end )
197 {
198 unsigned int y, uv;
199 int x_scaled = x >> SCALE_SHIFT;
200 int *pixel_weights;
201 guchar *q0, *q1;
202 int w1, w2, w3, w4;
203 int x_aligned = ( ( x_scaled >> 1 ) << 2 );
204 int uv_index = ( ( dx & 1 ) << 1 ) + 1;
205
206 pixel_weights = weights + ( ( x >> ( SCALE_SHIFT - SUBSAMPLE_BITS ) ) & SUBSAMPLE_MASK ) * 4;
207
208 w1 = pixel_weights[ 0 ];
209 w2 = pixel_weights[ 1 ];
210 w3 = pixel_weights[ 2 ];
211 w4 = pixel_weights[ 3 ];
212
213 q0 = src0 + ( x_scaled << 1 );
214 q1 = src1 + ( x_scaled << 1 );
215
216 y = w1 * q0[ 0 ];
217 y += w2 * q0[ 2 ];
218 y += w3 * q1[ 0 ];
219 y += w4 * q1[ 2 ];
220 *dest++ = ( y + 0x8000 ) >> 16;
221
222 q0 = src0 + x_aligned;
223 q1 = src1 + x_aligned;
224
225 uv = w1 * q0[ uv_index ];
226 uv += w2 * q0[ uv_index ];
227 uv += w3 * q1[ uv_index ];
228 uv += w4 * q1[ uv_index ];
229 *dest++ = ( uv + 0x8000 ) >> 16;
230
231 x += x_step;
232 dx++;
233 }
234
235 return dest;
236 }
237
238
239 static inline void
240 process_pixel ( int *weights, int n_x, int n_y,
241 guchar *dest, int dest_x, int dest_channels,
242 guchar **src, int src_channels,
243 int x_start, int src_width )
244 {
245 register unsigned int y = 0, uv = 0;
246 register int i, j, dx = 0;
247
248 for ( i = 0; i < n_y; i++ )
249 {
250 int *line_weights = weights + n_x * i;
251
252 for ( j = 0; j < n_x; j++ )
253 {
254 unsigned int ta = 0xff * line_weights[ j ];
255
256 if ( x_start + j < 0 )
257 {
258 y += ta * src[ i ][ 0 ];
259 uv += ta * src[ i ][ ( ( dx & 1 ) << 1 ) + 1 ];
260 }
261 else if ( x_start + j < src_width )
262 {
263 y += ta * src[ i ][ ( x_start + j ) << 1 ];
264 uv += ta * src[ i ][ ( ( ( x_start + j ) >> 1 ) << 2) + ( ( dx & 1 ) << 1 ) + 1 ];
265 }
266 else
267 {
268 y += ta * src[ i ][ ( src_width - 1 ) << 1 ];
269 uv += ta * src[ i ][ ( ( ( src_width - 1 ) >> 1 ) << 2) + ( ( dx & 1 ) << 1 ) + 1 ];
270 }
271 }
272 }
273
274 *dest++ = ( y + 0xffffff ) >> 24;
275 *dest++ = ( uv + 0xffffff ) >> 24;
276 dx++;
277 }
278
279
280 static inline void
281 correct_total ( int *weights,
282 int n_x,
283 int n_y,
284 int total,
285 double overall_alpha )
286 {
287 int correction = ( int ) ( 0.5 + 65536 * overall_alpha ) - total;
288 int remaining, c, d, i;
289
290 if ( correction != 0 )
291 {
292 remaining = correction;
293 for ( d = 1, c = correction; c != 0 && remaining != 0; d++, c = correction / d )
294 for ( i = n_x * n_y - 1; i >= 0 && c != 0 && remaining != 0; i-- )
295 if ( *( weights + i ) + c >= 0 )
296 {
297 *( weights + i ) += c;
298 remaining -= c;
299 if ( ( 0 < remaining && remaining < c ) ||
300 ( 0 > remaining && remaining > c ) )
301 c = remaining;
302 }
303 }
304 }
305
306
307 static inline int *
308 make_filter_table ( PixopsFilter *filter )
309 {
310 int i_offset, j_offset;
311 int n_x = filter->x.n;
312 int n_y = filter->y.n;
313 int *weights = g_new ( int, SUBSAMPLE * SUBSAMPLE * n_x * n_y );
314
315 for ( i_offset = 0; i_offset < SUBSAMPLE; i_offset++ )
316 for ( j_offset = 0; j_offset < SUBSAMPLE; j_offset++ )
317 {
318 double weight;
319 int *pixel_weights = weights + ( ( i_offset * SUBSAMPLE ) + j_offset ) * n_x * n_y;
320 int total = 0;
321 int i, j;
322
323 for ( i = 0; i < n_y; i++ )
324 for ( j = 0; j < n_x; j++ )
325 {
326 weight = filter->x.weights[ ( j_offset * n_x ) + j ] *
327 filter->y.weights[ ( i_offset * n_y ) + i ] *
328 filter->overall_alpha * 65536 + 0.5;
329
330 total += ( int ) weight;
331
332 *( pixel_weights + n_x * i + j ) = weight;
333 }
334
335 correct_total ( pixel_weights, n_x, n_y, total, filter->overall_alpha );
336 }
337
338 return weights;
339 }
340
341
342 static inline void
343 pixops_process ( guchar *dest_buf,
344 int render_x0,
345 int render_y0,
346 int render_x1,
347 int render_y1,
348 int dest_rowstride,
349 int dest_channels,
350 gboolean dest_has_alpha,
351 const guchar *src_buf,
352 int src_width,
353 int src_height,
354 int src_rowstride,
355 int src_channels,
356 gboolean src_has_alpha,
357 double scale_x,
358 double scale_y,
359 int check_x,
360 int check_y,
361 int check_size,
362 guint32 color1,
363 guint32 color2,
364 PixopsFilter *filter,
365 PixopsLineFunc line_func )
366 {
367 int i, j;
368 int x, y; /* X and Y position in source (fixed_point) */
369
370 guchar **line_bufs = g_new ( guchar *, filter->y.n );
371 int *filter_weights = make_filter_table ( filter );
372
373 int x_step = ( 1 << SCALE_SHIFT ) / scale_x; /* X step in source (fixed point) */
374 int y_step = ( 1 << SCALE_SHIFT ) / scale_y; /* Y step in source (fixed point) */
375
376 int check_shift = check_size ? get_check_shift ( check_size ) : 0;
377
378 int scaled_x_offset = floor ( filter->x.offset * ( 1 << SCALE_SHIFT ) );
379
380 /* Compute the index where we run off the end of the source buffer. The furthest
381 * source pixel we access at index i is:
382 *
383 * ((render_x0 + i) * x_step + scaled_x_offset) >> SCALE_SHIFT + filter->x.n - 1
384 *
385 * So, run_end_index is the smallest i for which this pixel is src_width, i.e, for which:
386 *
387 * (i + render_x0) * x_step >= ((src_width - filter->x.n + 1) << SCALE_SHIFT) - scaled_x_offset
388 *
389 */
390 #define MYDIV(a,b) ((a) > 0 ? (a) / (b) : ((a) - (b) + 1) / (b)) /* Division so that -1/5 = -1 */
391
392 int run_end_x = ( ( ( src_width - filter->x.n + 1 ) << SCALE_SHIFT ) - scaled_x_offset );
393 int run_end_index = MYDIV ( run_end_x + x_step - 1, x_step ) - render_x0;
394 run_end_index = MIN ( run_end_index, render_x1 - render_x0 );
395
396 y = render_y0 * y_step + floor ( filter->y.offset * ( 1 << SCALE_SHIFT ) );
397 for ( i = 0; i < ( render_y1 - render_y0 ); i++ )
398 {
399 int dest_x;
400 int y_start = y >> SCALE_SHIFT;
401 int x_start;
402 int *run_weights = filter_weights +
403 ( ( y >> ( SCALE_SHIFT - SUBSAMPLE_BITS ) ) & SUBSAMPLE_MASK ) *
404 filter->x.n * filter->y.n * SUBSAMPLE;
405 guchar *new_outbuf;
406 guint32 tcolor1, tcolor2;
407
408 guchar *outbuf = dest_buf + dest_rowstride * i;
409 guchar *outbuf_end = outbuf + dest_channels * ( render_x1 - render_x0 );
410
411 if ( ( ( i + check_y ) >> check_shift ) & 1 )
412 {
413 tcolor1 = color2;
414 tcolor2 = color1;
415 }
416 else
417 {
418 tcolor1 = color1;
419 tcolor2 = color2;
420 }
421
422 for ( j = 0; j < filter->y.n; j++ )
423 {
424 if ( y_start < 0 )
425 line_bufs[ j ] = ( guchar * ) src_buf;
426 else if ( y_start < src_height )
427 line_bufs[ j ] = ( guchar * ) src_buf + src_rowstride * y_start;
428 else
429 line_bufs[ j ] = ( guchar * ) src_buf + src_rowstride * ( src_height - 1 );
430
431 y_start++;
432 }
433
434 dest_x = check_x;
435 x = render_x0 * x_step + scaled_x_offset;
436 x_start = x >> SCALE_SHIFT;
437
438 while ( x_start < 0 && outbuf < outbuf_end )
439 {
440 process_pixel ( run_weights + ( ( x >> ( SCALE_SHIFT - SUBSAMPLE_BITS ) ) & SUBSAMPLE_MASK ) * ( filter->x.n * filter->y.n ),
441 filter->x.n, filter->y.n,
442 outbuf, dest_x, dest_channels,
443 line_bufs, src_channels,
444 x >> SCALE_SHIFT, src_width );
445
446 x += x_step;
447 x_start = x >> SCALE_SHIFT;
448 dest_x++;
449 outbuf += dest_channels;
450 }
451
452 new_outbuf = ( *line_func ) ( run_weights, filter->x.n, filter->y.n,
453 outbuf, dest_x,
454 dest_buf + dest_rowstride * i + run_end_index * dest_channels,
455 line_bufs,
456 x, x_step, src_width );
457
458 dest_x += ( new_outbuf - outbuf ) / dest_channels;
459
460 x = ( dest_x - check_x + render_x0 ) * x_step + scaled_x_offset;
461 outbuf = new_outbuf;
462
463 while ( outbuf < outbuf_end )
464 {
465 process_pixel ( run_weights + ( ( x >> ( SCALE_SHIFT - SUBSAMPLE_BITS ) ) & SUBSAMPLE_MASK ) * ( filter->x.n * filter->y.n ),
466 filter->x.n, filter->y.n,
467 outbuf, dest_x, dest_channels,
468 line_bufs, src_channels,
469 x >> SCALE_SHIFT, src_width );
470
471 x += x_step;
472 dest_x++;
473 outbuf += dest_channels;
474 }
475
476 y += y_step;
477 }
478
479 g_free ( line_bufs );
480 g_free ( filter_weights );
481 }
482
483
484 /* Compute weights for reconstruction by replication followed by
485 * sampling with a box filter
486 */
487 static inline void
488 tile_make_weights ( PixopsFilterDimension *dim,
489 double scale )
490 {
491 int n = ceil ( 1 / scale + 1 );
492 double *pixel_weights = g_new ( double, SUBSAMPLE * n );
493 int offset;
494 int i;
495
496 dim->n = n;
497 dim->offset = 0;
498 dim->weights = pixel_weights;
499
500 for ( offset = 0; offset < SUBSAMPLE; offset++ )
501 {
502 double x = ( double ) offset / SUBSAMPLE;
503 double a = x + 1 / scale;
504
505 for ( i = 0; i < n; i++ )
506 {
507 if ( i < x )
508 {
509 if ( i + 1 > x )
510 * ( pixel_weights++ ) = ( MIN ( i + 1, a ) - x ) * scale;
511 else
512 *( pixel_weights++ ) = 0;
513 }
514 else
515 {
516 if ( a > i )
517 * ( pixel_weights++ ) = ( MIN ( i + 1, a ) - i ) * scale;
518 else
519 *( pixel_weights++ ) = 0;
520 }
521 }
522 }
523 }
524
525 /* Compute weights for a filter that, for minification
526 * is the same as 'tiles', and for magnification, is bilinear
527 * reconstruction followed by a sampling with a delta function.
528 */
529 static inline void
530 bilinear_magnify_make_weights ( PixopsFilterDimension *dim,
531 double scale )
532 {
533 double * pixel_weights;
534 int n;
535 int offset;
536 int i;
537
538 if ( scale > 1.0 ) /* Linear */
539 {
540 n = 2;
541 dim->offset = 0.5 * ( 1 / scale - 1 );
542 }
543 else /* Tile */
544 {
545 n = ceil ( 1.0 + 1.0 / scale );
546 dim->offset = 0.0;
547 }
548
549 dim->n = n;
550 dim->weights = g_new ( double, SUBSAMPLE * n );
551
552 pixel_weights = dim->weights;
553
554 for ( offset = 0; offset < SUBSAMPLE; offset++ )
555 {
556 double x = ( double ) offset / SUBSAMPLE;
557
558 if ( scale > 1.0 ) /* Linear */
559 {
560 for ( i = 0; i < n; i++ )
561 *( pixel_weights++ ) = ( ( ( i == 0 ) ? ( 1 - x ) : x ) / scale ) * scale;
562 }
563 else /* Tile */
564 {
565 double a = x + 1 / scale;
566
567 /* x
568 * ---------|--.-|----|--.-|------- SRC
569 * ------------|---------|--------- DEST
570 */
571 for ( i = 0; i < n; i++ )
572 {
573 if ( i < x )
574 {
575 if ( i + 1 > x )
576 * ( pixel_weights++ ) = ( MIN ( i + 1, a ) - x ) * scale;
577 else
578 *( pixel_weights++ ) = 0;
579 }
580 else
581 {
582 if ( a > i )
583 * ( pixel_weights++ ) = ( MIN ( i + 1, a ) - i ) * scale;
584 else
585 *( pixel_weights++ ) = 0;
586 }
587 }
588 }
589 }
590 }
591
592 /* Computes the integral from b0 to b1 of
593 *
594 * f(x) = x; 0 <= x < 1
595 * f(x) = 0; otherwise
596 *
597 * We combine two of these to compute the convolution of
598 * a box filter with a triangular spike.
599 */
600 static inline double
601 linear_box_half ( double b0, double b1 )
602 {
603 double a0, a1;
604 double x0, x1;
605
606 a0 = 0.;
607 a1 = 1.;
608
609 if ( a0 < b0 )
610 {
611 if ( a1 > b0 )
612 {
613 x0 = b0;
614 x1 = MIN ( a1, b1 );
615 }
616 else
617 return 0;
618 }
619 else
620 {
621 if ( b1 > a0 )
622 {
623 x0 = a0;
624 x1 = MIN ( a1, b1 );
625 }
626 else
627 return 0;
628 }
629
630 return 0.5 * ( x1 * x1 - x0 * x0 );
631 }
632
633 /* Compute weights for reconstructing with bilinear
634 * interpolation, then sampling with a box filter
635 */
636 static inline void
637 bilinear_box_make_weights ( PixopsFilterDimension *dim,
638 double scale )
639 {
640 int n = ceil ( 1 / scale + 2.0 );
641 double *pixel_weights = g_new ( double, SUBSAMPLE * n );
642 double w;
643 int offset, i;
644
645 dim->offset = -1.0;
646 dim->n = n;
647 dim->weights = pixel_weights;
648
649 for ( offset = 0 ; offset < SUBSAMPLE; offset++ )
650 {
651 double x = ( double ) offset / SUBSAMPLE;
652 double a = x + 1 / scale;
653
654 for ( i = 0; i < n; i++ )
655 {
656 w = linear_box_half ( 0.5 + i - a, 0.5 + i - x );
657 w += linear_box_half ( 1.5 + x - i, 1.5 + a - i );
658
659 *( pixel_weights++ ) = w * scale;
660 }
661 }
662 }
663
664
665 static inline void
666 make_weights ( PixopsFilter *filter,
667 PixopsInterpType interp_type,
668 double scale_x,
669 double scale_y )
670 {
671 switch ( interp_type )
672 {
673 case PIXOPS_INTERP_NEAREST:
674 g_assert_not_reached ();
675 break;
676
677 case PIXOPS_INTERP_TILES:
678 tile_make_weights ( &filter->x, scale_x );
679 tile_make_weights ( &filter->y, scale_y );
680 break;
681
682 case PIXOPS_INTERP_BILINEAR:
683 bilinear_magnify_make_weights ( &filter->x, scale_x );
684 bilinear_magnify_make_weights ( &filter->y, scale_y );
685 break;
686
687 case PIXOPS_INTERP_HYPER:
688 bilinear_box_make_weights ( &filter->x, scale_x );
689 bilinear_box_make_weights ( &filter->y, scale_y );
690 break;
691 }
692 }
693
694
695 void
696 yuv422_scale ( guchar *dest_buf,
697 int render_x0,
698 int render_y0,
699 int render_x1,
700 int render_y1,
701 int dest_rowstride,
702 int dest_channels,
703 gboolean dest_has_alpha,
704 const guchar *src_buf,
705 int src_width,
706 int src_height,
707 int src_rowstride,
708 int src_channels,
709 gboolean src_has_alpha,
710 double scale_x,
711 double scale_y,
712 PixopsInterpType interp_type )
713 {
714 PixopsFilter filter;
715 PixopsLineFunc line_func;
716
717 #ifdef USE_MMX
718 gboolean found_mmx = pixops_have_mmx();
719 #endif
720
721 //g_return_if_fail ( !( dest_channels == 3 && dest_has_alpha ) );
722 //g_return_if_fail ( !( src_channels == 3 && src_has_alpha ) );
723 //g_return_if_fail ( !( src_has_alpha && !dest_has_alpha ) );
724
725 if ( scale_x == 0 || scale_y == 0 )
726 return ;
727
728 if ( interp_type == PIXOPS_INTERP_NEAREST )
729 {
730 pixops_scale_nearest ( dest_buf, render_x0, render_y0, render_x1, render_y1,
731 dest_rowstride,
732 src_buf, src_width, src_height, src_rowstride,
733 scale_x, scale_y );
734 return;
735 }
736
737 filter.overall_alpha = 1.0;
738 make_weights ( &filter, interp_type, scale_x, scale_y );
739
740 fprintf( stderr, "RESCALE: %d %d\n", filter.x.n, filter.y.n );
741 if ( filter.x.n == 2 && filter.y.n == 2 )
742 {
743 #ifdef USE_MMX
744 if ( 0 && found_mmx )
745 line_func = scale_line_22_33_mmx_stub;
746 else
747 #endif
748
749 line_func = scale_line_22_33;
750 }
751 else
752 line_func = scale_line;
753
754 pixops_process ( dest_buf, render_x0, render_y0, render_x1, render_y1,
755 dest_rowstride, dest_channels, dest_has_alpha,
756 src_buf, src_width, src_height, src_rowstride, src_channels,
757 src_has_alpha, scale_x, scale_y, 0, 0, 0, 0, 0,
758 &filter, line_func );
759
760 g_free ( filter.x.weights );
761 g_free ( filter.y.weights );
762 }
763