├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── CMakeLists.txt ├── bintray.gradle ├── build.gradle └── src │ ├── androidTest │ ├── assets │ │ ├── 1x1.j2k │ │ ├── 1x1.jp2 │ │ ├── 1x1.png │ │ ├── 2x2.png │ │ ├── 32x15.png │ │ ├── 32x16.png │ │ ├── 3x3.png │ │ ├── decodeTest-l1.png │ │ ├── decodeTest-l4.png │ │ ├── decodeTest-r1l1.png │ │ ├── decodeTest-r1l4.png │ │ ├── decodeTest-r2l5.png │ │ ├── decodeTest-r3.png │ │ ├── decodeTest-r6.png │ │ ├── decodeTest.jp2 │ │ ├── encodeTest.png │ │ ├── fullrgb.jp2 │ │ ├── fullrgb.png │ │ ├── headerTest-r1-l1.jp2 │ │ ├── headerTest-r2-l3.j2k │ │ ├── headerTest-r5-l1.j2k │ │ ├── headerTest-r7-l5.jp2 │ │ ├── headerTest.png │ │ ├── lena-grey.jp2 │ │ ├── lena-grey.png │ │ ├── lena-rotated180.jp2 │ │ ├── lena-rotated180.png │ │ ├── lena-rotated270.jp2 │ │ ├── lena-rotated270.png │ │ ├── lena-rotated90.jp2 │ │ ├── lena-rotated90.png │ │ ├── lena.j2k │ │ ├── lena.jp2 │ │ ├── lena.png │ │ ├── lena.raw │ │ ├── subsampling_1.jp2 │ │ ├── subsampling_1.png │ │ ├── subsampling_2.jp2 │ │ ├── subsampling_2.png │ │ ├── tiled-r6-l1.j2k │ │ ├── tiled-r6-l6.jp2 │ │ ├── transparent-grey.jp2 │ │ ├── transparent-grey.raw │ │ ├── transparent.jp2 │ │ └── transparent.raw │ └── java │ │ └── com │ │ └── gemalto │ │ └── jp2 │ │ ├── TestJp2Decoder.java │ │ ├── TestJp2Encoder.java │ │ └── Util.java │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── openjpeg │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── CTestConfig.cmake │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── NEWS.md │ │ ├── README.md │ │ ├── THANKS.md │ │ ├── appveyor.yml │ │ ├── cmake │ │ │ ├── CTestCustom.cmake.in │ │ │ ├── EnsureFileInclude.cmake │ │ │ ├── FindCPPCHECK.cmake │ │ │ ├── FindFCGI.cmake │ │ │ ├── FindJPYLYZER.cmake │ │ │ ├── FindKAKADU.cmake │ │ │ ├── FindLCMS.cmake │ │ │ ├── FindLCMS2.cmake │ │ │ ├── JPIPTestDriver.cmake │ │ │ ├── OpenJPEGCPack.cmake │ │ │ ├── OpenJPEGConfig.cmake.in │ │ │ ├── TestFileOffsetBits.c │ │ │ ├── TestLargeFiles.c.cmake.in │ │ │ ├── TestLargeFiles.cmake │ │ │ ├── TestWindowsFSeek.c │ │ │ └── openjpeg_valgrind.supp │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile.dox.cmake.in │ │ │ ├── jpip_architect.png │ │ │ ├── jpip_protocol.png │ │ │ ├── mainpage.dox.in │ │ │ ├── man │ │ │ │ ├── man1 │ │ │ │ │ ├── opj_compress.1 │ │ │ │ │ ├── opj_decompress.1 │ │ │ │ │ └── opj_dump.1 │ │ │ │ └── man3 │ │ │ │ │ └── libopenjp2.3 │ │ │ └── openjpip.dox.in │ │ ├── scripts │ │ │ ├── astyle.options │ │ │ ├── astyle.sh │ │ │ ├── prepare-commit.sh │ │ │ ├── remove_temporary_files.sh │ │ │ └── verify-indentation.sh │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bin │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── color.c │ │ │ │ │ ├── color.h │ │ │ │ │ ├── format_defs.h │ │ │ │ │ ├── opj_apps_config.h.cmake.in │ │ │ │ │ ├── opj_getopt.c │ │ │ │ │ ├── opj_getopt.h │ │ │ │ │ └── opj_string.h │ │ │ │ ├── jp2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── convertbmp.c │ │ │ │ │ ├── convertpng.c │ │ │ │ │ ├── converttif.c │ │ │ │ │ ├── index.c │ │ │ │ │ ├── index.h │ │ │ │ │ ├── opj_compress.c │ │ │ │ │ ├── opj_decompress.c │ │ │ │ │ ├── opj_dump.c │ │ │ │ │ └── windirent.h │ │ │ │ ├── jp3d │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── opj_jp3d_compress.c │ │ │ │ │ ├── opj_jp3d_decompress.c │ │ │ │ │ ├── tcltk │ │ │ │ │ │ ├── LPI_JP3D_VM.tcl │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ ├── decoder.tcl │ │ │ │ │ │ ├── encoder.tcl │ │ │ │ │ │ └── logoLPI.gif │ │ │ │ │ └── windirent.h │ │ │ │ ├── jpip │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── README │ │ │ │ │ ├── opj_dec_server.c │ │ │ │ │ ├── opj_jpip_addxml.c │ │ │ │ │ ├── opj_jpip_test.c │ │ │ │ │ ├── opj_jpip_transcode.c │ │ │ │ │ ├── opj_server.c │ │ │ │ │ ├── opj_viewer │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ └── manifest.txt │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── ImageManager.java │ │ │ │ │ │ │ ├── ImageViewer.java │ │ │ │ │ │ │ ├── ImageWindow.java │ │ │ │ │ │ │ ├── ImgdecClient.java │ │ │ │ │ │ │ ├── JPIPHttpClient.java │ │ │ │ │ │ │ ├── MML.java │ │ │ │ │ │ │ ├── PnmImage.java │ │ │ │ │ │ │ ├── RegimViewer.java │ │ │ │ │ │ │ └── ResizeListener.java │ │ │ │ │ └── opj_viewer_xerces │ │ │ │ │ │ ├── dist │ │ │ │ │ │ └── manifest.txt.in │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── ImageViewer.java │ │ │ │ │ │ ├── ImageWindow.java │ │ │ │ │ │ ├── JP2XMLparser.java │ │ │ │ │ │ └── OptionPanel.java │ │ │ │ ├── jpwl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── convert.c │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── index.c │ │ │ │ │ ├── index.h │ │ │ │ │ ├── opj_jpwl_compress.c │ │ │ │ │ ├── opj_jpwl_decompress.c │ │ │ │ │ └── windirent.h │ │ │ │ ├── mj2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── meta_out.c │ │ │ │ │ ├── meta_out.h │ │ │ │ │ ├── mj2_to_metadata.c │ │ │ │ │ ├── mj2_to_metadata.dtd │ │ │ │ │ ├── mj2_to_metadata.h │ │ │ │ │ ├── mj2_to_metadata.sln │ │ │ │ │ ├── mj2_to_metadata.vcproj │ │ │ │ │ ├── mj2_to_metadata_Notes.doc │ │ │ │ │ ├── opj_mj2_compress.c │ │ │ │ │ ├── opj_mj2_decompress.c │ │ │ │ │ ├── opj_mj2_extract.c │ │ │ │ │ ├── opj_mj2_wrap.c │ │ │ │ │ └── readme.txt │ │ │ │ └── wx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── OPJViewer │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── OPJViewer.iss │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── about │ │ │ │ │ ├── about.htm │ │ │ │ │ └── opj_logo.png │ │ │ │ │ └── source │ │ │ │ │ ├── OPJAbout.cpp │ │ │ │ │ ├── OPJChild.ico │ │ │ │ │ ├── OPJChild16.xpm │ │ │ │ │ ├── OPJDialogs.cpp │ │ │ │ │ ├── OPJThreads.cpp │ │ │ │ │ ├── OPJViewer.cpp │ │ │ │ │ ├── OPJViewer.h │ │ │ │ │ ├── OPJViewer.ico │ │ │ │ │ ├── OPJViewer.rc │ │ │ │ │ ├── OPJViewer16.xpm │ │ │ │ │ ├── about_htm.h │ │ │ │ │ ├── build.h │ │ │ │ │ ├── icon1.xpm │ │ │ │ │ ├── icon2.xpm │ │ │ │ │ ├── icon3.xpm │ │ │ │ │ ├── icon4.xpm │ │ │ │ │ ├── icon5.xpm │ │ │ │ │ ├── imagjpeg2000.cpp │ │ │ │ │ ├── imagjpeg2000.h │ │ │ │ │ ├── imagmxf.cpp │ │ │ │ │ ├── imagmxf.h │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── opj_logo.xpm │ │ │ │ │ ├── readmeafter.txt │ │ │ │ │ ├── readmebefore.txt │ │ │ │ │ ├── wxj2kparser.cpp │ │ │ │ │ └── wxjp2parser.cpp │ │ │ └── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── openjp2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bench_dwt.c │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cidx_manager.c │ │ │ │ ├── cidx_manager.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── function_list.c │ │ │ │ ├── function_list.h │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ ├── indexbox_manager.h │ │ │ │ ├── invert.c │ │ │ │ ├── invert.h │ │ │ │ ├── j2k.c │ │ │ │ ├── j2k.h │ │ │ │ ├── jp2.c │ │ │ │ ├── jp2.h │ │ │ │ ├── libopenjp2.pc.cmake.in │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── mqc_inl.h │ │ │ │ ├── openjpeg.c │ │ │ │ ├── openjpeg.h │ │ │ │ ├── opj_clock.c │ │ │ │ ├── opj_clock.h │ │ │ │ ├── opj_codec.h │ │ │ │ ├── opj_common.h │ │ │ │ ├── opj_config.h.cmake.in │ │ │ │ ├── opj_config_private.h.cmake.in │ │ │ │ ├── opj_includes.h │ │ │ │ ├── opj_intmath.h │ │ │ │ ├── opj_inttypes.h │ │ │ │ ├── opj_malloc.c │ │ │ │ ├── opj_malloc.h │ │ │ │ ├── opj_stdint.h │ │ │ │ ├── phix_manager.c │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── ppix_manager.c │ │ │ │ ├── sparse_array.c │ │ │ │ ├── sparse_array.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_generate_luts.c │ │ │ │ ├── t1_luts.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── test_sparse_array.c │ │ │ │ ├── tgt.c │ │ │ │ ├── tgt.h │ │ │ │ ├── thix_manager.c │ │ │ │ ├── thread.c │ │ │ │ ├── thread.h │ │ │ │ ├── tls_keys.h │ │ │ │ └── tpix_manager.c │ │ │ │ ├── openjp3d │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── fix.h │ │ │ │ ├── int.h │ │ │ │ ├── jp3d.c │ │ │ │ ├── jp3d.h │ │ │ │ ├── jp3d_lib.c │ │ │ │ ├── jp3d_lib.h │ │ │ │ ├── libopenjp3d.pc.cmake.in │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── openjp3d.c │ │ │ │ ├── openjp3d.h │ │ │ │ ├── opj_includes.h │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── raw.c │ │ │ │ ├── raw.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_3d.c │ │ │ │ ├── t1_3d.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── tgt.c │ │ │ │ ├── tgt.h │ │ │ │ ├── volume.c │ │ │ │ └── volume.h │ │ │ │ ├── openjpip │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── auxtrans_manager.c │ │ │ │ ├── auxtrans_manager.h │ │ │ │ ├── box_manager.c │ │ │ │ ├── box_manager.h │ │ │ │ ├── boxheader_manager.c │ │ │ │ ├── boxheader_manager.h │ │ │ │ ├── byte_manager.c │ │ │ │ ├── byte_manager.h │ │ │ │ ├── cache_manager.c │ │ │ │ ├── cache_manager.h │ │ │ │ ├── cachemodel_manager.c │ │ │ │ ├── cachemodel_manager.h │ │ │ │ ├── channel_manager.c │ │ │ │ ├── channel_manager.h │ │ │ │ ├── codestream_manager.c │ │ │ │ ├── codestream_manager.h │ │ │ │ ├── dec_clientmsg_handler.c │ │ │ │ ├── dec_clientmsg_handler.h │ │ │ │ ├── faixbox_manager.c │ │ │ │ ├── faixbox_manager.h │ │ │ │ ├── ihdrbox_manager.c │ │ │ │ ├── ihdrbox_manager.h │ │ │ │ ├── imgreg_manager.c │ │ │ │ ├── imgreg_manager.h │ │ │ │ ├── imgsock_manager.c │ │ │ │ ├── imgsock_manager.h │ │ │ │ ├── index_manager.c │ │ │ │ ├── index_manager.h │ │ │ │ ├── j2kheader_manager.c │ │ │ │ ├── j2kheader_manager.h │ │ │ │ ├── jp2k_decoder.c │ │ │ │ ├── jp2k_decoder.h │ │ │ │ ├── jp2k_encoder.c │ │ │ │ ├── jp2k_encoder.h │ │ │ │ ├── jpip_parser.c │ │ │ │ ├── jpip_parser.h │ │ │ │ ├── jpipstream_manager.c │ │ │ │ ├── jpipstream_manager.h │ │ │ │ ├── libopenjpip.pc.cmake.in │ │ │ │ ├── manfbox_manager.c │ │ │ │ ├── manfbox_manager.h │ │ │ │ ├── marker_manager.c │ │ │ │ ├── marker_manager.h │ │ │ │ ├── metadata_manager.c │ │ │ │ ├── metadata_manager.h │ │ │ │ ├── mhixbox_manager.c │ │ │ │ ├── mhixbox_manager.h │ │ │ │ ├── msgqueue_manager.c │ │ │ │ ├── msgqueue_manager.h │ │ │ │ ├── openjpip.c │ │ │ │ ├── openjpip.h │ │ │ │ ├── placeholder_manager.c │ │ │ │ ├── placeholder_manager.h │ │ │ │ ├── query_parser.c │ │ │ │ ├── query_parser.h │ │ │ │ ├── session_manager.c │ │ │ │ ├── session_manager.h │ │ │ │ ├── sock_manager.c │ │ │ │ ├── sock_manager.h │ │ │ │ ├── target_manager.c │ │ │ │ └── target_manager.h │ │ │ │ ├── openjpwl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.txt │ │ │ │ ├── crc.c │ │ │ │ ├── crc.h │ │ │ │ ├── jpwl.c │ │ │ │ ├── jpwl.h │ │ │ │ ├── jpwl_lib.c │ │ │ │ ├── libopenjpwl.pc.cmake.in │ │ │ │ ├── rs.c │ │ │ │ └── rs.h │ │ │ │ └── openmj2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bio.c │ │ │ │ ├── bio.h │ │ │ │ ├── cio.c │ │ │ │ ├── cio.h │ │ │ │ ├── dwt.c │ │ │ │ ├── dwt.h │ │ │ │ ├── event.c │ │ │ │ ├── event.h │ │ │ │ ├── fix.h │ │ │ │ ├── image.c │ │ │ │ ├── image.h │ │ │ │ ├── int.h │ │ │ │ ├── j2k.c │ │ │ │ ├── j2k.h │ │ │ │ ├── j2k_lib.c │ │ │ │ ├── j2k_lib.h │ │ │ │ ├── jp2.c │ │ │ │ ├── jp2.h │ │ │ │ ├── jpt.c │ │ │ │ ├── jpt.h │ │ │ │ ├── mct.c │ │ │ │ ├── mct.h │ │ │ │ ├── mj2.c │ │ │ │ ├── mj2.h │ │ │ │ ├── mj2_convert.c │ │ │ │ ├── mj2_convert.h │ │ │ │ ├── mqc.c │ │ │ │ ├── mqc.h │ │ │ │ ├── openjpeg.c │ │ │ │ ├── openjpeg.h │ │ │ │ ├── opj_includes.h │ │ │ │ ├── opj_malloc.h │ │ │ │ ├── pi.c │ │ │ │ ├── pi.h │ │ │ │ ├── raw.c │ │ │ │ ├── raw.h │ │ │ │ ├── t1.c │ │ │ │ ├── t1.h │ │ │ │ ├── t1_luts.h │ │ │ │ ├── t2.c │ │ │ │ ├── t2.h │ │ │ │ ├── tcd.c │ │ │ │ ├── tcd.h │ │ │ │ ├── tgt.c │ │ │ │ └── tgt.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── compare_dump_files.c │ │ │ ├── compare_images.c │ │ │ ├── compare_raw_files.c │ │ │ ├── conformance │ │ │ │ └── CMakeLists.txt │ │ │ ├── fuzzers │ │ │ │ ├── GNUmakefile │ │ │ │ ├── README.TXT │ │ │ │ ├── build_google_oss_fuzzers.sh │ │ │ │ ├── build_seed_corpus.sh │ │ │ │ ├── fuzzingengine.c │ │ │ │ └── opj_decompress_fuzzer.cpp │ │ │ ├── include_openjpeg.c │ │ │ ├── j2k_random_tile_access.c │ │ │ ├── nonregression │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── checkmd5refs.cmake │ │ │ │ ├── md5refs.txt │ │ │ │ └── test_suite.ctest.in │ │ │ ├── pdf2jp2.c │ │ │ ├── performance │ │ │ │ ├── compare_perfs.py │ │ │ │ ├── perf_test.py │ │ │ │ └── perf_test_filelist.csv │ │ │ ├── ppm2rgb3.c │ │ │ ├── profiling │ │ │ │ └── filter_massif_output.py │ │ │ ├── test_decode_area.c │ │ │ ├── test_tile_decoder.c │ │ │ ├── test_tile_encoder.c │ │ │ └── unit │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testempty0.c │ │ │ │ ├── testempty1.c │ │ │ │ └── testempty2.c │ │ ├── thirdparty │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── astyle │ │ │ │ ├── ASBeautifier.cpp │ │ │ │ ├── ASEnhancer.cpp │ │ │ │ ├── ASFormatter.cpp │ │ │ │ ├── ASLocalizer.cpp │ │ │ │ ├── ASLocalizer.h │ │ │ │ ├── ASResource.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── astyle.h │ │ │ │ ├── astyle_main.cpp │ │ │ │ └── astyle_main.h │ │ │ ├── include │ │ │ │ ├── zconf.h │ │ │ │ └── zlib.h │ │ │ ├── liblcms2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── include │ │ │ │ │ ├── lcms2.h │ │ │ │ │ └── lcms2_plugin.h │ │ │ │ └── src │ │ │ │ │ ├── cmsalpha.c │ │ │ │ │ ├── cmscam02.c │ │ │ │ │ ├── cmscgats.c │ │ │ │ │ ├── cmscnvrt.c │ │ │ │ │ ├── cmserr.c │ │ │ │ │ ├── cmsgamma.c │ │ │ │ │ ├── cmsgmt.c │ │ │ │ │ ├── cmshalf.c │ │ │ │ │ ├── cmsintrp.c │ │ │ │ │ ├── cmsio0.c │ │ │ │ │ ├── cmsio1.c │ │ │ │ │ ├── cmslut.c │ │ │ │ │ ├── cmsmd5.c │ │ │ │ │ ├── cmsmtrx.c │ │ │ │ │ ├── cmsnamed.c │ │ │ │ │ ├── cmsopt.c │ │ │ │ │ ├── cmspack.c │ │ │ │ │ ├── cmspcs.c │ │ │ │ │ ├── cmsplugin.c │ │ │ │ │ ├── cmsps2.c │ │ │ │ │ ├── cmssamp.c │ │ │ │ │ ├── cmssm.c │ │ │ │ │ ├── cmstypes.c │ │ │ │ │ ├── cmsvirt.c │ │ │ │ │ ├── cmswtpnt.c │ │ │ │ │ ├── cmsxform.c │ │ │ │ │ └── lcms2_internal.h │ │ │ ├── libpng │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngpriv.h │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngstruct.h │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── libtiff │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── libport.h │ │ │ │ ├── libtiff.def │ │ │ │ ├── snprintf.c │ │ │ │ ├── t4.h │ │ │ │ ├── test_inline.c │ │ │ │ ├── tif_aux.c │ │ │ │ ├── tif_close.c │ │ │ │ ├── tif_codec.c │ │ │ │ ├── tif_color.c │ │ │ │ ├── tif_compress.c │ │ │ │ ├── tif_config.h.cmake.in │ │ │ │ ├── tif_config.h.in │ │ │ │ ├── tif_dir.c │ │ │ │ ├── tif_dir.h │ │ │ │ ├── tif_dirinfo.c │ │ │ │ ├── tif_dirread.c │ │ │ │ ├── tif_dirwrite.c │ │ │ │ ├── tif_dumpmode.c │ │ │ │ ├── tif_error.c │ │ │ │ ├── tif_extension.c │ │ │ │ ├── tif_fax3.c │ │ │ │ ├── tif_fax3.h │ │ │ │ ├── tif_fax3sm.c │ │ │ │ ├── tif_flush.c │ │ │ │ ├── tif_getimage.c │ │ │ │ ├── tif_jbig.c │ │ │ │ ├── tif_jpeg.c │ │ │ │ ├── tif_jpeg_12.c │ │ │ │ ├── tif_luv.c │ │ │ │ ├── tif_lzma.c │ │ │ │ ├── tif_lzw.c │ │ │ │ ├── tif_next.c │ │ │ │ ├── tif_ojpeg.c │ │ │ │ ├── tif_open.c │ │ │ │ ├── tif_packbits.c │ │ │ │ ├── tif_pixarlog.c │ │ │ │ ├── tif_predict.c │ │ │ │ ├── tif_predict.h │ │ │ │ ├── tif_print.c │ │ │ │ ├── tif_read.c │ │ │ │ ├── tif_stream.cxx │ │ │ │ ├── tif_strip.c │ │ │ │ ├── tif_swab.c │ │ │ │ ├── tif_thunder.c │ │ │ │ ├── tif_tile.c │ │ │ │ ├── tif_unix.c │ │ │ │ ├── tif_version.c │ │ │ │ ├── tif_warning.c │ │ │ │ ├── tif_win32.c │ │ │ │ ├── tif_write.c │ │ │ │ ├── tif_zip.c │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h.cmake.in │ │ │ │ ├── tiffconf.h.in │ │ │ │ ├── tiffio.h │ │ │ │ ├── tiffio.hxx │ │ │ │ ├── tiffiop.h │ │ │ │ ├── tiffvers.h │ │ │ │ └── uvcode.h │ │ │ └── libz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── tools │ │ │ ├── abi-tracker │ │ │ │ └── openjpeg.json │ │ │ ├── ctest_scripts │ │ │ │ ├── toolchain-mingw32.cmake │ │ │ │ ├── toolchain-mingw64.cmake │ │ │ │ └── travis-ci.cmake │ │ │ └── travis-ci │ │ │ │ ├── abi-check.sh │ │ │ │ ├── detect-avx2.c │ │ │ │ ├── install.sh │ │ │ │ ├── knownfailures-Ubuntu14.04-gcc4.8.4-i386-Release-3rdP.txt │ │ │ │ ├── knownfailures-all.txt │ │ │ │ ├── knownfailures-windows-vs2010-x86-Release-3rdP.txt │ │ │ │ ├── run.sh │ │ │ │ └── travis_rsa.enc │ │ └── wrapping │ │ │ ├── CMakeLists.txt │ │ │ └── java │ │ │ ├── CMakeLists.txt │ │ │ └── openjp2 │ │ │ ├── CMakeLists.txt │ │ │ ├── JavaOpenJPEG.c │ │ │ ├── JavaOpenJPEGDecoder.c │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── java-sources │ │ │ └── org │ │ │ │ └── openJpeg │ │ │ │ ├── OpenJPEGJavaDecoder.java │ │ │ │ └── OpenJPEGJavaEncoder.java │ │ │ ├── org_openJpeg_OpenJPEGJavaDecoder.h │ │ │ └── org_openJpeg_OpenJPEGJavaEncoder.h │ ├── openjpg.cpp │ ├── opj_apps_config.h │ ├── opj_config.h │ └── opj_config_private.h │ └── java │ └── com │ └── gemalto │ └── jp2 │ ├── JP2Decoder.java │ └── JP2Encoder.java ├── settings.gradle └── testapp ├── .gitignore ├── build.gradle └── src └── main ├── AndroidManifest.xml ├── assets ├── balloon.jp2 └── test.jp2 ├── java └── com │ └── gemalto │ └── jp2 │ └── test │ └── MainActivity.java └── res ├── drawable-v24 └── ic_launcher_foreground.xml ├── drawable └── ic_launcher_background.xml ├── layout └── activity_main.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-mdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xhdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xxhdpi ├── ic_launcher.png └── ic_launcher_round.png ├── mipmap-xxxhdpi ├── ic_launcher.png └── ic_launcher_round.png └── values ├── colors.xml ├── strings.xml └── styles.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/bintray.gradle -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/src/androidTest/assets/1x1.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/1x1.j2k -------------------------------------------------------------------------------- /library/src/androidTest/assets/1x1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/1x1.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/1x1.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/2x2.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/32x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/32x15.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/32x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/32x16.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/3x3.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-l1.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-l4.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-r1l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-r1l1.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-r1l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-r1l4.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-r2l5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-r2l5.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-r3.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest-r6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest-r6.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/decodeTest.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/decodeTest.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/encodeTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/encodeTest.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/fullrgb.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/fullrgb.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/fullrgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/fullrgb.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/headerTest-r1-l1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/headerTest-r1-l1.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/headerTest-r2-l3.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/headerTest-r2-l3.j2k -------------------------------------------------------------------------------- /library/src/androidTest/assets/headerTest-r5-l1.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/headerTest-r5-l1.j2k -------------------------------------------------------------------------------- /library/src/androidTest/assets/headerTest-r7-l5.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/headerTest-r7-l5.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/headerTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/headerTest.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-grey.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-grey.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-grey.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated180.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated180.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated180.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated270.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated270.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated270.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated90.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated90.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena-rotated90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena-rotated90.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena.j2k -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/lena.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/lena.raw -------------------------------------------------------------------------------- /library/src/androidTest/assets/subsampling_1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/subsampling_1.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/subsampling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/subsampling_1.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/subsampling_2.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/subsampling_2.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/subsampling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/subsampling_2.png -------------------------------------------------------------------------------- /library/src/androidTest/assets/tiled-r6-l1.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/tiled-r6-l1.j2k -------------------------------------------------------------------------------- /library/src/androidTest/assets/tiled-r6-l6.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/tiled-r6-l6.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/transparent-grey.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/transparent-grey.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/transparent-grey.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/transparent-grey.raw -------------------------------------------------------------------------------- /library/src/androidTest/assets/transparent.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/transparent.jp2 -------------------------------------------------------------------------------- /library/src/androidTest/assets/transparent.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/assets/transparent.raw -------------------------------------------------------------------------------- /library/src/androidTest/java/com/gemalto/jp2/TestJp2Decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/java/com/gemalto/jp2/TestJp2Decoder.java -------------------------------------------------------------------------------- /library/src/androidTest/java/com/gemalto/jp2/TestJp2Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/java/com/gemalto/jp2/TestJp2Encoder.java -------------------------------------------------------------------------------- /library/src/androidTest/java/com/gemalto/jp2/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/androidTest/java/com/gemalto/jp2/Util.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/.gitignore -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/.travis.yml -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/AUTHORS.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/CHANGELOG.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/CTestConfig.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/INSTALL.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/LICENSE -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/NEWS.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/README.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/THANKS.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/appveyor.yml -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/CTestCustom.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/EnsureFileInclude.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/EnsureFileInclude.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindCPPCHECK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindCPPCHECK.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindFCGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindFCGI.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindJPYLYZER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindJPYLYZER.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindKAKADU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindKAKADU.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindLCMS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindLCMS.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/FindLCMS2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/FindLCMS2.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/JPIPTestDriver.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/JPIPTestDriver.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/OpenJPEGCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/OpenJPEGCPack.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/OpenJPEGConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/OpenJPEGConfig.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/TestFileOffsetBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/TestFileOffsetBits.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/TestLargeFiles.c.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/TestLargeFiles.c.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/TestLargeFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/TestLargeFiles.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/TestWindowsFSeek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/TestWindowsFSeek.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/cmake/openjpeg_valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/cmake/openjpeg_valgrind.supp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/Doxyfile.dox.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/Doxyfile.dox.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/jpip_architect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/jpip_architect.png -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/jpip_protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/jpip_protocol.png -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/mainpage.dox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/mainpage.dox.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/man/man1/opj_compress.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/man/man1/opj_compress.1 -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/man/man1/opj_decompress.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/man/man1/opj_decompress.1 -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/man/man1/opj_dump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/man/man1/opj_dump.1 -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/man/man3/libopenjp2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/man/man3/libopenjp2.3 -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/doc/openjpip.dox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/doc/openjpip.dox.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/scripts/astyle.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/scripts/astyle.options -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/scripts/astyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/scripts/astyle.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/scripts/prepare-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/scripts/prepare-commit.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/scripts/remove_temporary_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/scripts/remove_temporary_files.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/scripts/verify-indentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/scripts/verify-indentation.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/color.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/color.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/format_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/format_defs.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/opj_apps_config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/opj_apps_config.h.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/opj_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/opj_getopt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/opj_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/opj_getopt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/common/opj_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/common/opj_string.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/convert.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/convert.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/convertbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/convertbmp.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/convertpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/convertpng.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/converttif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/converttif.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/index.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/index.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/opj_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/opj_compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/opj_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/opj_decompress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/opj_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/opj_dump.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp2/windirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp2/windirent.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/convert.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/convert.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/getopt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/getopt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/opj_jp3d_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/opj_jp3d_compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/opj_jp3d_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/opj_jp3d_decompress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/LPI_JP3D_VM.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/LPI_JP3D_VM.tcl -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/README -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/Thumbs.db -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/decoder.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/decoder.tcl -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/encoder.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/encoder.tcl -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/logoLPI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/tcltk/logoLPI.gif -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jp3d/windirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jp3d/windirent.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/README -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_dec_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_dec_server.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_addxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_addxml.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_test.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_jpip_transcode.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_server.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/dist/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/dist/manifest.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageManager.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageViewer.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImageWindow.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImgdecClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ImgdecClient.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/JPIPHttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/JPIPHttpClient.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/MML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/MML.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/PnmImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/PnmImage.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/RegimViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/RegimViewer.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ResizeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer/src/ResizeListener.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/dist/manifest.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/dist/manifest.txt.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/ImageViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/ImageViewer.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/ImageWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/ImageWindow.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/JP2XMLparser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/JP2XMLparser.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/OptionPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpip/opj_viewer_xerces/src/OptionPanel.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/convert.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/convert.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/index.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/index.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/opj_jpwl_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/opj_jpwl_compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/opj_jpwl_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/opj_jpwl_decompress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/jpwl/windirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/jpwl/windirent.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/meta_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/meta_out.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/meta_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/meta_out.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.dtd -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.sln -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata.vcproj -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata_Notes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/mj2_to_metadata_Notes.doc -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_decompress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_extract.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/opj_mj2_wrap.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/mj2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/mj2/readme.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | if(BUILD_VIEWER) 3 | add_subdirectory(OPJViewer) 4 | endif() 5 | -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/OPJViewer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/OPJViewer.iss -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/Readme.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/about/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/about/about.htm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/about/opj_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/about/opj_logo.png -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJAbout.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJChild.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJChild.ico -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJChild16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJChild16.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJDialogs.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJThreads.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.ico -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer.rc -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/OPJViewer16.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/about_htm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/about_htm.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/build.h: -------------------------------------------------------------------------------- 1 | wxT("491") 2 | -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon1.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon2.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon3.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon4.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/icon5.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagjpeg2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagjpeg2000.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagjpeg2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagjpeg2000.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagmxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagmxf.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagmxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/imagmxf.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/license.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/opj_logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/opj_logo.xpm -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/readmeafter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/readmeafter.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/readmebefore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/readmebefore.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/wxj2kparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/wxj2kparser.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/wxjp2parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/bin/wx/OPJViewer/source/wxjp2parser.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/bench_dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/bench_dwt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/bio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/bio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/cidx_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/cidx_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/cidx_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/cidx_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/cio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/cio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/dwt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/dwt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/event.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/event.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/function_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/function_list.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/function_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/function_list.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/image.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/image.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/indexbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/indexbox_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/invert.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/invert.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/j2k.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/j2k.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/jp2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/jp2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/libopenjp2.pc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/libopenjp2.pc.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/mct.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/mct.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/mqc.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/mqc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/mqc_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/mqc_inl.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/openjpeg.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/openjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/openjpeg.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_clock.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_clock.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_codec.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_common.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_config.h.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_config_private.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_config_private.h.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_includes.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_intmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_intmath.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_inttypes.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_malloc.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_malloc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/opj_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/opj_stdint.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/phix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/phix_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/pi.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/pi.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/ppix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/ppix_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/sparse_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/sparse_array.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/sparse_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/sparse_array.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t1.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t1.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t1_generate_luts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t1_generate_luts.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t1_luts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t1_luts.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/t2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tcd.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tcd.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/test_sparse_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/test_sparse_array.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tgt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tgt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/thix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/thix_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/thread.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/thread.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tls_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tls_keys.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp2/tpix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp2/tpix_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/bio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/bio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/cio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/cio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/dwt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/dwt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/event.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/event.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/fix.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/int.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d_lib.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/jp3d_lib.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/libopenjp3d.pc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/libopenjp3d.pc.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/mct.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/mct.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/mqc.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/mqc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/openjp3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/openjp3d.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/openjp3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/openjp3d.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/opj_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/opj_includes.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/pi.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/pi.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/raw.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/raw.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t1.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t1.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t1_3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t1_3d.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t1_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t1_3d.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/t2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/tcd.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/tcd.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/tgt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/tgt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/volume.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjp3d/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjp3d/volume.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/auxtrans_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/auxtrans_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/auxtrans_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/auxtrans_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/box_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/box_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/box_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/box_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/boxheader_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/boxheader_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/boxheader_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/boxheader_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/byte_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/byte_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/byte_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/byte_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/cache_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/cache_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/cache_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/cache_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/cachemodel_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/cachemodel_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/cachemodel_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/cachemodel_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/channel_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/channel_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/channel_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/channel_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/codestream_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/codestream_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/codestream_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/codestream_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/dec_clientmsg_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/dec_clientmsg_handler.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/dec_clientmsg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/dec_clientmsg_handler.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/faixbox_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/faixbox_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/faixbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/faixbox_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/ihdrbox_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/ihdrbox_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/ihdrbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/ihdrbox_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/imgreg_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/imgreg_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/imgreg_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/imgreg_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/imgsock_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/imgsock_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/imgsock_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/imgsock_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/index_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/index_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/index_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/index_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/j2kheader_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/j2kheader_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/j2kheader_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/j2kheader_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_decoder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_decoder.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_encoder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jp2k_encoder.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jpip_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jpip_parser.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jpip_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jpip_parser.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jpipstream_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jpipstream_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/jpipstream_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/jpipstream_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/libopenjpip.pc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/libopenjpip.pc.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/manfbox_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/manfbox_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/manfbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/manfbox_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/marker_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/marker_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/marker_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/marker_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/metadata_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/metadata_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/metadata_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/metadata_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/mhixbox_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/mhixbox_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/mhixbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/mhixbox_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/msgqueue_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/msgqueue_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/msgqueue_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/msgqueue_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/openjpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/openjpip.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/openjpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/openjpip.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/placeholder_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/placeholder_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/placeholder_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/placeholder_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/query_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/query_parser.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/query_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/query_parser.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/session_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/session_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/session_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/session_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/sock_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/sock_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/sock_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/sock_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/target_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/target_manager.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpip/target_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpip/target_manager.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/README.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/crc.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/crc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/jpwl_lib.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/libopenjpwl.pc.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/libopenjpwl.pc.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/rs.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openjpwl/rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openjpwl/rs.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/bio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/bio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/cio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/cio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/dwt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/dwt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/event.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/event.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/fix.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/image.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/image.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/int.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/j2k.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/j2k.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/j2k_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/j2k_lib.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/j2k_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/j2k_lib.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/jp2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/jp2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/jpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/jpt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/jpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/jpt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mct.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mct.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mj2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mj2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mj2_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mj2_convert.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mj2_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mj2_convert.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mqc.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/mqc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/openjpeg.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/openjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/openjpeg.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/opj_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/opj_includes.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/opj_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/opj_malloc.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/pi.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/pi.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/raw.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/raw.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/t1.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/t1.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/t1_luts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/t1_luts.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/t2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/t2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/tcd.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/tcd.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/tgt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/src/lib/openmj2/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/src/lib/openmj2/tgt.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/compare_dump_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/compare_dump_files.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/compare_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/compare_images.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/compare_raw_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/compare_raw_files.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/conformance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/conformance/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/GNUmakefile -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/README.TXT -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/build_google_oss_fuzzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/build_google_oss_fuzzers.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/build_seed_corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/build_seed_corpus.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/fuzzingengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/fuzzingengine.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/fuzzers/opj_decompress_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/fuzzers/opj_decompress_fuzzer.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/include_openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/include_openjpeg.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/j2k_random_tile_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/j2k_random_tile_access.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/nonregression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/nonregression/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/nonregression/checkmd5refs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/nonregression/checkmd5refs.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/nonregression/md5refs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/nonregression/md5refs.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/nonregression/test_suite.ctest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/nonregression/test_suite.ctest.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/pdf2jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/pdf2jp2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/performance/compare_perfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/performance/compare_perfs.py -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/performance/perf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/performance/perf_test.py -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/performance/perf_test_filelist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/performance/perf_test_filelist.csv -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/ppm2rgb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/ppm2rgb3.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/profiling/filter_massif_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/profiling/filter_massif_output.py -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/test_decode_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/test_decode_area.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/test_tile_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/test_tile_decoder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/test_tile_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/test_tile_encoder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/unit/testempty0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/unit/testempty0.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/unit/testempty1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/unit/testempty1.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tests/unit/testempty2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tests/unit/testempty2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/README.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASBeautifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASBeautifier.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASEnhancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASEnhancer.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASFormatter.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASLocalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASLocalizer.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASLocalizer.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/ASResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/ASResource.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/LICENSE.md -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/astyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/astyle.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/astyle_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/astyle_main.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/astyle/astyle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/astyle/astyle_main.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/include/zconf.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/include/zlib.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/COPYING -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/include/lcms2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/include/lcms2.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/include/lcms2_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/include/lcms2_plugin.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsalpha.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscam02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscam02.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscgats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscgats.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscnvrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmscnvrt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmserr.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsgamma.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsgmt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmshalf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmshalf.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsintrp.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsio0.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsio1.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmslut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmslut.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsmd5.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsmtrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsmtrx.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsnamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsnamed.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsopt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmspack.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmspcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmspcs.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsplugin.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsps2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmssamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmssamp.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmssm.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmstypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmstypes.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsvirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsvirt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmswtpnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmswtpnt.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsxform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/cmsxform.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/lcms2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/liblcms2/src/lcms2_internal.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/LICENSE -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/png.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/png.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngconf.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngdebug.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngerror.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngget.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pnginfo.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pnglibconf.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngmem.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngpread.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngpriv.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngread.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngrio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngrtran.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngrutil.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngset.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngstruct.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngtrans.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngwio.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngwrite.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngwtran.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libpng/pngwutil.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/libport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/libport.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/libtiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/libtiff.def -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/snprintf.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/t4.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/test_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/test_inline.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_aux.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_close.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_codec.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_color.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_config.h.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_config.h.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dir.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dir.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirinfo.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirread.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dirwrite.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dumpmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_dumpmode.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_error.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_extension.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_fax3sm.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_flush.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_getimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_getimage.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jbig.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jpeg.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jpeg_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_jpeg_12.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_luv.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_lzma.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_lzw.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_next.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_ojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_ojpeg.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_open.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_packbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_packbits.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_pixarlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_pixarlog.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_predict.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_predict.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_print.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_read.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_stream.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_stream.cxx -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_strip.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_swab.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_thunder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_thunder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_tile.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_unix.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_version.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_warning.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_win32.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_write.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tif_zip.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiff.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffconf.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffconf.h.cmake.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffconf.h.in -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffio.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffio.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffio.hxx -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffiop.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/tiffvers.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libtiff/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libtiff/uvcode.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/adler32.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/compress.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/crc32.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/crc32.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/deflate.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/deflate.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/gzclose.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/gzguts.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/gzlib.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/gzread.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/gzwrite.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/infback.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inffast.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inffast.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inffixed.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inflate.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inflate.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inftrees.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/inftrees.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/trees.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/trees.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/uncompr.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/zlib.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/zutil.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/thirdparty/libz/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/thirdparty/libz/zutil.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/abi-tracker/openjpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/abi-tracker/openjpeg.json -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/ctest_scripts/toolchain-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/ctest_scripts/toolchain-mingw32.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/ctest_scripts/toolchain-mingw64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/ctest_scripts/toolchain-mingw64.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/ctest_scripts/travis-ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/ctest_scripts/travis-ci.cmake -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/abi-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/abi-check.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/detect-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/detect-avx2.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/install.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-Ubuntu14.04-gcc4.8.4-i386-Release-3rdP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-Ubuntu14.04-gcc4.8.4-i386-Release-3rdP.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-all.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-windows-vs2010-x86-Release-3rdP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/knownfailures-windows-vs2010-x86-Release-3rdP.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/run.sh -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/tools/travis-ci/travis_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/tools/travis-ci/travis_rsa.enc -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # wrapping 2 | if(BUILD_JAVA) 3 | add_subdirectory(java) 4 | endif() 5 | -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | add_subdirectory(openjp2) 3 | -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/JavaOpenJPEG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/JavaOpenJPEG.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/JavaOpenJPEGDecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/JavaOpenJPEGDecoder.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/index.c -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/index.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/java-sources/org/openJpeg/OpenJPEGJavaDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/java-sources/org/openJpeg/OpenJPEGJavaDecoder.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/java-sources/org/openJpeg/OpenJPEGJavaEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/java-sources/org/openJpeg/OpenJPEGJavaEncoder.java -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/org_openJpeg_OpenJPEGJavaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/org_openJpeg_OpenJPEGJavaDecoder.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpeg/wrapping/java/openjp2/org_openJpeg_OpenJPEGJavaEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpeg/wrapping/java/openjp2/org_openJpeg_OpenJPEGJavaEncoder.h -------------------------------------------------------------------------------- /library/src/main/cpp/openjpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/openjpg.cpp -------------------------------------------------------------------------------- /library/src/main/cpp/opj_apps_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/opj_apps_config.h -------------------------------------------------------------------------------- /library/src/main/cpp/opj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/opj_config.h -------------------------------------------------------------------------------- /library/src/main/cpp/opj_config_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/cpp/opj_config_private.h -------------------------------------------------------------------------------- /library/src/main/java/com/gemalto/jp2/JP2Decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/java/com/gemalto/jp2/JP2Decoder.java -------------------------------------------------------------------------------- /library/src/main/java/com/gemalto/jp2/JP2Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/library/src/main/java/com/gemalto/jp2/JP2Encoder.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/settings.gradle -------------------------------------------------------------------------------- /testapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /testapp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/build.gradle -------------------------------------------------------------------------------- /testapp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /testapp/src/main/assets/balloon.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/assets/balloon.jp2 -------------------------------------------------------------------------------- /testapp/src/main/assets/test.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/assets/test.jp2 -------------------------------------------------------------------------------- /testapp/src/main/java/com/gemalto/jp2/test/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/java/com/gemalto/jp2/test/MainActivity.java -------------------------------------------------------------------------------- /testapp/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /testapp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /testapp/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /testapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /testapp/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThalesGroup/JP2ForAndroid/HEAD/testapp/src/main/res/values/styles.xml --------------------------------------------------------------------------------