mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
13 lines
197 B
C
13 lines
197 B
C
|
#ifndef _GST_ALAW_CONVERSION_H
|
||
|
#define _GST_ALAW_CONVERSION_H
|
||
|
|
||
|
#include <glib.h>
|
||
|
|
||
|
void
|
||
|
isdn_audio_ulaw2alaw(guint8 *buff, gulong len);
|
||
|
|
||
|
void
|
||
|
isdn_audio_alaw2ulaw(guint8 *buff, gulong len);
|
||
|
|
||
|
#endif
|