summaryrefslogtreecommitdiff
path: root/libavfilter/af_stereotools.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_stereotools.c')
-rw-r--r--libavfilter/af_stereotools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_stereotools.c b/libavfilter/af_stereotools.c
index e19ada47d0..a22efb02ea 100644
--- a/libavfilter/af_stereotools.c
+++ b/libavfilter/af_stereotools.c
@@ -146,7 +146,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
double *buffer = s->buffer;
AVFrame *out;
double *dst;
- int nbuf = inlink->sample_rate * (FFABS(delay) / 1000.);
+ int nbuf = inlink->sample_rate * (fabs(delay) / 1000.);
int n;
nbuf -= nbuf % 2;