OSDN Git Service

pcm: remove alloca() from snd_pcm_direct_initialize_poll_fd()
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Thu, 14 Jul 2016 14:07:25 +0000 (23:07 +0900)
committerTakashi Iwai <tiwai@suse.de>
Thu, 14 Jul 2016 14:33:48 +0000 (16:33 +0200)
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>
src/pcm/pcm_direct.c

index 8a53cef..dbd7e2b 100644 (file)
@@ -1176,23 +1176,22 @@ int snd_pcm_direct_initialize_slave(snd_pcm_direct_t *dmix, snd_pcm_t *spcm, str
 int snd_pcm_direct_initialize_poll_fd(snd_pcm_direct_t *dmix)
 {
        int ret;
-       snd_pcm_info_t *info;
+       snd_pcm_info_t info = {0};
        char name[128];
        int capture = dmix->type == SND_PCM_TYPE_DSNOOP ? 1 : 0;
 
        dmix->tread = 1;
        dmix->timer_need_poll = 0;
-       snd_pcm_info_alloca(&info);
-       ret = snd_pcm_info(dmix->spcm, info);
+       ret = snd_pcm_info(dmix->spcm, &info);
        if (ret < 0) {
                SNDERR("unable to info for slave pcm");
                return ret;
        }
        sprintf(name, "hw:CLASS=%i,SCLASS=0,CARD=%i,DEV=%i,SUBDEV=%i",
                (int)SND_TIMER_CLASS_PCM,
-               snd_pcm_info_get_card(info),
-               snd_pcm_info_get_device(info),
-               snd_pcm_info_get_subdevice(info) * 2 + capture);
+               snd_pcm_info_get_card(&info),
+               snd_pcm_info_get_device(&info),
+               snd_pcm_info_get_subdevice(&info) * 2 + capture);
        ret = snd_timer_open(&dmix->timer, name,
                             SND_TIMER_OPEN_NONBLOCK | SND_TIMER_OPEN_TREAD);
        if (ret < 0) {