有没有办法使用 asoundlib 和 C 以编程方式获取系统上可用声卡的列表?我希望它具有与 相同的信息/proc/asound/cards
。
问问题
2062 次
1 回答
7
您可以使用 迭代卡片snd_card_next
,从值 -1 开始获取第 0 张卡片。
这是示例代码;编译它gcc -o countcards countcards.c -lasound
:
#include <alsa/asoundlib.h>
#include <stdio.h>
int main()
{
int totalCards = 0; // No cards found yet
int cardNum = -1; // Start with first card
int err;
for (;;) {
// Get next sound card's card number.
if ((err = snd_card_next(&cardNum)) < 0) {
fprintf(stderr, "Can't get the next card number: %s\n",
snd_strerror(err));
break;
}
if (cardNum < 0)
// No more cards
break;
++totalCards; // Another card found, so bump the count
}
printf("ALSA found %i card(s)\n", totalCards);
// ALSA allocates some memory to load its config file when we call
// snd_card_next. Now that we're done getting the info, tell ALSA
// to unload the info and release the memory.
snd_config_update_free_global();
}
这是从cardnames.c简化的代码(它还打开每张卡片以读取其名称)。
于 2012-06-06T13:32:52.007 回答