kc3-lang/libjpeg-turbo/java/doc/index-all.html

Branch :


Log

Author Commit Date CI Message
466c3448 2025-10-23 10:41:16 TurboJPEG doc tweaks - Clarify that YUV encoding performs downsampling as well as color conversion. - Clarify that TJPARAM_LOSSLESS is ignored by tj3CompressFromYUV*8(). - Clarify that tj3CompressFromYUV*8() generates only YCbCr or grayscale JPEG images, i.e. that TJPARAM_COLORSPACE has no effect.
9b01f5a0 2024-09-14 11:56:14 TJ: Add func/method for computing xformed buf size
a2728582 2024-09-03 07:54:17 TurboJPEG: ICC profile support
d43ed7a1 2024-09-04 08:38:13 Merge branch 'main' into dev
5550c80f 2024-09-03 17:20:10 Doc: "compress operation"="compression operation" (consistification)
64567381 2024-08-31 17:31:02 Merge branch 'main' into dev
8d76e4e5 2024-08-31 15:33:55 Doc: "EXIF" = "Exif"
8456d2b9 2024-08-30 10:50:13 Doc: "MCU block" = "iMCU" or "MCU" The JPEG-1 spec never uses the term "MCU block". That term is rarely used in other literature to describe the equivalent of an MCU in an interleaved JPEG image, but the libjpeg documentation uses "iMCU" to describe the same thing. "iMCU" is a better term, since the equivalent of an interleaved MCU can contain multiple DCT blocks (or samples in lossless mode) that are only grouped together if the image is interleaved. In the case of restart markers, "MCU block" was used in the libjpeg documentation instead of "MCU", but "MCU" is more accurate and less confusing. (The restart interval is literally in MCUs, where one MCU is one data unit in a non-interleaved JPEG image and multiple data units in a multi-component interleaved JPEG image.) In the case of 9b704f96b2dccc54363ad7a2fe8e378fc1a2893b, the issue was actually with progressive JPEG images exactly two DCT blocks wide, not two MCU blocks wide. This commit also defines "MCU" and "MCU row" in the description of the various restart marker options/parameters. Although an MCU row is technically always a row of samples in lossless mode, "sample row" was confusing, since it is used in other places to describe a row of samples for a single component (whereas an MCU row in a typical lossless JPEG image consists of a row of interleaved samples for all components.)
fd9b21b6 2024-08-28 18:58:21 Merge branch 'main' into dev
5cf79606 2024-08-28 18:36:37 Undocument TJ*PARAM_RESTARTBLOCKS for lossless TJ*PARAM_RESTARTBLOCKS technically works with lossless compression, but it is not useful, since the value must be equal to the number of samples in a row. (In other words, it is no different than TJ*PARAM_RESTARTINROWS, except that it requires the user to do more math.)