Browse Source

lavfi/delogo: 10l forgotten trailing NULL in shorthand.

Regression since de3e0ab3.
tags/n2.0
Clément Bœsch 12 years ago
parent
commit
8d84e90c9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_delogo.c

+ 1
- 1
libavfilter/vf_delogo.c View File

@@ -172,7 +172,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
{ {
DelogoContext *delogo = ctx->priv; DelogoContext *delogo = ctx->priv;
int ret = 0; 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; delogo->class = &delogo_class;
av_opt_set_defaults(delogo); av_opt_set_defaults(delogo);


Loading…
Cancel
Save