Merge branch '8.8'

This commit is contained in:
John Cupitt 2019-08-30 11:03:24 +01:00
commit 5d19bcf955
2 changed files with 5 additions and 4 deletions

View File

@ -31,6 +31,7 @@
- fix sharpen with sigma 0.5 [2h4dl] - fix sharpen with sigma 0.5 [2h4dl]
- sharpen restores input colourspace - sharpen restores input colourspace
- verify bands/format for coded images - verify bands/format for coded images
- improve data_length handling for jpeg metadata
24/5/19 started 8.8.1 24/5/19 started 8.8.1
- improve realpath() use on older libc - improve realpath() use on older libc

View File

@ -313,7 +313,7 @@ find_chroma_subsample( struct jpeg_decompress_struct *cinfo )
} }
static int static int
attach_blob( VipsImage *im, const char *field, void *data, int data_length ) attach_blob( VipsImage *im, const char *field, void *data, size_t data_length )
{ {
/* Only use the first one. /* Only use the first one.
*/ */
@ -339,7 +339,7 @@ attach_blob( VipsImage *im, const char *field, void *data, int data_length )
* the real XMP. * the real XMP.
*/ */
static int static int
attach_xmp_blob( VipsImage *im, void *data, int data_length ) attach_xmp_blob( VipsImage *im, void *data, size_t data_length )
{ {
char *p = (char *) data; char *p = (char *) data;
int i; int i;
@ -502,7 +502,7 @@ read_jpeg_header( ReadJpeg *jpeg, VipsImage *out )
for( p = cinfo->marker_list; p; p = p->next ) { for( p = cinfo->marker_list; p; p = p->next ) {
#ifdef DEBUG #ifdef DEBUG
{ {
printf( "read_jpeg_header: seen %d bytes of APP%d\n", printf( "read_jpeg_header: seen %u bytes of APP%d\n",
p->data_length, p->data_length,
p->marker - JPEG_APP0 ); p->marker - JPEG_APP0 );
@ -599,7 +599,7 @@ read_jpeg_header( ReadJpeg *jpeg, VipsImage *out )
default: default:
#ifdef DEBUG #ifdef DEBUG
printf( "read_jpeg_header: " printf( "read_jpeg_header: "
"ignoring %d byte APP%d block\n", "ignoring %u byte APP%d block\n",
p->data_length, p->marker - JPEG_APP0 ); p->data_length, p->marker - JPEG_APP0 );
#endif /*DEBUG*/ #endif /*DEBUG*/
break; break;