aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-02 07:18:16 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-02 07:18:16 +0000
commit464541060295fe6aed95adf3fb4a2bf187aa24f4 (patch)
tree763d96cab82601d6bfec0c4a4b4c01086fb1b72d /codecs
parent93ce482790a9f6637d93933d44a37d9cb2e4b6ba (diff)
Squelch compiler warnings, and get rid of unused variables and
declarations. Define functions with no arguments as such. Clean up white space. Declare tables in the codec .h files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19118 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'codecs')
-rw-r--r--codecs/G711a/G711adecode.h2
-rw-r--r--codecs/G711u/G711udecode.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/codecs/G711a/G711adecode.h b/codecs/G711a/G711adecode.h
index 779203a212..d680731096 100644
--- a/codecs/G711a/G711adecode.h
+++ b/codecs/G711a/G711adecode.h
@@ -1,3 +1,3 @@
-
+int
decodeG711a(void *input, int inputSizeBytes, void *output, int *outputSizeBytes);
diff --git a/codecs/G711u/G711udecode.h b/codecs/G711u/G711udecode.h
index 8c808c500a..8c70f121f9 100644
--- a/codecs/G711u/G711udecode.h
+++ b/codecs/G711u/G711udecode.h
@@ -1,4 +1,4 @@
-
+int
decodeG711u(void *input, int inputSizeBytes, void *output, int *outputSizeBytes);