Re: [FFmpeg-devel] [PATCH v9 4/5] avformat/image2: add Jpeg XL as image2 format

2022-03-30 Thread Andreas Rheinhardt
Leo Izen: > On 3/24/22 14:38, Michael Niedermayer wrote: >> make -j32 tools/probetest && tools/probetest 256 4096 >> >> testing size=1 >> testing size=2 >> testing size=4 >> Assertion n>=0 && n<=32 failed at libavcodec/get_bits.h:549 >> Aborted (core dumped) > Not sure where this failure is coming

Re: [FFmpeg-devel] [PATCH v9 4/5] avformat/image2: add Jpeg XL as image2 format

2022-03-28 Thread Leo Izen
On 3/24/22 14:38, Michael Niedermayer wrote: make -j32 tools/probetest && tools/probetest 256 4096 testing size=1 testing size=2 testing size=4 Assertion n>=0 && n<=32 failed at libavcodec/get_bits.h:549 Aborted (core dumped) Not sure where this failure is coming from as I cannot reproduce it.

Re: [FFmpeg-devel] [PATCH v9 4/5] avformat/image2: add Jpeg XL as image2 format

2022-03-24 Thread Michael Niedermayer
On Wed, Mar 23, 2022 at 07:03:24AM -0400, Leo Izen wrote: > This commit adds support to libavformat for muxing > and demuxing Jpeg XL images as image2 streams. > --- > libavformat/allformats.c | 1 + > libavformat/img2.c | 1 + > libavformat/img2dec.c| 21 + > libav

[FFmpeg-devel] [PATCH v9 4/5] avformat/image2: add Jpeg XL as image2 format

2022-03-23 Thread Leo Izen
This commit adds support to libavformat for muxing and demuxing Jpeg XL images as image2 streams. --- libavformat/allformats.c | 1 + libavformat/img2.c | 1 + libavformat/img2dec.c| 21 + libavformat/img2enc.c| 6 +++--- libavformat/mov.c| 1 + libavf