Searched refs:ulawbyte (Results 1 – 1 of 1) sorted by relevance
97 static INT_PCM ulaw2pcm (UCHAR ulawbyte);331 static INT_PCM ulaw2pcm (UCHAR ulawbyte) in ulaw2pcm() argument336 ulawbyte = (UCHAR)~ulawbyte ; in ulaw2pcm()337 sign = (ulawbyte & 0x80) ; in ulaw2pcm()338 exponent = (ulawbyte >> 4) & 0x07 ; in ulaw2pcm()339 mantissa = ulawbyte & 0x0F ; in ulaw2pcm()