diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-12-29 19:49:48 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-12-29 19:49:48 +0000 |
| commit | 8e22f7f5b048cf7a46a3132cfbc9f2e38ccec076 (patch) | |
| tree | c03dc8a4e2178274d6583662a23a5675223a6a98 /apps/codecs/libwavpack | |
| parent | 6316e0ff53e0c8b3a1f2edf61fc54017eb997e20 (diff) | |
| download | rockbox-8e22f7f5b048cf7a46a3132cfbc9f2e38ccec076.zip rockbox-8e22f7f5b048cf7a46a3132cfbc9f2e38ccec076.tar.gz rockbox-8e22f7f5b048cf7a46a3132cfbc9f2e38ccec076.tar.bz2 rockbox-8e22f7f5b048cf7a46a3132cfbc9f2e38ccec076.tar.xz | |
Make local functions static in codecs, where possible.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19612 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwavpack')
| -rw-r--r-- | apps/codecs/libwavpack/words.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libwavpack/words.c b/apps/codecs/libwavpack/words.c index c7a8047..6da7161 100644 --- a/apps/codecs/libwavpack/words.c +++ b/apps/codecs/libwavpack/words.c @@ -253,7 +253,7 @@ int read_hybrid_profile (WavpackStream *wps, WavpackMetadata *wpmd) // currently implemented) this is calculated from the slow_level values and the // bitrate accumulators. Note that the bitrate accumulators can be changing. -void update_error_limit (struct words_data *w, uint32_t flags) +static void update_error_limit (struct words_data *w, uint32_t flags) { int bitrate_0 = (w->bitrate_acc [0] += w->bitrate_delta [0]) >> 16; |