mirror of https://github.com/FFmpeg/FFmpeg.git
draw_slice() checks that the fade factor is < 65536 and only calculates the fade if so. But the fade factor is clipped in end_frame() by av_clip_uint16() to 65535, so the fade is calculated for every frame. This patch alters the check so that it compares with < 65535 (UINT16_MAX). Signed-off-by: Anton Khirnov <anton@khirnov.net>pull/2/head
parent
9026b27e84
commit
b04d1abb40
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue