gst_plugins_good/gst/law/mulaw-conversion.h
changeset 27 d43ce56a1534
parent 23 29ecd5cb86b3
child 31 aec498aab1d3
equal deleted inserted replaced
23:29ecd5cb86b3 27:d43ce56a1534
     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