Browse Source

avfilter/vaf_spectrumsynth: Move "break" up

Fixes CID1351347

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer 9 years ago
parent
commit
e7786959cc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vaf_spectrumsynth.c

+ 1
- 1
libavfilter/vaf_spectrumsynth.c View File

@@ -442,11 +442,11 @@ static int try_push_frames(AVFilterContext *ctx)
case SCROLL: case SCROLL:
s->xpos = s->xend - 1; s->xpos = s->xend - 1;
ret = try_push_frame(ctx, s->xpos); ret = try_push_frame(ctx, s->xpos);
break;
case RSCROLL: case RSCROLL:
s->xpos = 0; s->xpos = 0;
ret = try_push_frame(ctx, s->xpos); ret = try_push_frame(ctx, s->xpos);
break; break;
break;
case FULLFRAME: case FULLFRAME:
for (x = 0; x < s->xend; x++) { for (x = 0; x < s->xend; x++) {
ret = try_push_frame(ctx, x); ret = try_push_frame(ctx, x);


Loading…
Cancel
Save