[Bf-blender-cvs] [41894ef499f] temp-openjpeg23: Upgrade to openjpeg 2.3

Campbell Barton noreply at git.blender.org
Fri Nov 17 07:11:56 CET 2017


Commit: 41894ef499fdb4b7473a2db692700b54e808ce57
Author: Campbell Barton
Date:   Fri Nov 17 16:24:17 2017 +1100
Branches: temp-openjpeg23
https://developer.blender.org/rB41894ef499fdb4b7473a2db692700b54e808ce57

Upgrade to openjpeg 2.3

===================================================================

M	build_files/cmake/Modules/FindOpenJPEG.cmake
M	extern/libopenjpeg/CMakeLists.txt
A	extern/libopenjpeg/bench_dwt.c
M	extern/libopenjpeg/bio.c
M	extern/libopenjpeg/bio.h
M	extern/libopenjpeg/cidx_manager.c
M	extern/libopenjpeg/cidx_manager.h
M	extern/libopenjpeg/cio.c
M	extern/libopenjpeg/cio.h
M	extern/libopenjpeg/dwt.c
M	extern/libopenjpeg/dwt.h
M	extern/libopenjpeg/event.c
M	extern/libopenjpeg/event.h
A	extern/libopenjpeg/function_list.c
A	extern/libopenjpeg/function_list.h
M	extern/libopenjpeg/image.c
M	extern/libopenjpeg/image.h
M	extern/libopenjpeg/indexbox_manager.h
D	extern/libopenjpeg/int.h
A	extern/libopenjpeg/invert.c
R050	extern/libopenjpeg/jpt.h	extern/libopenjpeg/invert.h
M	extern/libopenjpeg/j2k.c
M	extern/libopenjpeg/j2k.h
M	extern/libopenjpeg/jp2.c
M	extern/libopenjpeg/jp2.h
D	extern/libopenjpeg/jpt.c
M	extern/libopenjpeg/mct.c
M	extern/libopenjpeg/mct.h
M	extern/libopenjpeg/mqc.c
M	extern/libopenjpeg/mqc.h
A	extern/libopenjpeg/mqc_inl.h
M	extern/libopenjpeg/openjpeg.c
M	extern/libopenjpeg/openjpeg.h
R069	extern/libopenjpeg/j2k_lib.c	extern/libopenjpeg/opj_clock.c
R078	extern/libopenjpeg/j2k_lib.h	extern/libopenjpeg/opj_clock.h
A	extern/libopenjpeg/opj_codec.h
R050	extern/libopenjpeg/raw.c	extern/libopenjpeg/opj_common.h
M	extern/libopenjpeg/opj_config.h
A	extern/libopenjpeg/opj_config_private.h
M	extern/libopenjpeg/opj_includes.h
A	extern/libopenjpeg/opj_intmath.h
A	extern/libopenjpeg/opj_inttypes.h
A	extern/libopenjpeg/opj_malloc.c
M	extern/libopenjpeg/opj_malloc.h
R056	extern/libopenjpeg/fix.h	extern/libopenjpeg/opj_stdint.h
M	extern/libopenjpeg/phix_manager.c
M	extern/libopenjpeg/pi.c
M	extern/libopenjpeg/pi.h
M	extern/libopenjpeg/ppix_manager.c
D	extern/libopenjpeg/raw.h
A	extern/libopenjpeg/sparse_array.c
A	extern/libopenjpeg/sparse_array.h
M	extern/libopenjpeg/t1.c
M	extern/libopenjpeg/t1.h
A	extern/libopenjpeg/t1_generate_luts.c
M	extern/libopenjpeg/t1_luts.h
M	extern/libopenjpeg/t2.c
M	extern/libopenjpeg/t2.h
M	extern/libopenjpeg/tcd.c
M	extern/libopenjpeg/tcd.h
A	extern/libopenjpeg/test_sparse_array.c
M	extern/libopenjpeg/tgt.c
M	extern/libopenjpeg/tgt.h
M	extern/libopenjpeg/thix_manager.c
A	extern/libopenjpeg/thread.c
A	extern/libopenjpeg/thread.h
A	extern/libopenjpeg/tls_keys.h
M	extern/libopenjpeg/tpix_manager.c
M	source/blender/imbuf/intern/IMB_filetype.h
M	source/blender/imbuf/intern/filetype.c
M	source/blender/imbuf/intern/jp2.c

===================================================================

diff --git a/build_files/cmake/Modules/FindOpenJPEG.cmake b/build_files/cmake/Modules/FindOpenJPEG.cmake
index d765103638b..c0045134690 100644
--- a/build_files/cmake/Modules/FindOpenJPEG.cmake
+++ b/build_files/cmake/Modules/FindOpenJPEG.cmake
@@ -41,13 +41,14 @@ FIND_PATH(OPENJPEG_INCLUDE_DIR
   HINTS
     ${_openjpeg_SEARCH_DIRS}
   PATH_SUFFIXES
+    openjpeg-2.3
+    include/openjpeg-2.3
     include
-    include/openjpeg-1.5
 )
 
 FIND_LIBRARY(OPENJPEG_LIBRARY
   NAMES
-    openjpeg
+    openjp2
   HINTS
     ${_openjpeg_SEARCH_DIRS}
   PATH_SUFFIXES
diff --git a/extern/libopenjpeg/CMakeLists.txt b/extern/libopenjpeg/CMakeLists.txt
index ad49eee25b6..13a822ba37f 100644
--- a/extern/libopenjpeg/CMakeLists.txt
+++ b/extern/libopenjpeg/CMakeLists.txt
@@ -31,59 +31,76 @@ set(INC_SYS
 
 )
 
-add_definitions(${OPENJPEG_DEFINES})
+add_definitions(
+	-DUSE_JPIP
+	# see: https://github.com/uclouvain/openjpeg/issues/254
+	-DOPJ_DISABLE_TPSOT_FIX
+	${OPENJPEG_DEFINES}
+)
 
 set(SRC
+	bench_dwt.c
 	bio.c
+	cidx_manager.c
 	cio.c
 	dwt.c
 	event.c
+	function_list.c
 	image.c
+	invert.c
 	j2k.c
-	j2k_lib.c
 	jp2.c
-	jpt.c
 	mct.c
 	mqc.c
 	openjpeg.c
+	opj_clock.c
+	opj_malloc.c
+	phix_manager.c
 	pi.c
-	raw.c
+	ppix_manager.c
+	sparse_array.c
 	t1.c
+	t1_generate_luts.c
 	t2.c
 	tcd.c
+	test_sparse_array.c
 	tgt.c
-	cidx_manager.c
-	phix_manager.c
-	ppix_manager.c
 	thix_manager.c
+	thread.c
 	tpix_manager.c
 
 	bio.h
+	cidx_manager.h
 	cio.h
 	dwt.h
 	event.h
-	fix.h
+	function_list.h
 	image.h
-	int.h
+	indexbox_manager.h
+	invert.h
 	j2k.h
-	j2k_lib.h
 	jp2.h
-	jpt.h
 	mct.h
 	mqc.h
+	mqc_inl.h
 	openjpeg.h
+	opj_clock.h
+	opj_codec.h
+	opj_common.h
 	opj_includes.h
+	opj_intmath.h
+	opj_inttypes.h
 	opj_malloc.h
+	opj_stdint.h
 	pi.h
-	raw.h
+	sparse_array.h
 	t1.h
 	t1_luts.h
 	t2.h
 	tcd.h
 	tgt.h
-	cidx_manager.h
-	indexbox_manager.h
-	opj_config.h
+	thread.h
+	tls_keys.h
 )
 
 blender_add_lib(extern_openjpeg "${SRC}" "${INC}" "${INC_SYS}")
diff --git a/extern/libopenjpeg/bench_dwt.c b/extern/libopenjpeg/bench_dwt.c
new file mode 100644
index 00000000000..103b681aead
--- /dev/null
+++ b/extern/libopenjpeg/bench_dwt.c
@@ -0,0 +1,273 @@
+/*
+ * The copyright in this software is being made available under the 2-clauses
+ * BSD License, included below. This software may be subject to other third
+ * party and contributor rights, including patent rights, and no such rights
+ * are granted under this license.
+ *
+ * Copyright (c) 2017, IntoPix SA <contact at intopix.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "opj_includes.h"
+
+#ifdef _WIN32
+#include <windows.h>
+#else
+#include <sys/time.h>
+#include <sys/resource.h>
+#include <sys/times.h>
+#endif /* _WIN32 */
+
+OPJ_INT32 getValue(OPJ_UINT32 i)
+{
+    return ((OPJ_INT32)i % 511) - 256;
+}
+
+void init_tilec(opj_tcd_tilecomp_t * l_tilec,
+                OPJ_INT32 x0,
+                OPJ_INT32 y0,
+                OPJ_INT32 x1,
+                OPJ_INT32 y1,
+                OPJ_UINT32 numresolutions)
+{
+    opj_tcd_resolution_t* l_res;
+    OPJ_UINT32 resno, l_level_no;
+    size_t i, nValues;
+
+    memset(l_tilec, 0, sizeof(*l_tilec));
+    l_tilec->x0 = x0;
+    l_tilec->y0 = y0;
+    l_tilec->x1 = x1;
+    l_tilec->y1 = y1;
+    nValues = (size_t)(l_tilec->x1 - l_tilec->x0) *
+              (size_t)(l_tilec->y1 - l_tilec->y0);
+    l_tilec->data = (OPJ_INT32*) opj_malloc(sizeof(OPJ_INT32) * nValues);
+    for (i = 0; i < nValues; i++) {
+        l_tilec->data[i] = getValue((OPJ_UINT32)i);
+    }
+    l_tilec->numresolutions = numresolutions;
+    l_tilec->resolutions = (opj_tcd_resolution_t*) opj_calloc(
+                               l_tilec->numresolutions,
+                               sizeof(opj_tcd_resolution_t));
+
+    l_level_no = l_tilec->numresolutions;
+    l_res = l_tilec->resolutions;
+
+    /* Adapted from opj_tcd_init_tile() */
+    for (resno = 0; resno < l_tilec->numresolutions; ++resno) {
+
+        --l_level_no;
+
+        /* border for each resolution level (global) */
+        l_res->x0 = opj_int_ceildivpow2(l_tilec->x0, (OPJ_INT32)l_level_no);
+        l_res->y0 = opj_int_ceildivpow2(l_tilec->y0, (OPJ_INT32)l_level_no);
+        l_res->x1 = opj_int_ceildivpow2(l_tilec->x1, (OPJ_INT32)l_level_no);
+        l_res->y1 = opj_int_ceildivpow2(l_tilec->y1, (OPJ_INT32)l_level_no);
+
+        ++l_res;
+    }
+}
+
+void free_tilec(opj_tcd_tilecomp_t * l_tilec)
+{
+    opj_free(l_tilec->data);
+    opj_free(l_tilec->resolutions);
+}
+
+void usage(void)
+{
+    printf(
+        "bench_dwt [-size value] [-check] [-display] [-num_resolutions val]\n");
+    printf(
+        "          [-offset x y] [-num_threads val]\n");
+    exit(1);
+}
+
+
+OPJ_FLOAT64 opj_clock(void)
+{
+#ifdef _WIN32
+    /* _WIN32: use QueryPerformance (very accurate) */
+    LARGE_INTEGER freq, t ;
+    /* freq is the clock speed of the CPU */
+    QueryPerformanceFrequency(&freq) ;
+    /* cout << "freq = " << ((double) freq.QuadPart) << endl; */
+    /* t is the high resolution performance counter (see MSDN) */
+    QueryPerformanceCounter(& t) ;
+    return freq.QuadPart ? (t.QuadPart / (OPJ_FLOAT64) freq.QuadPart) : 0 ;
+#else
+    /* Unix or Linux: use resource usage */
+    struct rusage t;
+    OPJ_FLOAT64 procTime;
+    /* (1) Get the rusage data structure at this moment (man getrusage) */
+    getrusage(0, &t);
+    /* (2) What is the elapsed time ? - CPU time = User time + System time */
+    /* (2a) Get the seconds */
+    procTime = (OPJ_FLOAT64)(t.ru_utime.tv_sec + t.ru_stime.tv_sec);
+    /* (2b) More precisely! Get the microseconds part ! */
+    return (procTime + (OPJ_FLOAT64)(t.ru_utime.tv_usec + t.ru_stime.tv_usec) *
+            1e-6) ;
+#endif
+}
+
+int main(int argc, char** argv)
+{
+    int num_threads = 0;
+    opj_tcd_t tcd;
+    opj_tcd_image_t tcd_image;
+    opj_tcd_tile_t tcd_tile;
+    opj_tcd_tilecomp_t tilec;
+    opj_image_t image;
+    opj_image_comp_t image_comp;
+    opj_thread_pool_t* tp;
+    OPJ_INT32 i, j, k;
+    OPJ_BOOL display = OPJ_FALSE;
+    OPJ_BOOL check = OPJ_FALSE;
+    OPJ_INT32 size = 16384 - 1;
+    OPJ_FLOAT64 start, stop;
+    OPJ_UINT32 offset_x = ((OPJ_UINT32)size + 1) / 2 - 1;
+    OPJ_UINT32 offset_y = ((OPJ_UINT32)size + 1) / 2 - 1;
+    OPJ_UINT32 num_resolutions = 6;
+
+    for (i = 1; i < argc; i++) {
+        if (strcmp(argv[i], "-display") == 0) {
+            display = OPJ_TRUE;
+            check = OPJ_TRUE;
+        } else if (strcmp(argv[i], "-check") == 0) {
+            check = OPJ_TRUE;
+        } else if (strcmp(argv[i], "-size") == 0 && i + 1 < argc) {
+            size = atoi(argv[i + 1]);
+            i ++;
+        } else if (strcmp(argv[i], "-num_threads") == 0 && i + 1 < argc) {
+            num_threads = atoi(argv[i + 1]);
+            i ++;
+        } else if (strcmp(argv[i], "-num_resolutions") == 0 && i + 1 < argc) {
+            num_resolutions = (OPJ_UINT32)atoi(argv[i + 1]);
+            if (num_resolutions == 0 || num_resolutions > 32) {
+                fprintf(stderr,
+                        "Invalid value for num_resolutions. Should be >= 1 and <= 32\n");
+                exit(1);
+            }
+            i ++;
+        } else if (strcmp(argv[i], "-offset") == 0 && i + 2 < argc) {
+            offset_x = (OPJ_UINT32)atoi(argv[i + 1]);
+            offset_y = (OPJ_UINT32)atoi(argv[i + 2]);
+            i += 2;
+        } else {
+            usage();
+        }
+    }
+
+    tp = opj_thread_pool_create(num_threads);
+
+    init_tilec(&tilec, (OPJ_INT32)offset_x, (OPJ_INT32)offset_y,
+               (OPJ_INT32)offset_x + size, (OPJ_INT32)offset_y + size,
+               num_resolutions);
+
+    if (display) {
+        printf("Before\n");
+        k = 0;
+        for (j = 0; j < tilec.y1 - tilec.y0; j++) {
+            for (i = 0; i < tilec.x1 - tilec.x0; i++) {
+                printf("%d ", tilec.data[k]);
+                k ++;
+            }
+            printf("\n");
+        }
+    }
+
+    memset(&tcd, 0, sizeof(tcd));
+    tcd.thread_pool = tp;
+    tcd.whole_tile_decoding = OPJ_TRUE;
+    tcd.win_x0 = (OPJ_UINT32)tilec.x0;
+    tcd.win_y0 = (OPJ_UINT32)tilec.y0;
+    tcd.win_x1 = (OPJ_UINT32)tilec.x1;
+    tcd.win_y1 = (OPJ_UINT32)tilec.y1;
+    tcd.tcd_image = &tcd_image;
+    memset(&tcd_image, 0, sizeof(tcd_image));
+    tcd_image.tiles = &tcd_tile;
+    memset(&tcd_tile, 0, sizeof(tcd_tile));
+    tcd_tile.x0 = tilec.x0;
+    tcd_tile.y0 = tilec.y0;
+    tcd_tile.x1 = tilec.x1;
+    tcd_tile.y1 = tilec.y1;
+    tcd_tile.numcomps = 1;
+    tcd_tile.comps = &tilec;
+    tcd.image = ℑ
+    memset(&image, 0, sizeof(image));
+    image.numcomps = 1;
+    image.comps = &image_comp;
+    memset(&image_comp, 0, sizeof(image_comp));
+    image_comp.dx = 1;
+    image_comp.dy = 1;
+
+    start = opj_clock();
+    opj_dwt_decode(&tcd, &tilec, tilec.numresolutions);
+    stop = opj_clock();
+    printf("time

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list