Commit e7786959 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vaf_spectrumsynth: Move "break" up

Fixes CID1351347
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 6bdeac24
...@@ -442,11 +442,11 @@ static int try_push_frames(AVFilterContext *ctx) ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment