summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2016-07-14 23:07:21 +0900
committerTakashi Iwai <tiwai@suse.de>2016-07-14 16:33:47 +0200
commitf889a8d5decc24c84edccea6a49df014d38a683d (patch)
treedfe638f0d251d526ed6473bf449e444078e0150e
parent8c3ffab39e290bcf22426eca75a65c88a1b487d1 (diff)
downloadalsa-lib-f889a8d5decc24c84edccea6a49df014d38a683d.tar.gz
pcm: remove alloca() from snd_pcm_get_params
Both of alloca() and automatic variables keeps storages on stack, while the former generates more instructions than the latter. It's better to use the latter if the size of storage is computable at pre-compile or compile time; i.e. just for structures. This commit obsolete usages of alloca() with automatic variables. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--src/pcm/pcm.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/pcm/pcm.c b/src/pcm/pcm.c
index 23655e6d..f8323999 100644
--- a/src/pcm/pcm.c
+++ b/src/pcm/pcm.c
@@ -8476,17 +8476,16 @@ int snd_pcm_get_params(snd_pcm_t *pcm,
snd_pcm_uframes_t *buffer_size,
snd_pcm_uframes_t *period_size)
{
- snd_pcm_hw_params_t *hw;
+ snd_pcm_hw_params_t params = {0};
int err;
assert(pcm);
- snd_pcm_hw_params_alloca(&hw);
- err = snd_pcm_hw_params_current(pcm, hw);
+ err = snd_pcm_hw_params_current(pcm, &params);
if (err < 0)
return err;
- err = INTERNAL(snd_pcm_hw_params_get_buffer_size)(hw, buffer_size);
+ err = INTERNAL(snd_pcm_hw_params_get_buffer_size)(&params, buffer_size);
if (err < 0)
return err;
- return INTERNAL(snd_pcm_hw_params_get_period_size)(hw, period_size,
+ return INTERNAL(snd_pcm_hw_params_get_period_size)(&params, period_size,
NULL);
}