summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-06-23 15:11:23 +0200
committerwm4 <wm4@nowhere>2015-06-23 15:11:23 +0200
commit62269871aa7b52fa08ca08ea91b76ecfd61166e4 (patch)
tree0ddcd42c29167b71c14dda0c082f00fad304dd33 /audio/filter/af.h
parent4c6a600943cf0bc7ef5c51816b471cb688d7cd61 (diff)
downloadmpv-62269871aa7b52fa08ca08ea91b76ecfd61166e4.tar.bz2
mpv-62269871aa7b52fa08ca08ea91b76ecfd61166e4.tar.xz
af: move af_from_dB() function to af_volume.c
And also simplify it (it certainly had the most awkward API you could think of for such a simple function).
Diffstat (limited to 'audio/filter/af.h')
-rw-r--r--audio/filter/af.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/audio/filter/af.h b/audio/filter/af.h
index e8beac9631..88cbbc0119 100644
--- a/audio/filter/af.h
+++ b/audio/filter/af.h
@@ -157,7 +157,6 @@ double af_calc_delay(struct af_stream *s);
int af_test_output(struct af_instance *af, struct mp_audio *out);
-int af_from_dB(int n, float *in, float *out, float k, float mi, float ma);
int af_from_ms(int n, float *in, int *out, int rate, float mi, float ma);
float af_softclip(float a);