Searched refs:audio_len (Results 1 - 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_audio.h182 * and sets 'audio_len' to the length of that audio buffer, in bytes.
190 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len);
193 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \
194 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
/external/qemu/distrib/sdl-1.2.12/src/audio/
H A DSDL_wave.c117 static int MS_ADPCM_decode(Uint8 **audio_buf, Uint32 *audio_len) argument
127 encoded_len = *audio_len;
130 *audio_len = (encoded_len/MS_ADPCM_state.wavefmt.blockalign) *
133 *audio_buf = (Uint8 *)SDL_malloc(*audio_len);
327 static int IMA_ADPCM_decode(Uint8 **audio_buf, Uint32 *audio_len) argument
344 encoded_len = *audio_len;
347 *audio_len = (encoded_len/IMA_ADPCM_state.wavefmt.blockalign) *
350 *audio_buf = (Uint8 *)SDL_malloc(*audio_len);
397 SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
531 *audio_len
396 SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len) argument
[all...]

Completed in 50 milliseconds