Home
last modified time | relevance | path

Searched refs:dst_frames (Results 1 – 3 of 3) sorted by relevance

/linux/sound/core/oss/
H A Drate.c43 int src_frames, int dst_frames);
67 int src_frames, int dst_frames) in resample_expand() argument
97 dst_frames1 = dst_frames; in resample_expand()
126 int src_frames, int dst_frames) in resample_shrink() argument
156 dst_frames1 = dst_frames; in resample_shrink()
254 snd_pcm_uframes_t dst_frames; in rate_transfer() local
275 dst_frames = rate_dst_frames(plugin, frames); in rate_transfer()
276 if (dst_frames > dst_channels[0].frames) in rate_transfer()
277 dst_frames = dst_channels[0].frames; in rate_transfer()
280 return dst_frames; in rate_transfer()
[all …]
H A Dpcm_plugin.c116 if (plugin->dst_frames) in snd_pcm_plug_alloc()
117 frames = plugin->dst_frames(plugin, frames); in snd_pcm_plug_alloc()
215 if (plugin->dst_frames) { in calc_dst_frames()
216 frames = plugin->dst_frames(plugin, frames); in calc_dst_frames()
611 if (plugin->dst_frames) { in snd_pcm_plug_write_transfer()
612 frames1 = plugin->dst_frames(plugin, frames); in snd_pcm_plug_write_transfer()
H A Dpcm_plugin.h47 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); member