Lines Matching full:sint32
83 static Sint32 MS_ADPCM_nibble(struct MS_ADPCM_decodestate *state,
86 const Sint32 max_audioval = ((1<<(16-1))-1);
87 const Sint32 min_audioval = -(1<<(16-1));
88 const Sint32 adaptive[] = {
92 Sint32 new_sample, delta;
107 delta = ((Sint32)state->iDelta * adaptive[nybble])/256;
121 Sint32 encoded_len, samplesleft;
124 Sint32 new_sample;
217 Sint32 sample;
249 static Sint32 IMA_ADPCM_nibble(struct IMA_ADPCM_decodestate *state,Uint8 nybble)
251 const Sint32 max_audioval = ((1<<(16-1))-1);
252 const Sint32 min_audioval = -(1<<(16-1));
259 const Sint32 step_table[89] = {
269 Sint32 delta, step;
305 Sint32 new_sample;
331 Sint32 encoded_len, samplesleft;