summaryrefslogtreecommitdiff
path: root/libopenjpeg/t1.h
AgeCommit message (Collapse)Author
2012-09-28[trunk] Start FolderReorgProposal taskMathieu Malaterre
Update issue 177
2012-09-27[trunk] remove old v1 function t1_encode_blocksMickael Savinaud
2012-09-10[trunk] Fix all C90 issues using gcc -pedantic -Wno-long-long to track themMathieu Malaterre
As a side effect, fix all comment style to remove extra gcc output Fixes issue 173
2012-08-30[trunk] STYLE: Clean up documentation errorsMickael Savinaud
Functions should only have formal documentation in one place, and preferably in the declaration (i.e. repeated documentaiton should not be at both the declaration and the definition, because it causes too much maintenance to keep them syncronized). In cases where the definition is also the declaration (as is often the case for static functions in the .c files) the documentation was preserved at the first use of the function signature. Functions that are formally documented should contain documentation for each function argument. The clang 3.1 compiler issues documentation warnings when the documentation block with @params preceeding a declaration does not match the argument list. This patch set follows a convention used elsewere in openjpeg to add a placeholder FIXME DOC description where one was previously missing. Thanks to Hans Johnson.
2012-08-22[trunk] realloc is misused and may leak memory (Issue#168)Luc Hermitte
2012-08-17rename t1_enc_sigpass_step and t1_enc_sigpass with opj_ prefix and update typeMickael Savinaud
2012-08-17remove deprecated v1 style function t1_destroy; rename t1_destroy_v2 to ↵Mickael Savinaud
opj_t1_destroy remove deprecated v1 style function t1_decode_cblks; rename t1_decode_cblks_v2 to opj_t1_decode_cblks remove deprecated v1 style function t1_encode_cblks; rename t1_encode_cblks_v2 to opj_t1_encode_cblks remove deprecated v1 style function t1_create; rename t1_create_v2 to opj_t1_create
2012-03-15[trunk] modify image_to_j2k and the lib to support functionalities given by ↵Mickael Savinaud
the v2 alpha branch
2011-09-27[trunk] WIP: fix some warnings about a static function and j2k_read_unk_v2Mickael Savinaud
2011-09-19WIP: update t1, t2, tcd to use same strut as in V2Mickael Savinaud
2011-09-19Work In Progress: insert elements from V2 framework into the trunkMickael Savinaud
2010-10-24Fixed doxygen data inside source code (from winfried)Antonin Descampe
2007-11-13Patch by Dzonatas and Callum Lerwick. Fp/vectorization patch which ↵Francois-Olivier Devaux
basically converts most of the irreversible decode codepath to floating point, eliminating a few rounds of int/fp conversion, resulting in a vast performance improvement, and an increase in accuracy.
2007-05-22Patch suggested by Callum Lerwick <seg@haxxed.com>: "This makes the t1 data ↵Francois-Olivier Devaux
arrays dynamic, which greatly reduces cache thrashing. Also, some minor cleanup to prevent unnecessary casts"
2007-05-21Patch suggested by Callum Lerwick <seg@haxxed.com>: "This changes the flag ↵Francois-Olivier Devaux
code in t1 to use a flag_t type, which can then be changed to reduce RAM usage. It is now typedef to a short."
2007-05-21Patch suggested by Callum Lerwick <seg@haxxed.com>: "This patch makes the t1 ↵Francois-Olivier Devaux
LUTs static. I actually intend this as a prelude to possibly eliminating some or all of the LUTs entirely."
2007-04-04Digital cinema compliance for 4K chosen by "-cinema4K" option. Modification ↵Parvatha Elangovan
in image_to_j2k.c. Bit rate limitation for each color component. Modification in image_to_j2k.c, t2.c. Modified and tested Progression order change "-POC" option. Modification in image_to_j2k.c, j2k.c, pi.c. Function j2k_check_poc_val() to check for possible loss of packets in case of wrong POC declaration. Modification in j2k.c. Structure T2_MODE. This tells if the t2_encode_packets() is called during Threshold calculation or in Final pass. Modification in j2k.h, tcd.c
2007-01-23Modification of the context numbers, to reflect what has been specified in ↵Francois-Olivier Devaux
standard.
2007-01-15Copyright updateFrancois-Olivier Devaux
2005-12-08OpenJPEG version 1.1Antonin Descampe
2005-12-02openjpeg version 1.0 (previous version still available with tag opj0-97)Antonin Descampe
2003-11-27Initial revisionSebastien Lugan