summaryrefslogtreecommitdiff
path: root/libavfilter/vf_telecine.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-04-03 17:55:18 +0000
committerPaul B Mahol <onemda@gmail.com>2015-04-08 13:05:06 +0000
commita0854c084ea1541591c54aaab1f993ebaf92ffaf (patch)
tree1ebc69023a4f7eb471ce60ff4784b146a8b9973f /libavfilter/vf_telecine.c
parent21e034a47a2b407f0896114a995fd507f0f5230f (diff)
downloadffmpeg-a0854c084ea1541591c54aaab1f993ebaf92ffaf.tar.gz
avfilter: handle error in query_formats() in bunch of filters
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_telecine.c')
-rw-r--r--libavfilter/vf_telecine.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c
index 93e5aa9e44..26f0ef8abc 100644
--- a/libavfilter/vf_telecine.c
+++ b/libavfilter/vf_telecine.c
@@ -112,8 +112,7 @@ static int query_formats(AVFilterContext *ctx)
ff_add_format(&pix_fmts, fmt);
}
- ff_set_common_formats(ctx, pix_fmts);
- return 0;
+ return ff_set_common_formats(ctx, pix_fmts);
}
static int config_input(AVFilterLink *inlink)