mirror of https://github.com/FFmpeg/FFmpeg.git
When slice_h is rounded up due to chroma subsampling, there's a risk that jobnr * slice_h exceeds frame->height. Prior topull/273/heada638e9184d
, this wasn't an issue for the last slice of a frame, since slice_end was set to frame->height for the last slice.a638e9184d
tried to fix the case where other slices than the last one would exceed frame->height (which can happen where the number of slices/threads is very large compared to the frame height). However, the fix ina638e9184d
instead broke other cases, where slice_h * nb_threads < frame->height. Therefore, make sure the last slice always ends at frame->height. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
parent
d00a0d8e84
commit
8f5de34c8f
1 changed files with 2 additions and 1 deletions
Loading…
Reference in new issue