diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f2965bf..630c0f45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,6 +62,7 @@ SUBDIRS( mj2 jpwl jp3d + indexer_JPIP ) #----------------------------------------------------------------------------- # Build example only if requested diff --git a/ChangeLog b/ChangeLog index 1ca39b40..eb5648ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ What's New for OpenJPEG September 6, 2007 * [Mathieu Malaterre] CMake: start compiling mj2, jpwl and jp3d * [Mathieu Malaterre] CMake: output all executable/libs into one single directory +* [Mathieu Malaterre] CMake: start compiling index_create +* [Mathieu Malaterre] OpenJPEG.rc update copyright year September 4, 2007 + [GB] Added some fields in the codestream_info structure: they are used to record the position of single tile parts. Changed also the write_index function in the codec, to reflect the presence of this new information. diff --git a/OpenJPEG.rc b/OpenJPEG.rc index 97cb2722..4711c575 100644 --- a/OpenJPEG.rc +++ b/OpenJPEG.rc @@ -49,7 +49,7 @@ BEGIN VALUE "FileDescription", "OpenJPEG\0" VALUE "FileVersion", "1, 1, 0, 0\0" VALUE "InternalName", "OpenJPEG\0" - VALUE "LegalCopyright", "Copyright © 2002-2006, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium\0" + VALUE "LegalCopyright", "Copyright © 2002-2007, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium\0" VALUE "LegalTrademarks", "See http://www.openjpeg.org for details\0" VALUE "OriginalFilename", "OpenJPEG.dll\0" VALUE "PrivateBuild", "\0" diff --git a/indexer_JPIP/CMakeLists.txt b/indexer_JPIP/CMakeLists.txt new file mode 100644 index 00000000..4dbb95b0 --- /dev/null +++ b/indexer_JPIP/CMakeLists.txt @@ -0,0 +1,5 @@ +# index_create + +ADD_EXECUTABLE(index_create +bio.c cio.c int.c pi.c t2.c tgt.c tcd.c index_create.c jpip.c jp2.c +)