summaryrefslogtreecommitdiffstats
path: root/libavfilter/vaf_spectrumsynth.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-02-07 22:26:13 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-02-07 23:03:33 +0100
commite7786959cc34d6cd5de0100ce102e21ebf99ab69 (patch)
treed56d3d28c806478874eef9ef7c99fec2c0dbb749 /libavfilter/vaf_spectrumsynth.c
parent6bdeac24e07e0547045f9b97510ede5e42dc3f96 (diff)
downloadffmpeg-streaming-e7786959cc34d6cd5de0100ce102e21ebf99ab69.zip
ffmpeg-streaming-e7786959cc34d6cd5de0100ce102e21ebf99ab69.tar.gz
avfilter/vaf_spectrumsynth: Move "break" up
Fixes CID1351347 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/vaf_spectrumsynth.c')
-rw-r--r--libavfilter/vaf_spectrumsynth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vaf_spectrumsynth.c b/libavfilter/vaf_spectrumsynth.c
index ab9a69b..ba14d8d 100644
--- a/libavfilter/vaf_spectrumsynth.c
+++ b/libavfilter/vaf_spectrumsynth.c
@@ -442,11 +442,11 @@ static int try_push_frames(AVFilterContext *ctx)
case SCROLL:
s->xpos = s->xend - 1;
ret = try_push_frame(ctx, s->xpos);
+ break;
case RSCROLL:
s->xpos = 0;
ret = try_push_frame(ctx, s->xpos);
break;
- break;
case FULLFRAME:
for (x = 0; x < s->xend; x++) {
ret = try_push_frame(ctx, x);
OpenPOWER on IntegriCloud