pcm - u-law encode/decode

Dependents:   PhonePlatform

ulaw.h

Committer:
okini3939
Date:
2010-11-12
Revision:
1:546b99dee7bb
Parent:
0:89894f20f372

File content as of revision 1:546b99dee7bb:

/*
 * 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