/linux/sound/core/oss/ |
H A D | pcm_plugin.h | 47 snd_pcm_sframes_t (*src_frames)(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t dst_frames); 48 snd_pcm_sframes_t (*dst_frames)(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t src_frames); 49 snd_pcm_sframes_t (*client_channels)(struct snd_pcm_plugin *plugin, 52 snd_pcm_sframes_t (*transfer)(struct snd_pcm_plugin *plugin, 78 snd_pcm_sframes_t snd_pcm_plug_client_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t drv_… 79 snd_pcm_sframes_t snd_pcm_plug_slave_size(struct snd_pcm_substream *handle, snd_pcm_uframes_t clt_s… 117 snd_pcm_sframes_t snd_pcm_plug_write_transfer(struct snd_pcm_substream *handle, 120 snd_pcm_sframes_t snd_pcm_plug_read_transfer(struct snd_pcm_substream *handle, 124 snd_pcm_sframes_t snd_pcm_plug_client_channels_buf(struct snd_pcm_substream *handle, 128 snd_pcm_sframes_t snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin, [all …]
|
H A D | pcm_plugin.c | 118 if ((snd_pcm_sframes_t)frames <= 0) in snd_pcm_plug_alloc() 130 if ((snd_pcm_sframes_t)frames <= 0) in snd_pcm_plug_alloc() 142 snd_pcm_sframes_t snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin, in snd_pcm_plugin_client_channels() 203 static snd_pcm_sframes_t calc_dst_frames(struct snd_pcm_substream *plug, in calc_dst_frames() 204 snd_pcm_sframes_t frames, in calc_dst_frames() 225 static snd_pcm_sframes_t calc_src_frames(struct snd_pcm_substream *plug, in calc_src_frames() 226 snd_pcm_sframes_t frames, in calc_src_frames() 247 snd_pcm_sframes_t snd_pcm_plug_client_size(struct snd_pcm_substream *plug, snd_pcm_uframes_t drv_fr… in snd_pcm_plug_client_size() 262 snd_pcm_sframes_t snd_pcm_plug_slave_size(struct snd_pcm_substream *plug, snd_pcm_uframes_t clt_fra… in snd_pcm_plug_slave_size() 557 snd_pcm_sframes_t snd_pcm_plug_client_channels_buf(struct snd_pcm_substream *plug, in snd_pcm_plug_client_channels_buf() [all …]
|
H A D | io.c | 37 static snd_pcm_sframes_t io_playback_transfer(struct snd_pcm_plugin *plugin, in io_playback_transfer() 63 static snd_pcm_sframes_t io_capture_transfer(struct snd_pcm_plugin *plugin, in io_capture_transfer() 90 static snd_pcm_sframes_t io_src_channels(struct snd_pcm_plugin *plugin, in io_src_channels()
|
H A D | copy.c | 27 static snd_pcm_sframes_t copy_transfer(struct snd_pcm_plugin *plugin, in copy_transfer()
|
H A D | pcm_oss.c | 1199 …t snd_pcm_oss_capture_position_fixup(struct snd_pcm_substream *substream, snd_pcm_sframes_t *delay) in snd_pcm_oss_capture_position_fixup() 1210 if (*delay <= (snd_pcm_sframes_t)runtime->buffer_size) in snd_pcm_oss_capture_position_fixup() 1224 snd_pcm_sframes_t snd_pcm_oss_write3(struct snd_pcm_substream *substream, const char *ptr, snd_pcm_… in snd_pcm_oss_write3() 1255 snd_pcm_sframes_t snd_pcm_oss_read3(struct snd_pcm_substream *substream, char *ptr, snd_pcm_uframes… in snd_pcm_oss_read3() 1258 snd_pcm_sframes_t delay; in snd_pcm_oss_read3() 1299 snd_pcm_sframes_t snd_pcm_oss_writev3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_ufr… in snd_pcm_oss_writev3() 1328 snd_pcm_sframes_t snd_pcm_oss_readv3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_ufra… in snd_pcm_oss_readv3() 1360 snd_pcm_sframes_t frames, frames1; in snd_pcm_oss_write2() 1464 return xfer > 0 ? (snd_pcm_sframes_t)xfer : tmp; in snd_pcm_oss_write1() 1470 snd_pcm_sframes_t frames, frames1; in snd_pcm_oss_read2() [all …]
|
H A D | route.c | 47 static snd_pcm_sframes_t route_transfer(struct snd_pcm_plugin *plugin, in route_transfer()
|
H A D | linear.c | 88 static snd_pcm_sframes_t linear_transfer(struct snd_pcm_plugin *plugin, in linear_transfer()
|
H A D | mulaw.c | 248 static snd_pcm_sframes_t mulaw_transfer(struct snd_pcm_plugin *plugin, in mulaw_transfer()
|
/linux/include/sound/ |
H A D | pcm.h | 375 snd_pcm_sframes_t delay; /* extra delay; typically FIFO size */ 751 static inline snd_pcm_sframes_t bytes_to_frames(struct snd_pcm_runtime *runtime, ssize_t size) in bytes_to_frames() 775 static inline ssize_t frames_to_bytes(struct snd_pcm_runtime *runtime, snd_pcm_sframes_t size) in frames_to_bytes() 826 …snd_pcm_sframes_t avail = runtime->status->hw_ptr + runtime->buffer_size - runtime->control->appl_… in snd_pcm_playback_avail() 844 snd_pcm_sframes_t avail = runtime->status->hw_ptr - runtime->control->appl_ptr; in snd_pcm_capture_avail() 856 static inline snd_pcm_sframes_t snd_pcm_playback_hw_avail(struct snd_pcm_runtime *runtime) in snd_pcm_playback_hw_avail() 867 static inline snd_pcm_sframes_t snd_pcm_capture_hw_avail(struct snd_pcm_runtime *runtime) in snd_pcm_capture_hw_avail() 1182 snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream, 1186 static inline snd_pcm_sframes_t 1193 static inline snd_pcm_sframes_t [all …]
|
H A D | pcm-indirect.h | 40 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr; in snd_pcm_indirect_playback_transfer() 44 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_playback_transfer() 114 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr; in snd_pcm_indirect_capture_transfer() 117 if (diff < -(snd_pcm_sframes_t) (runtime->boundary / 2)) in snd_pcm_indirect_capture_transfer()
|
H A D | soc-dai.h | 242 snd_pcm_sframes_t *cpu_delay, snd_pcm_sframes_t *codec_delay); 349 snd_pcm_sframes_t (*delay)(struct snd_pcm_substream *,
|
H A D | soc-component.h | 152 snd_pcm_sframes_t (*delay)(struct snd_soc_component *component, 536 snd_pcm_sframes_t *cpu_delay, snd_pcm_sframes_t *codec_delay);
|
/linux/sound/core/ |
H A D | pcm_native.c | 2941 static snd_pcm_sframes_t forward_appl_ptr(struct snd_pcm_substream *substream, in forward_appl_ptr() 2943 snd_pcm_sframes_t avail) in forward_appl_ptr() 2946 snd_pcm_sframes_t appl_ptr; in forward_appl_ptr() 2954 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary) in forward_appl_ptr() 2961 static snd_pcm_sframes_t rewind_appl_ptr(struct snd_pcm_substream *substream, in rewind_appl_ptr() 2963 snd_pcm_sframes_t avail) in rewind_appl_ptr() 2966 snd_pcm_sframes_t appl_ptr; in rewind_appl_ptr() 2985 static snd_pcm_sframes_t snd_pcm_rewind(struct snd_pcm_substream *substream, in snd_pcm_rewind() 2988 snd_pcm_sframes_t ret; in snd_pcm_rewind() 3004 static snd_pcm_sframes_t snd_pcm_forwar [all...] |
H A D | pcm_lib.c | 41 snd_pcm_sframes_t delta; in update_silence_vars() 71 snd_pcm_sframes_t noise_dist; in snd_pcm_playback_silence() 83 if (noise_dist >= (snd_pcm_sframes_t) runtime->silence_threshold) in snd_pcm_playback_silence() 101 snd_pcm_sframes_t avail = runtime->control->appl_ptr - hw_ptr; in snd_pcm_playback_silence() 292 snd_pcm_sframes_t hdelta, delta; in snd_pcm_update_hw_ptr0() 377 snd_pcm_sframes_t xrun_threshold; in snd_pcm_update_hw_ptr0() 2232 snd_pcm_sframes_t diff; in pcm_lib_apply_appl_ptr() 2271 snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream, in __snd_pcm_lib_xfer() 2404 snd_pcm_playback_hw_avail(runtime) >= (snd_pcm_sframes_t)runtime->start_threshold) { in __snd_pcm_lib_xfer() 2415 return xfer > 0 ? (snd_pcm_sframes_t)xfer : err; in __snd_pcm_lib_xfer()
|
/linux/tools/include/uapi/sound/ |
H A D | asound.h |
|
/linux/include/uapi/sound/ |
H A D | asound.h | 148 typedef signed long snd_pcm_sframes_t; typedef 488 snd_pcm_sframes_t delay; /* current delay in frames */ 608 snd_pcm_sframes_t result; 614 snd_pcm_sframes_t result; 685 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
|
/linux/tools/perf/trace/beauty/include/uapi/sound/ |
H A D | asound.h | 148 typedef signed long snd_pcm_sframes_t; typedef 488 snd_pcm_sframes_t delay; /* current delay in frames */ 608 snd_pcm_sframes_t result; 614 snd_pcm_sframes_t result; 685 #define SNDRV_PCM_IOCTL_DELAY _IOR('A', 0x21, snd_pcm_sframes_t)
|
/linux/drivers/usb/gadget/function/ |
H A D | u_uac1_legacy.c | 96 snd_pcm_sframes_t result; in playback_default_hw_params() 158 snd_pcm_sframes_t frames; in u_audio_playback()
|
/linux/sound/soc/amd/ |
H A D | acp.h | 167 snd_pcm_sframes_t delay;
|
/linux/sound/soc/ |
H A D | soc-component.c | 1007 snd_pcm_sframes_t *cpu_delay, in snd_soc_pcm_component_delay() 1008 snd_pcm_sframes_t *codec_delay) in snd_soc_pcm_component_delay() 1012 snd_pcm_sframes_t delay; in snd_soc_pcm_component_delay()
|
H A D | soc-dai.c | 651 snd_pcm_sframes_t *cpu_delay, in snd_soc_pcm_dai_delay() 652 snd_pcm_sframes_t *codec_delay) in snd_soc_pcm_dai_delay()
|
/linux/drivers/staging/vc04_services/bcm2835-audio/ |
H A D | bcm2835-pcm.c | 293 snd_pcm_sframes_t frames_output_in_interval_sized = in snd_bcm2835_pcm_pointer()
|
/linux/sound/soc/sof/ |
H A D | sof-audio.h | 136 snd_pcm_sframes_t (*delay)(struct snd_soc_component *component,
|
/linux/sound/soc/codecs/ |
H A D | tlv320dac33.c | 1136 static snd_pcm_sframes_t dac33_dai_delay( in dac33_dai_delay() 1145 snd_pcm_sframes_t delay = 0; in dac33_dai_delay()
|
/linux/sound/soc/ti/ |
H A D | omap-mcbsp.c | 885 static snd_pcm_sframes_t omap_mcbsp_dai_delay( in omap_mcbsp_dai_delay() 893 snd_pcm_sframes_t delay; in omap_mcbsp_dai_delay()
|