[FFmpeg-cvslog] avfilter/vf_separatefields: fix ;;
Michael Niedermayer
git at videolan.org
Sat Jul 20 00:50:32 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Jul 20 00:44:09 2013 +0200| [74561680cd01f36a2b225efb529bcd5729b65d32] | committer: Michael Niedermayer
avfilter/vf_separatefields: fix ;;
Found-by: llogan
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=74561680cd01f36a2b225efb529bcd5729b65d32
---
libavfilter/vf_separatefields.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_separatefields.c b/libavfilter/vf_separatefields.c
index c91c0c1..d9c4839 100644
--- a/libavfilter/vf_separatefields.c
+++ b/libavfilter/vf_separatefields.c
@@ -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");
More information about the ffmpeg-cvslog
mailing list