mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
185612aae3
Original commit message from CVS: Initial revision
10 lines
199 B
C
10 lines
199 B
C
#ifndef _GST_ULAWDECODE_H
|
|
#define _GST_ULAWDECODE_H
|
|
|
|
#include <glib.h>
|
|
|
|
void
|
|
mulaw_encode(gint16* in, guint8* out, gint numsamples);
|
|
void
|
|
mulaw_decode(guint8* in,gint16* out,gint numsamples);
|
|
#endif
|