[trunk] fix bug with mj2 applications (credit to winfried)

This commit is contained in:
Mickael Savinaud 2011-11-09 14:47:44 +00:00
parent 5b35f5fb69
commit eb3cd22aa3
5 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,7 @@ What's New for OpenJPEG
+ : added
November 9, 2011
* [mickael] fix bug with mj2 applications (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)
+ [jmalik] add some sanity check in CMakeLists to prevent STRING(REGEX..) call issues

View File

@ -31,6 +31,7 @@
#include <string.h>
#include "openjpeg.h"
#include "cio.h"
#include "j2k.h"
#include "jp2.h"
#include "mj2.h"

View File

@ -31,9 +31,9 @@
#include "openjpeg.h"
#include "j2k_lib.h"
#include "cio.h"
#include "j2k.h"
#include "jp2.h"
#include "cio.h"
#include "mj2.h"
#include "mj2_convert.h"
#include "opj_getopt.h"

View File

@ -32,6 +32,7 @@
#include "opj_config.h"
#include "openjpeg.h"
#include "j2k_lib.h"
#include "cio.h"
#include "j2k.h"
#include "jp2.h"
#include "mj2.h"

View File

@ -31,9 +31,9 @@
#include <string.h>
#include "openjpeg.h"
#include "cio.h"
#include "j2k.h"
#include "jp2.h"
#include "cio.h"
#include "mj2.h"
static int int_ceildiv(int a, int b) {