mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
ab3379a6ac
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.
12 lines
240 B
C
12 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 */
|
|
|