gst_plugins_good/gst/law/mulaw-conversion.h
changeset 26 69c7080681bf
parent 24 bc39b352897e
child 28 4ed5253bb6ba
equal deleted inserted replaced
24:bc39b352897e 26:69c7080681bf
     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