Imported from libpng-1.4.0beta3.tar

This commit is contained in:
Glenn Randers-Pehrson
2006-05-10 07:27:44 -05:00
parent d60b8fab03
commit 86dc981475
47 changed files with 1114 additions and 142 deletions

View File

@@ -37,6 +37,7 @@ png_get_uint_32(png_bytep buf)
return (i);
}
#if defined(PNG_GET_INT_32_SUPPORTED)
/* Grab a signed 32-bit integer from a buffer in big-endian format. The
* data is stored in the PNG file in two's complement format, and it is
* assumed that the machine format for signed integers is the same. */
@@ -50,6 +51,7 @@ png_get_int_32(png_bytep buf)
return (i);
}
#endif
/* Grab an unsigned 16-bit integer from a buffer in big-endian format. */
png_uint_16 PNGAPI