[trunk] fix bug with mj2 applications (credit to winfried)
This commit is contained in:
parent
5b35f5fb69
commit
eb3cd22aa3
1
CHANGES
1
CHANGES
|
@ -6,6 +6,7 @@ What's New for OpenJPEG
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
November 9, 2011
|
November 9, 2011
|
||||||
|
* [mickael] fix bug with mj2 applications (credit to winfried)
|
||||||
+ [mickael] enhance mj2 when read jp2h (credit to winfried)
|
+ [mickael] enhance mj2 when read jp2h (credit to winfried)
|
||||||
+ [mickael] check if the file extension is the same as the infile format (credit to winfried)
|
+ [mickael] check if the file extension is the same as the infile format (credit to winfried)
|
||||||
+ [jmalik] add some sanity check in CMakeLists to prevent STRING(REGEX..) call issues
|
+ [jmalik] add some sanity check in CMakeLists to prevent STRING(REGEX..) call issues
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "openjpeg.h"
|
#include "openjpeg.h"
|
||||||
|
#include "cio.h"
|
||||||
#include "j2k.h"
|
#include "j2k.h"
|
||||||
#include "jp2.h"
|
#include "jp2.h"
|
||||||
#include "mj2.h"
|
#include "mj2.h"
|
||||||
|
|
|
@ -31,9 +31,9 @@
|
||||||
|
|
||||||
#include "openjpeg.h"
|
#include "openjpeg.h"
|
||||||
#include "j2k_lib.h"
|
#include "j2k_lib.h"
|
||||||
|
#include "cio.h"
|
||||||
#include "j2k.h"
|
#include "j2k.h"
|
||||||
#include "jp2.h"
|
#include "jp2.h"
|
||||||
#include "cio.h"
|
|
||||||
#include "mj2.h"
|
#include "mj2.h"
|
||||||
#include "mj2_convert.h"
|
#include "mj2_convert.h"
|
||||||
#include "opj_getopt.h"
|
#include "opj_getopt.h"
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
#include "opj_config.h"
|
#include "opj_config.h"
|
||||||
#include "openjpeg.h"
|
#include "openjpeg.h"
|
||||||
#include "j2k_lib.h"
|
#include "j2k_lib.h"
|
||||||
|
#include "cio.h"
|
||||||
#include "j2k.h"
|
#include "j2k.h"
|
||||||
#include "jp2.h"
|
#include "jp2.h"
|
||||||
#include "mj2.h"
|
#include "mj2.h"
|
||||||
|
|
|
@ -31,9 +31,9 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "openjpeg.h"
|
#include "openjpeg.h"
|
||||||
|
#include "cio.h"
|
||||||
#include "j2k.h"
|
#include "j2k.h"
|
||||||
#include "jp2.h"
|
#include "jp2.h"
|
||||||
#include "cio.h"
|
|
||||||
#include "mj2.h"
|
#include "mj2.h"
|
||||||
|
|
||||||
static int int_ceildiv(int a, int b) {
|
static int int_ceildiv(int a, int b) {
|
||||||
|
|
Loading…
Reference in New Issue