aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/G711a/G711adecode.h
diff options
context:
space:
mode:
Diffstat (limited to 'codecs/G711a/G711adecode.h')
-rw-r--r--codecs/G711a/G711adecode.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/codecs/G711a/G711adecode.h b/codecs/G711a/G711adecode.h
index 4acdca31bd..b7ccd3ffaa 100644
--- a/codecs/G711a/G711adecode.h
+++ b/codecs/G711a/G711adecode.h
@@ -25,7 +25,24 @@
#ifndef __CODECS_G711ADECODE_H__
#define __CODECS_G711ADECODE_H__
-int
-decodeG711a(void *input, int inputSizeBytes, void *output, int *outputSizeBytes);
+void *codec_g711a_init(void);
+void codec_g711a_release(void *ctx);
+int codec_g711a_get_channels(void *ctx);
+int codec_g711a_get_frequency(void *ctx);
+int codec_g711a_decode(void *ctx, const void *input, int inputSizeBytes, void *output,
+ int *outputSizeBytes);
#endif /* G711adecode.h */
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */