gstreamer/gst/law/mulaw-conversion.h
Tim-Philipp Müller ab3379a6ac gst/law/: Compulsive clean-ups: use boilerplate macros, add debug categories, fix up things to conform to symbol nome...
Original commit message from CVS:
* gst/law/alaw-decode.c:
* gst/law/alaw-decode.h:
* gst/law/alaw-encode.c:
* gst/law/alaw-encode.h:
* gst/law/alaw.c:
* gst/law/mulaw-conversion.h:
Compulsive clean-ups: use boilerplate macros, add debug
categories, fix up things to conform to symbol nomenklatura,
etc.
2007-09-25 17:18:34 +00:00

13 lines
240 B
C

#ifndef _GST_ULAW_CONVERSION_H
#define _GST_ULAW_CONVERSION_H
#include <glib.h>
void
mulaw_encode(gint16* in, guint8* out, gint numsamples);
void
mulaw_decode(guint8* in,gint16* out,gint numsamples);
#endif /* _GST_ULAW_CONVERSION_H */