Commit 96fc1f07 authored by Clément Bœsch's avatar Clément Bœsch

volume: remove duplicated condition.

parent 35da8556
...@@ -48,9 +48,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) ...@@ -48,9 +48,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
if (*tail) { if (*tail) {
if (!strcmp(tail, "dB")) { if (!strcmp(tail, "dB")) {
/* consider the argument an adjustement in decibels */ /* consider the argument an adjustement in decibels */
if (!strcmp(tail, "dB")) { d = pow(10, d/20);
d = pow(10,d/20);
}
} else { } else {
/* parse the argument as an expression */ /* parse the argument as an expression */
ret = av_expr_parse_and_eval(&d, args, NULL, NULL, ret = av_expr_parse_and_eval(&d, args, NULL, NULL,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment