Browse Source

avfilter/vf_format: fix duplicate ;

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
a37f2cc579
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_format.c

+ 1
- 1
libavfilter/vf_format.c View File

@@ -92,7 +92,7 @@ static av_cold int init(AVFilterContext *ctx)
if (!strcmp(ctx->filter->name, "noformat")) {
const AVPixFmtDescriptor *desc = NULL;
enum AVPixelFormat *formats_allowed;
int nb_formats_lavu = 0, nb_formats_allowed = 0;;
int nb_formats_lavu = 0, nb_formats_allowed = 0;

/* count the formats known to lavu */
while ((desc = av_pix_fmt_desc_next(desc)))


Loading…
Cancel
Save