1 #ifndef _GST_ULAW_CONVERSION_H
2 #define _GST_ULAW_CONVERSION_H
3 
4 #include <glib.h>
5 
6 void
7 mulaw_encode(gint16* in, guint8* out, gint numsamples);
8 void
9 mulaw_decode(guint8* in,gint16* out,gint numsamples);
10 
11 #endif /* _GST_ULAW_CONVERSION_H */
12 
13