projects
/
platform
/
upstream
/
gst-plugins-good.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gst-plugins-good.git]
/
gst
/
law
/
mulaw-conversion.h
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