forked from pool/libjxl
Accepting request 1005325 from home:iDesmI:Wayland
- Update to release 0.7.0 OBS-URL: https://build.opensuse.org/request/show/1005325 OBS-URL: https://build.opensuse.org/package/show/graphics/libjxl?expand=0&rev=5
This commit is contained in:
parent
3c9177d913
commit
a012b6933a
15
_service
15
_service
@ -1,16 +1,13 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<service name="obs_scm" mode="disabled">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/libjxl/libjxl</param>
|
||||
<param name="revision">main</param>
|
||||
<param name="parent-tag">39cb6666eeb6031d8e1df05ab156c1f08099b618</param>
|
||||
<param name="versionformat">0.7~@TAG_OFFSET@.%h</param>
|
||||
<param name="url">https://github.com/libjxl/libjxl.git</param>
|
||||
<param name="revision">v0.7.0</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="exclude">third_party/brotli</param>
|
||||
<param name="submodules">disable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
</services>
|
||||
|
3
libjxl-0.7.0.obscpio
Normal file
3
libjxl-0.7.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b97c763cbcddbc8db83f476790f023353ce90611125475b944b94444a923ff7
|
||||
size 6144013
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1964e366d8b674d0a94cbc78e9e6778d08632e01a3a88c1d23a86535c741114f
|
||||
size 1116164
|
@ -1,3 +1,53 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 22 07:03:57 UTC 2022 - Enrico Belleri <idesmi@protonmail.com>
|
||||
|
||||
- Update to 0.7.0:
|
||||
- Added:
|
||||
- decoder API:
|
||||
* ability to decode the content of metadata boxes: JXL_DEC_BOX, JXL_DEC_BOX_NEED_MORE_OUTPUT, JxlDecoderSetBoxBuffer, JxlDecoderGetBoxType, JxlDecoderGetBoxSizeRaw and JxlDecoderSetDecompressBoxes.
|
||||
* ability to mark the input is finished: JxlDecoderCloseInput.
|
||||
* ability to request updates on different progressive events using JxlDecoderSetProgressiveDetail; currently supported events are kDC, kLastPasses and kPasses.
|
||||
* ability to specify desired intensity target using JxlDecoderSetDesiredIntensityTarget decoder API: new function JxlDecoderSetCoalesced to allow decoding non-coalesced (unblended) frames, e.g.
|
||||
layers of a composite still image or the cropped frames of a recompressed GIF/APNG.
|
||||
* new function JxlDecoderSetUnpremultiplyAlpha to set preference for getting an associated alpha channel with premultiplied or unpremultiplied colors.
|
||||
* field added to JxlFrameHeader: a JxlLayerInfo struct that contains crop dimensions and offsets and blending information for the non-coalesced case.
|
||||
* new function JxlDecoderGetExtraChannelBlendInfo to get the blending information for extra channels in the non-coalesced case.
|
||||
* new function JxlDecoderSetMultithreadedImageOutCallback, allowing output callbacks to receive more information about the number of threads on which they are running.
|
||||
* new function JxlDecoderSkipCurrentFrame to skip processing the current frame after a progressive detail is reached.
|
||||
* new function JxlDecoderGetIntendedDownsamplingRatio to get the intended downsampling ratio of progressive steps, based on the information in the frame header.
|
||||
* new function JxlDecoderSetRenderSpotcolors to allow disabling rendering of spot colors.
|
||||
* add two fields to JXLBasicInfo: intrinsic_xsize and intrinsic_ysize to signal the intrinsic size.
|
||||
- encoder API:
|
||||
* ability to add metadata boxes, added new functions JxlEncoderAddBox, JxlEncoderUseBoxes, JxlEncoderCloseBoxes and JxlEncoderCloseFrames.
|
||||
* added ability to set several encoder options / extra fields to frames using JxlEncoderSetFrameName, JxlEncoderFrameSettingsSetOption, JxlEncoderFrameSettingsSetFloatOption.
|
||||
* added ability to check required codestream compatibility level and force specified using JxlEncoderGetRequiredCodestreamLevel and JxlEncoderSetCodestreamLevel.
|
||||
* added ability to force emitting box-based container format using JxlEncoderUseContainer.
|
||||
* added ability to store JPEG metadata for lossless reconstruction using JxlEncoderStoreJPEGMetadata encoder API: new functions JxlEncoderSetFrameHeader and JxlEncoderSetExtraChannelBlendInfo to set
|
||||
animation and blending parameters of the frame, and JxlEncoderInitFrameHeader and JxlEncoderInitBlendInfo to initialize the structs to set.
|
||||
* ability to encode arbitrary extra channels: JxlEncoderInitExtraChannelInfo, JxlEncoderSetExtraChannelInfo, JxlEncoderSetExtraChannelName and JxlEncoderSetExtraChannelBuffer.
|
||||
* ability to plug custom CMS implementation using JxlEncoderSetCms(JxlEncoder* enc, JxlCmsInterface cms) encoder API: added JxlEncoderGetError to retrieve last encoder error.
|
||||
* add two fields to JXLBasicInfo: intrinsic_xsize and intrinsic_ysize to signal the intrinsic size.
|
||||
- Changed:
|
||||
* decoder API: using JxlDecoderCloseInput at 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: JxlEncoderCloseInput now closes both frames and boxes input.
|
||||
* CLI: cjxl and djxl have been reimplemented on the base of public decoder and encoder API; dropped dependency on gflags for argument parsing.
|
||||
- Deprecated:
|
||||
- decoder API:
|
||||
* JXL_DEC_EXTENSIONS event: use JXL_DEC_BASIC_INFO
|
||||
* pixel types JXL_TYPE_BOOLEAN and JXL_TYPE_UINT32: consider using JXL_TYPE_UINT8 and JXL_TYPE_FLOAT correspondingly.
|
||||
* pixel format parameter for JxlDecoderGetColorAsEncodedProfile and JxlDecoderGetICCProfileSize: pass NULL.
|
||||
* JxlDecoderDefaultPixelFormat
|
||||
- encoder API:
|
||||
* JxlEncoderOptions: use JxlEncoderFrameSettings instead.
|
||||
* JxlEncoderOptionsCreate: use JxlEncoderFrameSettingsCreate instead.
|
||||
* JxlEncoderOptionsSetDistance: use JxlEncoderSetFrameDistance instead.
|
||||
* JxlEncoderOptionsSetLossless: use JxlEncoderSetFrameLossless instead.
|
||||
* JxlEncoderOptionsSetEffort: use JxlEncoderFrameSettingsSetOption(frame_settings, JXL_ENC_FRAME_SETTING_EFFORT, effort) instead.
|
||||
* JxlEncoderOptionsSetDecodingSpeed: use JxlEncoderFrameSettingsSetOption(frame_settings, JXL_ENC_FRAME_SETTING_DECODING_SPEED, tier) instead.
|
||||
* deprecated JXL_ENC_NOT_SUPPORTED, the encoder returns JXL_ENC_ERROR instead and there is no need to handle JXL_ENC_NOT_SUPPORTED.
|
||||
* pixel types JXL_TYPE_BOOLEAN and JXL_TYPE_UINT32: consider using JXL_TYPE_UINT8 and JXL_TYPE_FLOAT correspondingly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 23 14:33:36 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
4
libjxl.obsinfo
Normal file
4
libjxl.obsinfo
Normal file
@ -0,0 +1,4 @@
|
||||
name: libjxl
|
||||
version: 0.7.0
|
||||
mtime: 1663763390
|
||||
commit: f95da131cf7c7ccd4da256356fde2fec1fa23bb5
|
@ -18,15 +18,12 @@
|
||||
|
||||
Name: libjxl
|
||||
%define lname libjxl0_7
|
||||
Version: 0.7~779.f5d6e29
|
||||
Version: 0.7.0
|
||||
Release: 0
|
||||
Summary: JPEG XL reference implementation
|
||||
License: BSD-3-Clause
|
||||
URL: https://jpegxl.info/
|
||||
|
||||
#Git-Clone: https://github.com/libjxl/libjxl
|
||||
#Source: https://github.com/libjxl/libjxl/archive/refs/tags/v%version.tar.gz
|
||||
Source: %name-%version.tar.xz
|
||||
Source: %{name}-%{version}.tar
|
||||
BuildRequires: c++_compiler
|
||||
BuildRequires: cmake
|
||||
BuildRequires: pkg-config
|
||||
|
Loading…
Reference in New Issue
Block a user