Commit 664ac7c5 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_stereotools: add forgotten break

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent e639d091
......@@ -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;
......
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