OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pcm_handle
(Results
1 - 2
of
2
) sorted by null
/external/qemu/distrib/sdl-1.2.12/src/audio/alsa/
SDL_alsa_audio.h
38
snd_pcm_t *
pcm_handle
;
member in struct:SDL_PrivateAudioData
49
#define
pcm_handle
(this->hidden->
pcm_handle
)
macro
SDL_alsa_audio.c
325
status = SDL_NAME(snd_pcm_writei)(
pcm_handle
, sample_buf, sample_len);
334
status = SDL_NAME(snd_pcm_resume)(
pcm_handle
);
338
status = SDL_NAME(snd_pcm_prepare)(
pcm_handle
);
363
if (
pcm_handle
) {
364
SDL_NAME(snd_pcm_drain)(
pcm_handle
);
365
SDL_NAME(snd_pcm_close)(
pcm_handle
);
366
pcm_handle
= NULL;
381
status = SDL_NAME(snd_pcm_open)(&
pcm_handle
, get_audio_device(spec->channels), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
390
status = SDL_NAME(snd_pcm_hw_params_any)(
pcm_handle
, hwparams);
398
status = SDL_NAME(snd_pcm_hw_params_set_access)(
pcm_handle
, hwparams, SND_PCM_ACCESS_RW_INTERLEAVED)
[
all
...]
Completed in 27 milliseconds