]> git.sesse.net Git - ffmpeg/commit
lavc/pngdec: always create a copy for APNG_DISPOSE_OP_BACKGROUND
authorAnton Khirnov <anton@khirnov.net>
Thu, 8 Apr 2021 08:46:54 +0000 (10:46 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 8 Apr 2021 20:40:26 +0000 (22:40 +0200)
commitb593abda6c642cb0c3959752dd235c2faf66837f
treefd73e924aff914e275fdffe44772297288b85c04
parentcaaf4633117f77a545975dac18e85b8fcdbc9ce7
lavc/pngdec: always create a copy for APNG_DISPOSE_OP_BACKGROUND

Calling av_frame_make_writable() from decoders is tricky, especially
when frame threading is used. It is much simpler and safer to just make
a private copy of the frame.
This is not expected to have a major performance impact, since
APNG_DISPOSE_OP_BACKGROUND is not used often and
av_frame_make_writable() would typically make a copy anyway.

Found-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/pngdec.c