Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-17 02:37:58 +0400
committerClément Bœsch <ubitux@gmail.com>2013-03-17 02:37:58 +0400
commit8d84e90c9bf1a06ce107aedbf6db651fa276d6e5 (patch)
treea1b24c56410bf9d7ad8d17e2dbbd398d042ebbe3 /libavfilter/vf_delogo.c
parentc9a51c29fc9d9cbb32fd4e693e760adc1f63b288 (diff)
lavfi/delogo: 10l forgotten trailing NULL in shorthand.
Regression since de3e0ab3.
Diffstat (limited to 'libavfilter/vf_delogo.c')
-rw-r--r--libavfilter/vf_delogo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c
index 946008e614..4c0670d136 100644
--- a/libavfilter/vf_delogo.c
+++ b/libavfilter/vf_delogo.c
@@ -172,7 +172,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
{
DelogoContext *delogo = ctx->priv;
int ret = 0;
- static const char *shorthand[] = { "x", "y", "w", "h", "band" };
+ static const char *shorthand[] = { "x", "y", "w", "h", "band", NULL };
delogo->class = &delogo_class;
av_opt_set_defaults(delogo);