diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-13 18:16:19 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-13 18:16:19 +0200 |
commit | 365083556ea7773604cca90dce729f988899a830 (patch) | |
tree | 3b337df1cfb60dac37d40d972e1a1a796002901a | |
parent | 0749082eb93ea02fa4b770da86597450cec84054 (diff) | |
download | ffmpeg-365083556ea7773604cca90dce729f988899a830.tar.gz |
avfilter/vf_bm3d: fix possible infinite loop
-rw-r--r-- | libavfilter/vf_bm3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_bm3d.c b/libavfilter/vf_bm3d.c index 04cc19ccee..3196b63884 100644 --- a/libavfilter/vf_bm3d.c +++ b/libavfilter/vf_bm3d.c @@ -748,7 +748,7 @@ static int filter_frame(AVFilterContext *ctx, AVFrame **out, AVFrame *in, AVFram av_frame_copy_props(*out, in); for (p = 0; p < s->nb_planes; p++) { - const int nb_jobs = FFMIN(s->nb_threads, s->planeheight[p] / s->block_step); + const int nb_jobs = FFMIN(s->nb_threads, s->planeheight[p] / s->block_size); ThreadData td; if (!((1 << p) & s->planes) || ctx->is_disabled) { |