From c28ea94cd7b432e23043662cff6dcbcb450984b2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 5 Nov 2011 05:31:03 +0100 Subject: af_volume: exp10() is a GNU extension. Signed-off-by: Michael Niedermayer --- libavfilter/af_volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c index 74e0bbb36b..9f45525f61 100644 --- a/libavfilter/af_volume.c +++ b/libavfilter/af_volume.c @@ -49,7 +49,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) if (!strcmp(tail, "dB")) { /* consider the argument an adjustement in decibels */ if (!strcmp(tail, "dB")) { - d = exp10(d/20); + d = pow(10,d/20); } } else { /* parse the argument as an expression */ -- cgit v1.2.3