17 KiB
17 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
Added
Removed
Changed / clarified
Fixed
[0.10.2] - 2024-03-08
Fixed
- bugs in (lossless) encoding (#3367, #3359 and #3386)
- re-enable installation of MIME file (#3375)
- bugs in streaming mode (#3379 and #3380)
[0.10.1] - 2024-02-28
Fixed
- reduce allocations (#3336 and #3339), fixing a significant speed regression present since 0.9.0
- bug in streaming encoding (#3331)
[0.10.0] - 2024-02-21
Added
- decoder API: added
JxlDecoderGetBoxSizeContentsfor getting the size of the content of a box without the headers. - encoder API: implemented new api functions for streaming encoding.
Changed / clarified
- decoder/encoder API: return failure when surface allocation fail
- encoder API / cjxl: updated modular effort levels to faster settings; the effort range is now 1-10, with 11 available in advanced mode.
[0.9.2] - 2024-02-07
Fixed
- bugs in the gdk-pixbuf plugin
- some build issues
[0.9.1] - 2024-01-08
Fixed
- multiple build issues
[0.9.0] - 2023-12-22
Added
- encoder API: add
JxlEncoderSetExtraChannelDistanceto adjust the quality of extra channels (like alpha) separately. - encoder API: new api functions for streaming encoding:
JxlEncoderSetOutputProcessorJxlEncoderFlushInputJxlEncoderOutputProcessorstructJxlEncoderSetOutputCallbackJxlChunkedFrameInputSourcestructJxlEncoderAddChunkedFrame- encoder API: new options for more fine-grained control over metadata
preservation when using
JxlEncoderAddJPEGFrame: JXL_ENC_FRAME_SETTING_JPEG_KEEP_EXIFJXL_ENC_FRAME_SETTING_JPEG_KEEP_XMPJXL_ENC_FRAME_SETTING_JPEG_KEEP_JUMBF- encoder API: new function
JxlEncoderSetUpsamplingModeto change the upsampling method, e.g. to use nearest-neighbor upsampling for pixel art - decoder API: implemented
JxlDecoderSetOutputColorProfileandJxlDecoderSetCmsto enable decoding to desired colorspace. - cjxl can now be used to explicitly add/update/strip Exif/XMP/JUMBF metadata using
the decoder-hints syntax, e.g.
cjxl input.ppm -x exif=input.exif output.jxl - djxl can now be used to extract Exif/XMP/JUMBF metadata
- encoder API: new function
JxlEncoderDistanceFromQualityfor convenience to calculate adistancegiven aquality
Removed
- API: the Butteraugli API (
jxl/butteraugli.h) was removed. - encoder and decoder API: all deprecated functions were removed:
JxlDecoderDefaultPixelFormat,JxlEncoderOptionsSetLossless,JxlEncoderOptionsSetEffort,JxlEncoderOptionsSetDecodingSpeed,JxlEncoderOptionsSetDistance,JxlEncoderOptionsCreate, as well as the deprecated enumerator valuesJXL_DEC_EXTENSIONS,JXL_ENC_NOT_SUPPORTED,JXL_TYPE_BOOLEAN,JXL_TYPE_UINT32, and deprecated typeJxlEncoderOptions. - decoder API: the signature of
JxlDecoderGetColorAsEncodedProfile,JxlDecoderGetICCProfileSize, andJxlDecoderGetColorAsICCProfilechanged: a deprecated unused argument was removed.
Changed / clarified
- changed the name of the cjxl flag
photon_noisetophoton_noise_iso - fixed how large boxes are decoded (#2958)
- fixed encoding files with unreadable patches (#3042, #3046)
[0.8.2] - 2023-06-14
Changed
- Security: Fix an integer underflow bug in patch decoding (#2551- CVE-2023-35790).
[0.8.1] - 2023-02-03
Changed
- Allow fast-lossless for 16-bit float input (#2093)
- Fix bug in palette (#2120)
- Security: Fix OOB read in exif.h (#2101 - CVE-2023-0645)
[0.8.0] - 2023-01-18
Added
- decoder API: new function
JxlDecoderSetImageBitDepthto set the bit depth of the output buffer. - decoder API proposal: add
JxlDecoderSetOutputColorProfileandJxlDecoderSetCmsto enable decoding to desired colorspace; NB: not implemented yet. - encoder API: new function
JxlEncoderSetFrameBitDepthto set the bit depth of the input buffer. - encoder API: add an effort 10 option for lossless compression; using this
setting requires calling
JxlEncoderAllowExpertOptions. - encoder API: new
JXL_ENC_FRAME_SETTING_JPEG_COMPRESS_BOXESenum value to allow explicit control of metadata compression
Removed
- common API: removed
JxlIntrinsicSizeHeader - decoder API: removed deprecated
JXL_DEC_NEED_DC_OUT_BUFFERandJXL_DEC_DC_IMAGEevents,JxlDecoderDCOutBufferSizeandJxlDecoderSetDCOutBufferfunctions
Changed / clarified
- encoder API:
JxlEncoderProcessOutputrequires at least 32 bytes of output space to proceed and guarantees that at least one byte will be written
[0.7] - 2022-07-21
Added
- Export version information in headers.
- decoder API: Ability to decode the content of metadata boxes:
JXL_DEC_BOX,JXL_DEC_BOX_NEED_MORE_OUTPUT,JxlDecoderSetBoxBuffer,JxlDecoderGetBoxType,JxlDecoderGetBoxSizeRawandJxlDecoderSetDecompressBoxes. - decoder API: ability to mark the input is finished:
JxlDecoderCloseInput. - decoder API: ability to request updates on different progressive events using
JxlDecoderSetProgressiveDetail; currently supported events arekDC,kLastPassesandkPasses. - decoder API: ability to specify desired intensity target using
JxlDecoderSetDesiredIntensityTarget - decoder API: new function
JxlDecoderSetCoalescedto allow decoding non-coalesced (unblended) frames, e.g. layers of a composite still image or the cropped frames of a recompressed GIF/APNG. - decoder API: new function
JxlDecoderSetUnpremultiplyAlphato set preference for getting an associated alpha channel with premultiplied or unpremultiplied colors. - decoder API: field added to
JxlFrameHeader: aJxlLayerInfostruct that contains crop dimensions and offsets and blending information for the non-coalesced case. - decoder API: new function
JxlDecoderGetExtraChannelBlendInfoto get the blending information for extra channels in the non-coalesced case. - decoder API: new function
JxlDecoderSetMultithreadedImageOutCallback, allowing output callbacks to receive more information about the number of threads on which they are running. - decoder API: new function
JxlDecoderSkipCurrentFrameto skip processing the current frame after a progressive detail is reached. - decoder API: new function
JxlDecoderGetIntendedDownsamplingRatioto get the intended downsampling ratio of progressive steps, based on the information in the frame header. - decoder API: new function
JxlDecoderSetRenderSpotcolorsto allow disabling rendering of spot colors. - decoder/encoder API: add two fields to
JXLBasicInfo:intrinsic_xsizeandintrinsic_ysizeto signal the intrinsic size. - encoder API: ability to add metadata boxes, added new functions
JxlEncoderAddBox,JxlEncoderUseBoxes,JxlEncoderCloseBoxesandJxlEncoderCloseFrames. - encoder API: added ability to set several encoder options / extra fields to
frames using
JxlEncoderSetFrameName,JxlEncoderFrameSettingsSetOption,JxlEncoderFrameSettingsSetFloatOption. - encoder API: added ability to check required codestream compatibility level
and force specified using
JxlEncoderGetRequiredCodestreamLevelandJxlEncoderSetCodestreamLevel. - encoder API: added ability to force emitting box-based container format
using
JxlEncoderUseContainer. - encoder API: added ability to store JPEG metadata for lossless reconstruction
using
JxlEncoderStoreJPEGMetadata - encoder API: new functions
JxlEncoderSetFrameHeaderandJxlEncoderSetExtraChannelBlendInfoto set animation and blending parameters of the frame, andJxlEncoderInitFrameHeaderandJxlEncoderInitBlendInfoto initialize the structs to set. - encoder API: ability to encode arbitrary extra channels:
JxlEncoderInitExtraChannelInfo,JxlEncoderSetExtraChannelInfo,JxlEncoderSetExtraChannelNameandJxlEncoderSetExtraChannelBuffer. - encoder API: ability to plug custom CMS implementation using
JxlEncoderSetCms(JxlEncoder* enc, JxlCmsInterface cms) - encoder API: added
JxlEncoderGetErrorto retrieve last encoder error.
Changed
- decoder API: using
JxlDecoderCloseInputat the end of all input is required when using JXL_DEC_BOX, and is now also encouraged in other cases, but not required in those other cases for backwards compatibility. - encoder API:
JxlEncoderCloseInputnow closes both frames and boxes input. - CLI:
cjxlanddjxlhave been reimplemented on the base of public decoder and encoder API; dropped dependency ongflagsfor argument parsing.
Deprecated
- decoder API:
JXL_DEC_EXTENSIONSevent: useJXL_DEC_BASIC_INFO - decoder / encoder API: pixel types
JXL_TYPE_BOOLEANandJXL_TYPE_UINT32: consider usingJXL_TYPE_UINT8andJXL_TYPE_FLOATcorrespondingly. - decoder API: pixel format parameter for
JxlDecoderGetColorAsEncodedProfileandJxlDecoderGetICCProfileSize: passNULL. - decoder API:
JxlDecoderDefaultPixelFormat - encoder API:
JxlEncoderOptions: useJxlEncoderFrameSettingsinstead. - encoder API:
JxlEncoderOptionsCreate: useJxlEncoderFrameSettingsCreateinstead. - encoder API:
JxlEncoderOptionsSetDistance: useJxlEncoderSetFrameDistanceinstead. - encoder API:
JxlEncoderOptionsSetLossless: useJxlEncoderSetFrameLosslessinstead. - encoder API:
JxlEncoderOptionsSetEffort: useJxlEncoderFrameSettingsSetOption(frame_settings, JXL_ENC_FRAME_SETTING_EFFORT, effort)instead. - encoder API:
JxlEncoderOptionsSetDecodingSpeed: useJxlEncoderFrameSettingsSetOption(frame_settings, JXL_ENC_FRAME_SETTING_DECODING_SPEED, tier)instead. - encoder API: deprecated
JXL_ENC_NOT_SUPPORTED, the encoder returnsJXL_ENC_ERRORinstead and there is no need to handleJXL_ENC_NOT_SUPPORTED.
[0.6.1] - 2021-10-29
Changed
- Security: Fix OOB read in splines rendering (#735 - CVE-2021-22563)
- Security: Fix OOB copy (read/write) in out-of-order/multi-threaded decoding (#708 - CVE-2021-22564)
- Fix segfault in
djxltool with--allow_partial_filesflag (#781). - Fix border in extra channels when using upsampling (#796)
[0.6] - 2021-10-04
Added
- API: New functions to decode extra channels:
JxlDecoderExtraChannelBufferSizeandJxlDecoderSetExtraChannelBuffer. - API: New function
JxlEncoderInitBasicInfoto initializeJxlBasicInfo(only needed when encoding). NOTE: it is now required to call this function when using the encoder. Padding was added to the struct for forward compatibility. - API: Support for encoding oriented images.
- API: FLOAT16 support in the encoder API.
- Rewrite of the GDK pixbuf loader plugin. Added proper color management and animation support.
- Rewrite of GIMP plugin. Added compression parameters dialog and switched to using the public C API.
- Debian packages for GDK pixbuf loader (
libjxl-gdk-pixbuf) and GIMP (libjxl-gimp-plugin) plugins. cjxl/djxlsupport forstdinandstdout.
Changed
- API: Renamed the field
alpha_associatedinJxlExtraChannelInfotoalpha_premultiplied, to match the corresponding name inJxlBasicInfo. - Improved the 2x2 downscaling method in the encoder for the optional color channel resampling for low bit rates.
- Fixed: the combination of floating point original data, XYB color encoding,
and Modular mode was broken (in both encoder and decoder). It now works.
NOTE: this can cause the current encoder to write jxl bitstreams that do
not decode with the old decoder. In particular this will happen when using
cjxl with PFM, EXR, or floating point PSD input, and a combination of XYB
and modular mode is used (which caused an encoder error before), e.g.
using options like
-m -q 80(lossy modular),-d 4.5or--progressive_dc=1(modular DC frame), or default lossy encoding on an image where patches end up being used. There is no problem when using cjxl with PNG, JPEG, GIF, APNG, PPM, PGM, PGX, or integer (8-bit or 16-bit) PSD input. libjxlstatic library now bundles skcms, fixing static linking in downstream projects when skcms is used.- Spline rendering performance improvements.
- Butteraugli changes for less visual masking.
[0.5] - 2021-08-02
Added
- API: New function to decode the image using a callback outputting a part of a row per call.
- API: 16-bit float output support.
- API:
JxlDecoderRewindandJxlDecoderSkipFramesfunctions to skip more efficiently to earlier animation frames. - API:
JxlDecoderSetPreferredColorProfilefunction to choose color profile in certain circumstances. - encoder: Adding
center_xandcenter_yflags for more control of the tile order. - New encoder speeds
lightning(1) andthunder(2).
Changed
- Re-licensed the project under a BSD 3-Clause license. See the LICENSE and PATENTS files for details.
- Full JPEG XL part 1 specification support: Implemented all the spec required to decode files to pixels, including cases that are not used by the encoder yet. Part 2 of the spec (container format) is final but not fully implemented here.
- Butteraugli metric improvements. Exact numbers are different from previous versions.
- Memory reductions during decoding.
- Reduce the size of the jxl_dec library by removing dependencies.
- A few encoding speedups.
- Clarify the security policy.
- Significant encoding improvements (~5 %) and less ringing.
- Butteraugli metric to have some less masking.
cjxlflag--speedis deprecated and replaced by the--effortsynonym.
Removed
- API for returning a downsampled DC was deprecated
(
JxlDecoderDCOutBufferSizeandJxlDecoderSetDCOutBuffer) and will be removed in the next release.
[0.3.7] - 2021-03-29
Changed
- Fix a rounding issue in 8-bit decoding.
[0.3.6] - 2021-03-25
Changed
- Fix a bug that could result in the generation of invalid codestreams as well as failure to decode valid streams.
[0.3.5] - 2021-03-23
Added
- New encode-time options for faster decoding at the cost of quality.
- Man pages for cjxl and djxl.
Changed
- Memory usage improvements.
- Faster decoding to 8-bit output with the C API.
- GIMP plugin: avoid the sRGB conversion dialog for sRGB images, do not show a console window on Windows.
- Various bug fixes.
[0.3.4] - 2021-03-16
Changed
- Improved box parsing.
- Improved metadata handling.
- Performance and memory usage improvements.
[0.3.3] - 2021-03-05
Changed
- Performance improvements for small images.
- Add a (flag-protected) non-high-precision mode with better speed.
- Significantly speed up the PQ EOTF.
- Allow optional HDR tone mapping in djxl (--tone_map, --display_nits).
- Change the behavior of djxl -j to make it consistent with cjxl (#153).
- Improve image quality.
- Improve EXIF handling.
[0.3.2] - 2021-02-12
Changed
- Fix embedded ICC encoding regression #149.
[0.3.1] - 2021-02-10
Changed
- New experimental Butteraugli API (
jxl/butteraugli.h). - Encoder improvements to low quality settings.
- Bug fixes, including fuzzer-found potential security bug fixes.
- Fixed
-q 100and-d 0not triggering lossless modes.
[0.3] - 2021-01-29
Changed
- Minor change to the Decoder C API to accommodate future work for other ways to provide input.
- Future decoder C API changes will be backwards compatible.
- Lots of bug fixes since the previous version.
[0.2] - 2020-12-24
Added
- JPEG XL bitstream format is frozen. Files encoded with 0.2 will be supported by future versions.
Changed
- Files encoded with previous versions are not supported.
[0.1.1] - 2020-12-01
[0.1] - 2020-11-14
Added
- Initial release of an encoder (
cjxl) and decoder (djxl) that work together as well as a benchmark tool for comparison with other codecs (benchmark_xl). - Note: JPEG XL format is in the final stages of standardization, minor changes to the codestream format are still possible but we are not expecting any changes beyond what is required by bug fixing.
- API: new decoder API in C, check the
examples/directory for its example usage. The C API is a work in progress and likely to change both in API and ABI in future releases.