Re: [FFmpeg-devel] [PATCH v5 2/4] avcodec/jpegxl_parser: add JPEG XL parser

2023-07-23 Thread Leo Izen
On 7/23/23 06:55, Andreas Rheinhardt wrote: Leo Izen: Add a parser to libavcodec for AV_CODEC_ID_JPEGXL. It doesn't find the end of the stream in order to packetize the codec, but it does look at the headers to set preliminary information like dimensions and pixel format. Note that much of

Re: [FFmpeg-devel] [PATCH v5 2/4] avcodec/jpegxl_parser: add JPEG XL parser

2023-07-23 Thread Andreas Rheinhardt
Leo Izen: > Add a parser to libavcodec for AV_CODEC_ID_JPEGXL. It doesn't find the > end of the stream in order to packetize the codec, but it does look at > the headers to set preliminary information like dimensions and pixel > format. > > Note that much of this code is duplicated from

[FFmpeg-devel] [PATCH v5 2/4] avcodec/jpegxl_parser: add JPEG XL parser

2023-07-10 Thread Leo Izen
Add a parser to libavcodec for AV_CODEC_ID_JPEGXL. It doesn't find the end of the stream in order to packetize the codec, but it does look at the headers to set preliminary information like dimensions and pixel format. Note that much of this code is duplicated from avformat/jpegxl_probe.c, but