Lines Matching full:sint32
81 static Sint32 MS_ADPCM_nibble(struct MS_ADPCM_decodestate *state,
84 const Sint32 max_audioval = ((1<<(16-1))-1);
85 const Sint32 min_audioval = -(1<<(16-1));
86 const Sint32 adaptive[] = {
90 Sint32 new_sample, delta;
105 delta = ((Sint32)state->iDelta * adaptive[nybble])/256;
119 Sint32 encoded_len, samplesleft;
122 Sint32 new_sample;
215 Sint32 sample;
245 static Sint32 IMA_ADPCM_nibble(struct IMA_ADPCM_decodestate *state,Uint8 nybble)
247 const Sint32 max_audioval = ((1<<(16-1))-1);
248 const Sint32 min_audioval = -(1<<(16-1));
255 const Sint32 step_table[89] = {
265 Sint32 delta, step;
301 Sint32 new_sample;
327 Sint32 encoded_len, samplesleft;