[trunk] WIP: fix bug with windows platform and j2k_to_image
This commit is contained in:
parent
ff3c441023
commit
e7e1ec6e84
3
CHANGES
3
CHANGES
|
@ -5,6 +5,9 @@ What's New for OpenJPEG
|
||||||
! : changed
|
! : changed
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
|
November 18, 2011
|
||||||
|
* [mickael] WIP: fix bug with windows platform and j2k_to_image
|
||||||
|
|
||||||
November 17, 2011
|
November 17, 2011
|
||||||
* [mickael] WIP: fix bug when decoding an area or a tile with special resolution
|
* [mickael] WIP: fix bug when decoding an area or a tile with special resolution
|
||||||
+ [mickael] WIP: enhance j2k_to_image with new get_decoded_tile functionality
|
+ [mickael] WIP: enhance j2k_to_image with new get_decoded_tile functionality
|
||||||
|
|
|
@ -269,6 +269,7 @@ static int infile_format(const char *fname)
|
||||||
const char *s, *magic_s;
|
const char *s, *magic_s;
|
||||||
int ext_format, magic_format;
|
int ext_format, magic_format;
|
||||||
unsigned char buf[12];
|
unsigned char buf[12];
|
||||||
|
unsigned int l_nb_read;
|
||||||
|
|
||||||
reader = fopen(fname, "rb");
|
reader = fopen(fname, "rb");
|
||||||
|
|
||||||
|
@ -276,7 +277,7 @@ static int infile_format(const char *fname)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
memset(buf, 0, 12);
|
memset(buf, 0, 12);
|
||||||
unsigned int l_nb_read = fread(buf, 1, 12, reader);
|
l_nb_read = fread(buf, 1, 12, reader);
|
||||||
fclose(reader);
|
fclose(reader);
|
||||||
if (l_nb_read != 12)
|
if (l_nb_read != 12)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue