Searched refs:dst_frames (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/sound/core/oss/ |
D | rate.c | 43 int src_frames, int dst_frames); 67 int src_frames, int dst_frames) in resample_expand() argument 85 snd_pcm_area_silence(&dst_channels[channel].area, 0, dst_frames, plugin->dst_format.format); in resample_expand() 97 dst_frames1 = dst_frames; in resample_expand() 126 int src_frames, int dst_frames) in resample_shrink() argument 144 snd_pcm_area_silence(&dst_channels[channel].area, 0, dst_frames, plugin->dst_format.format); in resample_shrink() 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() [all …]
|
D | pcm_plugin.c | 116 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()
|
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); member
|