pcm - u-law encode/decode

Dependents:   PhonePlatform

ulaw.h

Committer:
okini3939
Date:
2011-01-06
Revision:
3:64e448653443
Parent:
0:89894f20f372

File content as of revision 3:64e448653443:

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