Home | History | Annotate | Download | only in audio

Lines Matching refs:Uint8

33 	Uint8 hPredictor;
49 Uint8 *rogue_feel;
60 rogue_feel = (Uint8 *)format+sizeof(*format);
82 Uint8 nybble, Sint16 *coeff)
115 static int MS_ADPCM_decode(Uint8 **audio_buf, Uint32 *audio_len)
118 Uint8 *freeable, *encoded, *decoded;
131 *audio_buf = (Uint8 *)SDL_malloc(*audio_len);
227 Uint8 *rogue_feel;
237 rogue_feel = (Uint8 *)format+sizeof(*format);
245 static Sint32 IMA_ADPCM_nibble(struct IMA_ADPCM_decodestate *state,Uint8 nybble)
296 static void Fill_IMA_ADPCM_block(Uint8 *decoded, Uint8 *encoded,
323 static int IMA_ADPCM_decode(Uint8 **audio_buf, Uint32 *audio_len)
326 Uint8 *freeable, *encoded, *decoded;
346 *audio_buf = (Uint8 *)SDL_malloc(*audio_len);
370 decoded[0] = (Uint8)(state[c].sample&0xFF);
371 decoded[1] = (Uint8)(state[c].sample>>8);
393 SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
514 spec->channels = (Uint8)SDL_SwapLE16(format->channels);
573 void SDL_FreeWAV(Uint8 *audio_buf)
584 chunk->data = (Uint8 *)SDL_malloc(chunk->length);