[trunk] Remove TIFF warning handler. This help test suite run smoothly on windows by removing the message box.
Fixes issue 276
This commit is contained in:
parent
37128c34a9
commit
a734e447b5
|
@ -145,6 +145,12 @@ static opj_image_t* readImageFromFileTIF(const char* filename, int nbFilenamePGX
|
||||||
opj_image_cmptparm_t* param_image_read;
|
opj_image_cmptparm_t* param_image_read;
|
||||||
int** data;
|
int** data;
|
||||||
|
|
||||||
|
/* conformance test suite produce annoying warning:
|
||||||
|
* TIFFReadDirectory: Warning, /.../data/baseline/conformance/jp2_1.tif: unknown field with tag 37724 (0x935c) encountered.
|
||||||
|
* On Win32 this open a message box by default, so remove it from the test suite:
|
||||||
|
*/
|
||||||
|
TIFFSetWarningHandler(NULL);
|
||||||
|
|
||||||
/* If separator is empty => nb file to read is equal to one*/
|
/* If separator is empty => nb file to read is equal to one*/
|
||||||
if ( strlen(separator) == 0 )
|
if ( strlen(separator) == 0 )
|
||||||
nbFilenamePGX = 1;
|
nbFilenamePGX = 1;
|
||||||
|
|
Loading…
Reference in New Issue