summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-04-29 14:47:01 -0400
committerMichael Sevakis <jethead71@rockbox.org>2012-04-29 14:47:01 -0400
commit23b5f3e5e1ce19d6d872afe737e8924488d7d58b (patch)
tree93894830a8b1a858d1f4fbeb748c33c781f8d761
parent4928810354e0d467c5c52221b21cf64a264946b3 (diff)
downloadrockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.tar.gz
rockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.zip
Make compressor_update static.
Change-Id: Ic29242b4c397e82c2bee3808492a2d0a9ffebbe6
-rw-r--r--lib/rbcodec/dsp/compressor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/dsp/compressor.c b/lib/rbcodec/dsp/compressor.c
index 1816bfef9c..8441cd6457 100644
--- a/lib/rbcodec/dsp/compressor.c
+++ b/lib/rbcodec/dsp/compressor.c
@@ -42,7 +42,7 @@ static int32_t release_gain IBSS_ATTR; /* S7.24 format */
42 42
43/** COMPRESSOR UPDATE 43/** COMPRESSOR UPDATE
44 * Called via the menu system to configure the compressor process */ 44 * Called via the menu system to configure the compressor process */
45bool compressor_update(const struct compressor_settings *settings) 45static bool compressor_update(const struct compressor_settings *settings)
46{ 46{
47 /* make settings values useful */ 47 /* make settings values useful */
48 int threshold = settings->threshold; 48 int threshold = settings->threshold;