summaryrefslogtreecommitdiff
path: root/main/dsp.c
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2015-03-28 12:20:26 +0000
committerMatthew Jordan <mjordan@digium.com>2015-03-28 12:20:26 +0000
commitd6173cd1d06c2278636a5144ebb81a156a62b313 (patch)
tree78cddda3041ab8fb50d0cc6226e7f322c7ce1c17 /main/dsp.c
parentb56592e3ae92b4220821538aa888e8977902e549 (diff)
clang compiler warnings: Fix -Wunused-function; make inline function static
This patch fixes clang compilers warnings for unused functions. Specifically: * channels/chan_iax2: removed user_ref function * main/dsp.c: removed goertzel_update function * main/config.c: made variable_list_switch static Review: https://reviewboard.asterisk.org/r/4527 ASTERISK-24917 Reported by: dkdegroot patches: rb4527.patch submitted by dkdegroot (License 6600) ........ Merged revisions 433678 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 433680 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@433681 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/dsp.c')
-rw-r--r--main/dsp.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/main/dsp.c b/main/dsp.c
index 3a5d1221a..a329dbb6b 100644
--- a/main/dsp.c
+++ b/main/dsp.c
@@ -339,16 +339,6 @@ static inline void goertzel_sample(goertzel_state_t *s, short sample)
}
}
-static inline void goertzel_update(goertzel_state_t *s, short *samps, int count)
-{
- int i;
-
- for (i = 0; i < count; i++) {
- goertzel_sample(s, samps[i]);
- }
-}
-
-
static inline float goertzel_result(goertzel_state_t *s)
{
goertzel_result_t r;