diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-04-29 14:47:01 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-04-29 14:47:01 -0400 |
| commit | 23b5f3e5e1ce19d6d872afe737e8924488d7d58b (patch) | |
| tree | 93894830a8b1a858d1f4fbeb748c33c781f8d761 | |
| parent | 4928810354e0d467c5c52221b21cf64a264946b3 (diff) | |
| download | rockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.zip rockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.tar.gz rockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.tar.bz2 rockbox-23b5f3e5e1ce19d6d872afe737e8924488d7d58b.tar.xz | |
Make compressor_update static.
Change-Id: Ic29242b4c397e82c2bee3808492a2d0a9ffebbe6
| -rw-r--r-- | lib/rbcodec/dsp/compressor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/dsp/compressor.c b/lib/rbcodec/dsp/compressor.c index 1816bfe..8441cd6 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 */ /** COMPRESSOR UPDATE * Called via the menu system to configure the compressor process */ -bool compressor_update(const struct compressor_settings *settings) +static bool compressor_update(const struct compressor_settings *settings) { /* make settings values useful */ int threshold = settings->threshold; |