Re: [FFmpeg-devel] [PATCH v4 1/4] avcodec/libjxldec: use internal AVFrame as buffered space

2023-06-27 Thread Andreas Rheinhardt
Leo Izen: > Before this commit, the decoder erroneously assumes that the AVFrame > passed to the receive_frame is the same one each time. Now it keeps an > internal AVFrame to write into, and copies it over when it's done. > --- > libavcodec/libjxldec.c | 38 ++

[FFmpeg-devel] [PATCH v4 1/4] avcodec/libjxldec: use internal AVFrame as buffered space

2023-06-26 Thread Leo Izen
Before this commit, the decoder erroneously assumes that the AVFrame passed to the receive_frame is the same one each time. Now it keeps an internal AVFrame to write into, and copies it over when it's done. --- libavcodec/libjxldec.c | 38 ++ 1 file changed, 22