From: Limin Wang Date: Sat, 13 Mar 2021 02:34:12 +0000 (+0800) Subject: avfilter/vf_ssim: remove unnecessary check X-Git-Url: https://git.sesse.net/?p=ffmpeg;a=commitdiff_plain;h=fd3dabe68e14cebb3664b155b9e072ad60c11e91 avfilter/vf_ssim: remove unnecessary check For the pointer have been checked in the previous few lines of code Signed-off-by: Limin Wang --- diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c index e004b36e76d..c6e4fe286a5 100644 --- a/libavfilter/vf_ssim.c +++ b/libavfilter/vf_ssim.c @@ -496,7 +496,7 @@ static int config_input_ref(AVFilterLink *inlink) if (!s->score) return AVERROR(ENOMEM); - for (int t = 0; t < s->nb_threads && s->score; t++) { + for (int t = 0; t < s->nb_threads; t++) { s->score[t] = av_calloc(s->nb_components, sizeof(*s->score[0])); if (!s->score[t]) return AVERROR(ENOMEM);