avfilter/af_acrusher: Rename sun/sov

The names are hard to understand and also seem to break build on at least some solaris
versions

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/230/head
Michael Niedermayer 8 years ago
parent feb2ea6e09
commit e1ced854f2
  1. 10
      libavfilter/af_acrusher.c

@ -304,7 +304,7 @@ static int config_input(AVFilterLink *inlink)
{ {
AVFilterContext *ctx = inlink->dst; AVFilterContext *ctx = inlink->dst;
ACrusherContext *s = ctx->priv; ACrusherContext *s = ctx->priv;
double rad, sun, smax, sov; double rad, sunder, smax, sover;
s->idc = 1. / s->dc; s->idc = 1. / s->dc;
s->coeff = exp2(s->bits) - 1; s->coeff = exp2(s->bits) - 1;
@ -313,11 +313,11 @@ static int config_input(AVFilterLink *inlink)
s->round = round(s->samples); s->round = round(s->samples);
rad = s->lforange / 2.; rad = s->lforange / 2.;
s->smin = FFMAX(s->samples - rad, 1.); s->smin = FFMAX(s->samples - rad, 1.);
sun = s->samples - rad - s->smin; sunder = s->samples - rad - s->smin;
smax = FFMIN(s->samples + rad, 250.); smax = FFMIN(s->samples + rad, 250.);
sov = s->samples + rad - smax; sover = s->samples + rad - smax;
smax -= sun; smax -= sunder;
s->smin -= sov; s->smin -= sover;
s->sdiff = smax - s->smin; s->sdiff = smax - s->smin;
s->lfo.freq = s->lforate; s->lfo.freq = s->lforate;

Loading…
Cancel
Save