Skip to content

Commit

Permalink
avfilter/af_stereotools: add forgotten break
Browse files Browse the repository at this point in the history
Signed-off-by: Paul B Mahol <[email protected]>
  • Loading branch information
richardpl committed Jun 21, 2017
1 parent e639d09 commit 664ac7c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libavfilter/af_stereotools.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 664ac7c

Please sign in to comment.