tiff/tiff-bigendian.patch
Ismail Dönmez 71da80349e Accepting request 126493 from home:msmeissn:branches:graphics
- RGBA is packed in host order, use the right macros to unpack
  and verify in raw_decode test.

OBS-URL: https://build.opensuse.org/request/show/126493
OBS-URL: https://build.opensuse.org/package/show/graphics/tiff?expand=0&rev=47
2012-06-28 23:06:28 +00:00

16 lines
742 B
Diff

--- tiff-4.0.2/test/raw_decode.c.xx 2012-06-28 11:48:43.000000000 +0200
+++ tiff-4.0.2/test/raw_decode.c 2012-06-28 12:15:46.000000000 +0200
@@ -85,9 +85,9 @@
static int check_rgba_pixel( int pixel, int red, int green, int blue, int alpha, unsigned char *buffer ) {
/* RGBA images are upside down - adjust for normal ordering */
int adjusted_pixel = pixel % 128 + (127 - (pixel/128)) * 128;
- unsigned char *rgba = buffer + 4 * adjusted_pixel;
-
- if( rgba[0] == red && rgba[1] == green && rgba[2] == blue && rgba[3] == alpha ) {
+ unsigned int *rgba = (unsigned int*)(buffer + 4 * adjusted_pixel);
+
+ if( TIFFGetR(*rgba) == red && TIFFGetG(*rgba) == green && TIFFGetB(*rgba) == blue && TIFFGetA(*rgba) == alpha ) {
return 0;
}