X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Faf_stereotools.c;h=a22efb02eae7e010da49317591e86f01f081372f;hb=2ee51ef259e65e881b36aba7e6f9402b525a5ce0;hp=e19ada47d0630b8fe2fb617e9a655ab976a92c6c;hpb=8fe1433ad4f866df58c0862f0d13535c96e90d63;p=ffmpeg diff --git a/libavfilter/af_stereotools.c b/libavfilter/af_stereotools.c index e19ada47d06..a22efb02eae 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;