Searched refs:srcByte (Results 1 – 7 of 7) sorted by relevance
47 unsigned char srcByte = *src++; in decode() local48 if (srcByte == 0) in decode()50 if (srcByte <= ' ') in decode()52 if (srcByte < '+' || srcByte > 'z') in decode()54 signed char decoded = decodeData[srcByte - '+']; in decode()
113 IMADecoderADPCM(&pState->decoderL, (EAS_U8)(pState->srcByte >> 4)); in IMADecoderSample()183 …result = EAS_HWGetByte(pEASData->hwInstData, pState->fileHandle, &pState->srcByte)) != EAS_SUCCESS) in IMADecoderSample()189 IMADecoderADPCM(&pState->decoderL, (EAS_U8)(pState->srcByte & 0x0f)); in IMADecoderSample()192 IMADecoderADPCM(&pState->decoderR, (EAS_U8)(pState->srcByte >> 4)); in IMADecoderSample()
928 pState->srcByte = 0; in InitPCMStream()1279 … if ((result = EAS_HWGetByte(hwInstData, pState->fileHandle, &pState->srcByte)) != EAS_SUCCESS) in LinearPCMDecode()1286 pState->decoderL.x1 = (EAS_PCM)(((EAS_PCM) pState->srcByte << 8) ^ 0x8000); in LinearPCMDecode()1291 pState->decoderL.x1 = (EAS_PCM)((EAS_PCM) pState->srcByte << 8); in LinearPCMDecode()1298 … if ((result = EAS_HWGetByte(hwInstData, pState->fileHandle, &pState->srcByte)) != EAS_SUCCESS) in LinearPCMDecode()1305 pState->decoderR.x1 = (EAS_PCM)(((EAS_PCM) pState->srcByte << 8) ^ 0x8000); in LinearPCMDecode()1310 pState->decoderR.x1 = (EAS_PCM)((EAS_PCM) pState->srcByte << 8); in LinearPCMDecode()
114 EAS_U8 srcByte; /* source byte */ member
2075 int srcByte = src[i]; in upscaleBW2A8() local2076 d[0] = bit2byte(srcByte & (1 << 7)); in upscaleBW2A8()2077 d[1] = bit2byte(srcByte & (1 << 6)); in upscaleBW2A8()2078 d[2] = bit2byte(srcByte & (1 << 5)); in upscaleBW2A8()2079 d[3] = bit2byte(srcByte & (1 << 4)); in upscaleBW2A8()2080 d[4] = bit2byte(srcByte & (1 << 3)); in upscaleBW2A8()2081 d[5] = bit2byte(srcByte & (1 << 2)); in upscaleBW2A8()2082 d[6] = bit2byte(srcByte & (1 << 1)); in upscaleBW2A8()2083 d[7] = bit2byte(srcByte & (1 << 0)); in upscaleBW2A8()2087 int srcByte = src[wholeBytes]; in upscaleBW2A8() local[all …]