avfilter/vf_waveform: abort early if there are no components to show

This commit is contained in:
Paul B Mahol 2018-10-24 18:30:38 +02:00
parent d94d252731
commit 22d6d91649

View File

@ -3025,6 +3025,9 @@ static int config_output(AVFilterLink *outlink)
comp++;
}
s->acomp = comp;
if (s->acomp == 0)
return AVERROR(EINVAL);
s->odesc = av_pix_fmt_desc_get(outlink->format);
s->dcomp = s->odesc->nb_components;