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.c28 int src_frames, int dst_frames);
52 int src_frames, int dst_frames) in resample_expand() argument
70 snd_pcm_area_silence(&dst_channels[channel].area, 0, dst_frames, plugin->dst_format.format); in resample_expand()
82 dst_frames1 = dst_frames; in resample_expand()
111 int src_frames, int dst_frames) in resample_shrink() argument
129 snd_pcm_area_silence(&dst_channels[channel].area, 0, dst_frames, plugin->dst_format.format); in resample_shrink()
141 dst_frames1 = dst_frames; in resample_shrink()
239 snd_pcm_uframes_t dst_frames; in rate_transfer() local
260 dst_frames = rate_dst_frames(plugin, frames); in rate_transfer()
261 if (dst_frames > dst_channels[0].frames) in rate_transfer()
[all …]
H A Dpcm_plugin.c101 if (plugin->dst_frames) in snd_pcm_plug_alloc()
102 frames = plugin->dst_frames(plugin, frames); in snd_pcm_plug_alloc()
200 if (plugin->dst_frames) { in calc_dst_frames()
201 frames = plugin->dst_frames(plugin, frames); in calc_dst_frames()
596 if (plugin->dst_frames) { in snd_pcm_plug_write_transfer()
597 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