remove stray error messages

This commit is contained in:
John Cupitt 2022-01-09 12:20:25 +00:00
parent c278f9019d
commit 56a7916e80
2 changed files with 4 additions and 10 deletions

View File

@ -390,8 +390,8 @@ vips_foreign_save_heif_build( VipsObject *object )
}
chroma = heif->subsample_mode == VIPS_FOREIGN_SUBSAMPLE_OFF ||
( heif->subsample_mode == VIPS_FOREIGN_SUBSAMPLE_AUTO &&
heif->Q >= 90 ) ? "444" : "420";
(heif->subsample_mode == VIPS_FOREIGN_SUBSAMPLE_AUTO &&
heif->Q >= 90) ? "444" : "420";
error = heif_encoder_set_parameter_string( heif->encoder,
"chroma", chroma );
if( error.code &&

View File

@ -793,11 +793,8 @@ vips__png_header_source( VipsSource *source, VipsImage *out,
Read *read;
if( !(read = read_new( source, out, TRUE, unlimited )) ||
png2vips_header( read, out ) ) {
vips_error( "png2vips", _( "unable to read source %s" ),
vips_connection_nick( VIPS_CONNECTION( source ) ) );
png2vips_header( read, out ) )
return( -1 );
}
vips_source_minimise( source );
@ -812,11 +809,8 @@ vips__png_read_source( VipsSource *source, VipsImage *out,
if( !(read = read_new( source, out, fail_on, unlimited )) ||
png2vips_image( read, out ) ||
vips_source_decode( source ) ) {
vips_error( "png2vips", _( "unable to read source %s" ),
vips_connection_nick( VIPS_CONNECTION( source ) ) );
vips_source_decode( source ) )
return( -1 );
}
return( 0 );
}