pcm - u-law encode/decode

Dependents:   PhonePlatform

Committer:
okini3939
Date:
Thu Jan 06 16:07:42 2011 +0000
Revision:
3:64e448653443
Parent:
0:89894f20f372

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
okini3939 0:89894f20f372 1 /*
okini3939 0:89894f20f372 2 * mbed library for ulaw
okini3939 0:89894f20f372 3 * Copyright (c) 2010 Hiroshi Suga
okini3939 0:89894f20f372 4 * Released under the MIT License: http://mbed.org/license/mit
okini3939 0:89894f20f372 5 */
okini3939 0:89894f20f372 6
okini3939 0:89894f20f372 7 #ifndef ulaw_H
okini3939 0:89894f20f372 8 #define ulaw_H
okini3939 0:89894f20f372 9
okini3939 0:89894f20f372 10 #include "mbed.h"
okini3939 0:89894f20f372 11
okini3939 0:89894f20f372 12 char pcm2ulaw (int);
okini3939 0:89894f20f372 13 int ulaw2pcm (char);
okini3939 0:89894f20f372 14
okini3939 0:89894f20f372 15 #endif