mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avfilter/vf_dctdnoiz: Check threads
Fixes: floating point division by 0 Fixes: Ticket 8269 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 4a3917c02c428b11128ac3d4a01b780ea44aa53c) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ad92dec581
commit
359e106362
@ -563,6 +563,9 @@ static int config_input(AVFilterLink *inlink)
|
||||
inlink->h - s->pr_height);
|
||||
|
||||
max_slice_h = s->pr_height / ((s->bsize - 1) * 2);
|
||||
if (max_slice_h == 0)
|
||||
return AVERROR(EINVAL);
|
||||
|
||||
s->nb_threads = FFMIN3(MAX_THREADS, ff_filter_get_nb_threads(ctx), max_slice_h);
|
||||
av_log(ctx, AV_LOG_DEBUG, "threads: [max=%d hmax=%d user=%d] => %d\n",
|
||||
MAX_THREADS, max_slice_h, ff_filter_get_nb_threads(ctx), s->nb_threads);
|
||||
|
Loading…
x
Reference in New Issue
Block a user