Home
last modified time | relevance | path

Searched refs:ulaw (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/g711/
Dg711.h243 static __inline int16_t ulaw_to_linear(uint8_t ulaw) { in ulaw_to_linear() argument
247 ulaw = ~ulaw; in ulaw_to_linear()
252 t = (((ulaw & 0x0F) << 3) + ULAW_BIAS) << (((int) ulaw & 0x70) >> 4); in ulaw_to_linear()
253 return (int16_t)((ulaw & 0x80) ? (ULAW_BIAS - t) : (t - ULAW_BIAS)); in ulaw_to_linear()
338 uint8_t ulaw_to_alaw(uint8_t ulaw);
Dg711.c73 uint8_t ulaw_to_alaw(uint8_t ulaw) { return ulaw_to_alaw_table[ulaw]; } in ulaw_to_alaw() argument
/external/python/cpython2/Misc/
DNEWS2282 Fixed writing 'ulaw' (lower case) compressed AIFC files.
2601 The aifc module now accepts lower case of names of the 'ulaw' and 'alaw'
DHISTORY1367 In addition, the existing ulaw code was updated.