compiler warning
This commit is contained in:
parent
9fba3b5577
commit
24a51098b1
2
TODO
2
TODO
@ -3,8 +3,6 @@
|
|||||||
$ vips copy k2.jpg x.dz[suffix=.jpg[Q=90]]
|
$ vips copy k2.jpg x.dz[suffix=.jpg[Q=90]]
|
||||||
dzsave: not , or ) after parameter
|
dzsave: not , or ) after parameter
|
||||||
|
|
||||||
- add n_pages to pdfload
|
|
||||||
|
|
||||||
- add more webp tests to py suite
|
- add more webp tests to py suite
|
||||||
|
|
||||||
- the gif tests in the suite sometimes fail with giflib5 because of an
|
- the gif tests in the suite sometimes fail with giflib5 because of an
|
||||||
|
@ -433,10 +433,10 @@ vips_image_guess_format( const VipsImage *image )
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case VIPS_INTERPRETATION_CMYK:
|
case VIPS_INTERPRETATION_CMYK:
|
||||||
if( image->BandFmt != VIPS_FORMAT_USHORT )
|
if( image->BandFmt == VIPS_FORMAT_USHORT )
|
||||||
format = VIPS_FORMAT_UCHAR;
|
format = VIPS_FORMAT_USHORT;
|
||||||
else
|
else
|
||||||
format = image->BandFmt;
|
format = VIPS_FORMAT_UCHAR;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case VIPS_INTERPRETATION_LABQ:
|
case VIPS_INTERPRETATION_LABQ:
|
||||||
@ -453,14 +453,15 @@ vips_image_guess_format( const VipsImage *image )
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case VIPS_INTERPRETATION_MATRIX:
|
case VIPS_INTERPRETATION_MATRIX:
|
||||||
if( image->BandFmt != VIPS_FORMAT_DOUBLE )
|
if( image->BandFmt == VIPS_FORMAT_DOUBLE )
|
||||||
format = VIPS_FORMAT_FLOAT;
|
format = VIPS_FORMAT_DOUBLE;
|
||||||
else
|
else
|
||||||
format = image->BandFmt;
|
format = VIPS_FORMAT_FLOAT;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
g_assert_not_reached();
|
format = VIPS_FORMAT_NOTSET;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return( format );
|
return( format );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user