Re: [FFmpeg-devel] [PATCH v12 2/4] avcodec/libjxl: add Jpeg XL decoding via libjxl

2022-04-05 Thread Leo Izen
On 4/5/22 06:50, Anton Khirnov wrote: Quoting Leo Izen (2022-04-02 22:12:08) +case JXL_DEC_COLOR_ENCODING: +av_log(avctx, AV_LOG_DEBUG, "COLOR_ENCODING event emitted\n"); +jret = JxlDecoderGetICCProfileSize(ctx->decoder, &ctx->jxl_pixfmt, JXL_COLOR_PROFILE_TARGET

Re: [FFmpeg-devel] [PATCH v12 2/4] avcodec/libjxl: add Jpeg XL decoding via libjxl

2022-04-05 Thread Anton Khirnov
Quoting Leo Izen (2022-04-02 22:12:08) > +case JXL_DEC_COLOR_ENCODING: > +av_log(avctx, AV_LOG_DEBUG, "COLOR_ENCODING event emitted\n"); > +jret = JxlDecoderGetICCProfileSize(ctx->decoder, > &ctx->jxl_pixfmt, JXL_COLOR_PROFILE_TARGET_ORIGINAL, &ctx->iccp_len); Does

[FFmpeg-devel] [PATCH v12 2/4] avcodec/libjxl: add Jpeg XL decoding via libjxl

2022-04-02 Thread Leo Izen
This commit adds decoding support to libavcodec for Jpeg XL images via the external library libjxl. --- MAINTAINERS | 1 + configure | 5 + doc/general_contents.texi | 7 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c| 1 + libavcodec/libjxl.c