HomeSort by relevance Sort by last modified time
    Searched full:snd_pcm_sframes_t (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/media/audio/alsa/
alsa_wrapper.h 34 virtual int PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay);
35 virtual snd_pcm_sframes_t PcmWritei(snd_pcm_t* handle,
38 virtual snd_pcm_sframes_t PcmReadi(snd_pcm_t* handle,
49 virtual snd_pcm_sframes_t PcmAvailUpdate(snd_pcm_t* handle);
alsa_wrapper.cc 50 int AlsaWrapper::PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay) {
54 snd_pcm_sframes_t AlsaWrapper::PcmWritei(snd_pcm_t* handle,
60 snd_pcm_sframes_t AlsaWrapper::PcmReadi(snd_pcm_t* handle,
92 snd_pcm_sframes_t AlsaWrapper::PcmAvailUpdate(snd_pcm_t* handle) {
alsa_input.cc 155 snd_pcm_sframes_t AlsaPcmInputStream::GetCurrentDelay() {
156 snd_pcm_sframes_t delay = -1;
173 snd_pcm_sframes_t frames = wrapper_->PcmAvailUpdate(device_handle_);
alsa_input.h 65 snd_pcm_sframes_t GetCurrentDelay();
alsa_output.cc 413 snd_pcm_sframes_t frames = std::min(
414 static_cast<snd_pcm_sframes_t>(buffer_size / bytes_per_output_frame_),
420 snd_pcm_sframes_t frames_written =
564 snd_pcm_sframes_t AlsaPcmOutputStream::GetCurrentDelay() {
565 snd_pcm_sframes_t delay = -1;
603 snd_pcm_sframes_t AlsaPcmOutputStream::GetAvailableFrames() {
610 snd_pcm_sframes_t available_frames =
alsa_output.h 132 snd_pcm_sframes_t GetAvailableFrames();
133 snd_pcm_sframes_t GetCurrentDelay();
  /external/qemu/android/config/
check-alsa.c 46 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_avail_update,(snd_pcm_t *pcm)) \
48 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_writei,(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)) \
49 DYN_FUNCTION(snd_pcm_sframes_t,snd_pcm_readi,(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)) \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm-indirect.h 53 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr;
57 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2))
119 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr;
122 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2))
pcm.h 621 static inline snd_pcm_sframes_t bytes_to_frames(struct snd_pcm_runtime *runtime, ssize_t size)
631 static inline ssize_t frames_to_bytes(struct snd_pcm_runtime *runtime, snd_pcm_sframes_t size)
658 snd_pcm_sframes_t avail = runtime->status->hw_ptr + runtime->buffer_size - runtime->control->appl_ptr;
671 snd_pcm_sframes_t avail = runtime->status->hw_ptr - runtime->control->appl_ptr;
677 static inline snd_pcm_sframes_t snd_pcm_playback_hw_avail(struct snd_pcm_runtime *runtime)
682 static inline snd_pcm_sframes_t snd_pcm_capture_hw_avail(struct snd_pcm_runtime *runtime)
915 snd_pcm_sframes_t snd_pcm_lib_write(struct snd_pcm_substream *substream,
918 snd_pcm_sframes_t snd_pcm_lib_read(struct snd_pcm_substream *substream,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm-indirect.h 53 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr;
57 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2))
119 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr;
122 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2))
pcm.h 621 static inline snd_pcm_sframes_t bytes_to_frames(struct snd_pcm_runtime *runtime, ssize_t size)
631 static inline ssize_t frames_to_bytes(struct snd_pcm_runtime *runtime, snd_pcm_sframes_t size)
658 snd_pcm_sframes_t avail = runtime->status->hw_ptr + runtime->buffer_size - runtime->control->appl_ptr;
671 snd_pcm_sframes_t avail = runtime->status->hw_ptr - runtime->control->appl_ptr;
677 static inline snd_pcm_sframes_t snd_pcm_playback_hw_avail(struct snd_pcm_runtime *runtime)
682 static inline snd_pcm_sframes_t snd_pcm_capture_hw_avail(struct snd_pcm_runtime *runtime)
915 snd_pcm_sframes_t snd_pcm_lib_write(struct snd_pcm_substream *substream,
918 snd_pcm_sframes_t snd_pcm_lib_read(struct snd_pcm_substream *substream,
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
pcm.h 292 typedef long snd_pcm_sframes_t; typedef
428 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp);
430 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm);
431 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
432 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
433 snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size);
434 snd_pcm_sframes_t snd_pcm_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size);
435 snd_pcm_sframes_t snd_pcm_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
436 snd_pcm_sframes_t snd_pcm_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
    [all...]
pcm_ioplug.h 131 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
190 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
pcm_extplug.h 128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext,
pcm_old.h 109 snd_pcm_sframes_t snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t *params, int *dir);
168 snd_pcm_sframes_t snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t *params);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm.h 292 typedef long snd_pcm_sframes_t; typedef
428 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp);
430 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm);
431 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
432 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
433 snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size);
434 snd_pcm_sframes_t snd_pcm_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size);
435 snd_pcm_sframes_t snd_pcm_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
436 snd_pcm_sframes_t snd_pcm_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
    [all...]
pcm_ioplug.h 131 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
190 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
pcm_extplug.h 128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext,
pcm_old.h 109 snd_pcm_sframes_t snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t *params, int *dir);
168 snd_pcm_sframes_t snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t *params);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm.h 292 typedef long snd_pcm_sframes_t; typedef
428 int snd_pcm_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp);
430 snd_pcm_sframes_t snd_pcm_avail_update(snd_pcm_t *pcm);
431 snd_pcm_sframes_t snd_pcm_rewind(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
432 snd_pcm_sframes_t snd_pcm_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frames);
433 snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size);
434 snd_pcm_sframes_t snd_pcm_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size);
435 snd_pcm_sframes_t snd_pcm_writen(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
436 snd_pcm_sframes_t snd_pcm_readn(snd_pcm_t *pcm, void **bufs, snd_pcm_uframes_t size);
    [all...]
pcm_ioplug.h 131 snd_pcm_sframes_t (*pointer)(snd_pcm_ioplug_t *io);
135 snd_pcm_sframes_t (*transfer)(snd_pcm_ioplug_t *io,
190 int (*delay)(snd_pcm_ioplug_t *io, snd_pcm_sframes_t *delayp);
pcm_extplug.h 128 snd_pcm_sframes_t (*transfer)(snd_pcm_extplug_t *ext,
pcm_old.h 109 snd_pcm_sframes_t snd_pcm_hw_params_get_period_size(const snd_pcm_hw_params_t *params, int *dir);
168 snd_pcm_sframes_t snd_pcm_hw_params_get_buffer_size(const snd_pcm_hw_params_t *params);
  /external/qemu/audio/
alsaaudio.c 78 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_avail_update,(snd_pcm_t *pcm)) \
80 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_writei,(snd_pcm_t *pcm, const void *buffer, snd_pcm_uframes_t size)) \
81 DYNLINK_FUNC(snd_pcm_sframes_t,snd_pcm_readi,(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)) \
760 static snd_pcm_sframes_t alsa_get_avail (snd_pcm_t *handle)
762 snd_pcm_sframes_t avail;
792 snd_pcm_sframes_t written;
849 snd_pcm_sframes_t avail;
1062 snd_pcm_sframes_t avail;
1117 snd_pcm_sframes_t nread;
    [all...]
  /external/kernel-headers/original/sound/
asound.h 144 typedef signed long snd_pcm_sframes_t; typedef
399 snd_pcm_sframes_t delay; /* current delay in frames */
437 snd_pcm_sframes_t result;
443 snd_pcm_sframes_t result;
463 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
    [all...]

Completed in 782 milliseconds

1 2