[alsa-devel] [PATCH 6/9] ALSA: pcm: Simplify params_period_bytes()
Lars-Peter Clausen
lars at metafoo.de
Mon Dec 29 19:41:43 CET 2014
The hw_params struct has a parameter that contains the period size in bytes.
This can be used instead of deriving the value from other parameters. This
is similar to e.g. params_buffer_bytes()
Signed-off-by: Lars-Peter Clausen <lars at metafoo.de>
---
include/sound/pcm_params.h | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/include/sound/pcm_params.h b/include/sound/pcm_params.h
index 2e2169e..042049b 100644
--- a/include/sound/pcm_params.h
+++ b/include/sound/pcm_params.h
@@ -363,9 +363,7 @@ params_subformat(const struct snd_pcm_hw_params *p)
static inline unsigned int
params_period_bytes(const struct snd_pcm_hw_params *p)
{
- return (params_period_size(p) *
- snd_pcm_format_physical_width(params_format(p)) *
- params_channels(p)) / 8;
+ return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_BYTES)->min;
}
/**
--
1.8.0
More information about the Alsa-devel
mailing list