From 664ac7c5e2e9b2b001be6124b90b398861c773af Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 21 Jun 2017 19:20:25 +0200 Subject: [PATCH] avfilter/af_stereotools: add forgotten break Signed-off-by: Paul B Mahol --- libavfilter/af_stereotools.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/af_stereotools.c b/libavfilter/af_stereotools.c index cd2de869b9..a5e0b427f1 100644 --- a/libavfilter/af_stereotools.c +++ b/libavfilter/af_stereotools.c @@ -248,6 +248,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) r = m * mlev * FFMIN(1., mpan) - S * slev * FFMIN(1., sbal); L = l; R = r; + break; case 7: l = L * mlev * FFMIN(1., 2. - mpan) + R * slev * FFMIN(1., 2. - sbal); L = l;