mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_separatefields: fix ;;
Found-by: llogan Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
07704c61dd
commit
74561680cd
|
@ -33,7 +33,7 @@ static int config_props_output(AVFilterLink *outlink)
|
|||
SeparateFieldsContext *sf = ctx->priv;
|
||||
AVFilterLink *inlink = ctx->inputs[0];
|
||||
|
||||
sf->nb_planes = av_pix_fmt_count_planes(inlink->format);;
|
||||
sf->nb_planes = av_pix_fmt_count_planes(inlink->format);
|
||||
|
||||
if (inlink->h & 1) {
|
||||
av_log(ctx, AV_LOG_ERROR, "height must be even\n");
|
||||
|
|
Loading…
Reference in New Issue