Lines Matching full:encoded
64 - Uint8 *freeable, *encoded, *decoded;
65 + Uint8 *freeable, *encoded, *encoded_end, *decoded;
72 encoded = *audio_buf;
73 + encoded_end = encoded + encoded_len;
81 + if (encoded + 7 + (stereo ? 7 : 0) > encoded_end) goto too_short;
82 state[0]->hPredictor = *encoded++;
84 state[1]->hPredictor = *encoded++;
89 state[0]->iDelta = ((encoded[1]<<8)|encoded[0]);
90 encoded += sizeof(Sint16);
96 + if (encoded + 1 > encoded_end) goto too_short;
98 nybble = (*encoded)>>4;