Re: [FFmpeg-devel] [PATCH v6 4/5] avformat/jpegxl: remove jpegxl_probe, instead call avcodec/jpegxl_parse

2023-08-02 Thread Andreas Rheinhardt
Leo Izen: > On 8/1/23 14:59, Michael Niedermayer wrote: >> On Tue, Aug 01, 2023 at 09:30:54AM -0400, Leo Izen wrote: >>> This prevents code duplication in the source form by calling the parse >>> code that was moved to avcodec last commit. The code will be duplicated >>> in binary form for shared

Re: [FFmpeg-devel] [PATCH v6 4/5] avformat/jpegxl: remove jpegxl_probe, instead call avcodec/jpegxl_parse

2023-08-02 Thread Leo Izen
On 8/1/23 14:59, Michael Niedermayer wrote: On Tue, Aug 01, 2023 at 09:30:54AM -0400, Leo Izen wrote: This prevents code duplication in the source form by calling the parse code that was moved to avcodec last commit. The code will be duplicated in binary form for shared builds (it's not that

Re: [FFmpeg-devel] [PATCH v6 4/5] avformat/jpegxl: remove jpegxl_probe, instead call avcodec/jpegxl_parse

2023-08-01 Thread Michael Niedermayer
On Tue, Aug 01, 2023 at 09:30:54AM -0400, Leo Izen wrote: > This prevents code duplication in the source form by calling the parse > code that was moved to avcodec last commit. The code will be duplicated > in binary form for shared builds (it's not that large), but for source > code it will only

[FFmpeg-devel] [PATCH v6 4/5] avformat/jpegxl: remove jpegxl_probe, instead call avcodec/jpegxl_parse

2023-08-01 Thread Leo Izen
This prevents code duplication in the source form by calling the parse code that was moved to avcodec last commit. The code will be duplicated in binary form for shared builds (it's not that large), but for source code it will only exist in one location now. Signed-off-by: Leo Izen ---