af_volume: exp10() is a GNU extension.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3a1045dfda
commit
c28ea94cd7
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue