Home
last modified time | relevance | path

Searched refs:ulaw (Results 1 – 6 of 6) 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/NEWS.d/
D2.7.6rc1.rst195 now accepts lower case of names of the 'ulaw' and 'alaw' codecs.
D2.7.7rc1.rst724 Fixed writing to unseekable files in the aifc module. Fixed writing 'ulaw'
/external/python/cpython2/Misc/
DHISTORY1367 In addition, the existing ulaw code was updated.
/external/python/cpython3/Misc/
DHISTORY18751 In addition, the existing ulaw code was updated.