summaryrefslogtreecommitdiff
path: root/src/lib/openjp2/t1.c
AgeCommit message (Expand)Author
2024-02-28Fix some typos (found by `codespell` and `typos`)Stefan Weil
2022-08-11Cleanup code related to quality layer allocation, and add a few safety checksEven Rouault
2022-06-29opj_t1_encode_cblk(): avoid undefined behaviour on fuzzed input (fixes #1432)Even Rouault
2021-09-25Added support for high throughput (HTJ2K) decoding.Aous Naman
2020-11-23Fix typo in internal function nameEven Rouault
2020-10-09Merge pull request #1253 from rouault/floating_point_irreversible_encodingEven Rouault
2020-06-23openjp2: Plug memory leak when setting data as TLS fails.Sebastian Rasmussen
2020-06-23openjp2: Error out if failing to create Tier 1 handle.Sebastian Rasmussen
2020-05-24T1 encoder: speed-up by aggressive inlining and more cache friendly data orga...Even Rouault
2020-05-20Irreversible compression/decompression DWT: use 1/K constant as per standardEven Rouault
2020-05-20Irreversible decoding: align code more closely to the standard by avoid messi...Even Rouault
2020-05-20Encoder: use floating-point operations for irreversible transformationEven Rouault
2020-05-20Add multithreading support in the T1 (entropy phase) encoderEven Rouault
2019-03-29opj_t1_encode_cblks: fix UBSAN signed integer overflowEven Rouault
2018-10-31Fix some potential overflow issues (#1161)Stefan Weil
2017-09-21Workaround Coverity CID 169392Even Rouault
2017-09-19Avoid relying on operator precedence (raised by cppcheck)Even Rouault
2017-09-19Fix warnings and errors when compiling with a c++ compiler (#1021)Even Rouault
2017-09-04Replace uses of size_t by OPJ_SIZE_TEven Rouault
2017-09-01opj_t1_clbl_decode_processor(): use SSE2 in subtile decoding code path, for i...Even Rouault
2017-09-01opj_t1_decode_cblk(): move some code to codeblock processor for (theoretical)...Even Rouault
2017-09-01Tiny perf improvement in T1 stage for subtile decodingEven Rouault
2017-09-01Allow several repeated calls to opj_set_decode_area() and opj_decode() for si...Even Rouault
2017-09-01Various changes to allow tile buffers of more than 4giga pixelsEven Rouault
2017-09-01Sub-tile decoding: only allocate tile component buffer of the needed dimensionEven Rouault
2017-09-01opj_t1_allocate_buffers(): remove useless overflow checksEven Rouault
2017-08-18Subtile decoding: only do 5x3 IDWT computations on relevant areas of tile-com...Even Rouault
2017-08-17Zero-initialize tile buffer regions of skipped code-blocks, so as to make Val...Even Rouault
2017-08-17Sub-tile decoding: only decode precincts and codeblocks that intersect the wi...Even Rouault
2017-08-16opj_t1_encode_cblk(): avoid uint32 overflow when numbps = 0 (which is well de...Even Rouault
2017-08-07Slight improvement in management of code block chunksEven Rouault
2017-08-07Decoding: do not allocate memory for the codestream of each codeblockEven Rouault
2017-07-30Fix Doxygen warnings (patch derived from Winfried's doxygen-dif.txt.zip, #849)Even Rouault
2017-07-29opj_t1_decode_cblk(): avoid undefined shift behaviour. Fixes https://bugs.chr...Even Rouault
2017-07-29opj_t1_clbl_decode_processor(): avoid undefined behaviour if roishift >= 31. ...Even Rouault
2017-07-26T1 decoder: check code stream errors when predictable termination is enabled ...Even Rouault
2017-06-21Fix clang warning about extraneous parenthesesEven Rouault
2017-06-17Fix warnings with recent GCC versionsEven Rouault
2017-06-13Merge branch 't1_flag_optimizations'Even Rouault
2017-06-12Encoder: fix packet writing of empty sub-bands (#891, #892)Even Rouault
2017-06-09T1: fix BYPASS/LAZY, TERMALL/RESTART and PTERM/ERTERM encoding modes. (#674)fix_bypass_pterm_termallEven Rouault
2017-06-02opj_t1_dec_sigpass_raw/opj_t1_dec_refpass_raw: harmonize style with mqc methodsEven Rouault
2017-06-02MQC/RAW decoder: use an artificial 0xFF 0xFF terminating marker.Even Rouault
2017-06-02Simplify VSC handling: instead of masking out bits when reading the 4th row.Even Rouault
2017-06-02Force inlining of mqc decoding and pass steps through heavy use of macros, so...Even Rouault
2017-06-02Optimize opj_t1_update_flags()Even Rouault
2017-06-02T1: remove use of neghalf variable. It is useless since bpno is always > 0Even Rouault
2017-06-02T1: avoid pointer indirection for mqc and raw members of opj_t1_tEven Rouault
2017-06-02T1: remove flags_stride variable from opj_t1_tEven Rouault
2017-06-02T1: loop unrolling in dec_sigpass_raw and dec_refpass_rawEven Rouault