pcm - u-law encode/decode

Dependents:   PhonePlatform

Revision:
0:89894f20f372
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ulaw.h	Thu Nov 11 16:13:47 2010 +0000
@@ -0,0 +1,15 @@
+/*
+ * mbed library for ulaw
+ * Copyright (c) 2010 Hiroshi Suga
+ * Released under the MIT License: http://mbed.org/license/mit
+ */
+
+#ifndef ulaw_H
+#define ulaw_H
+
+#include "mbed.h"
+
+char pcm2ulaw (int);
+int ulaw2pcm (char);
+
+#endif