mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
change iface argument for namehint function to const char *
remove snd_ctl_iface_conf_name function
This commit is contained in:
parent
252fd43461
commit
03389a444b
6 changed files with 33 additions and 49 deletions
|
|
@ -4,18 +4,12 @@
|
|||
int main(int argc, char *argv[])
|
||||
{
|
||||
const char *iface = "pcm";
|
||||
snd_ctl_elem_iface_t niface;
|
||||
char **hints, **n;
|
||||
int err;
|
||||
|
||||
if (argc > 1)
|
||||
iface = argv[1];
|
||||
for (niface = 0; niface < SND_CTL_ELEM_IFACE_LAST; niface++)
|
||||
if (strcmp(snd_ctl_iface_conf_name(niface), iface) == 0)
|
||||
break;
|
||||
if (niface > SND_CTL_ELEM_IFACE_LAST)
|
||||
errx(1, "interface %s dnoes not exist", iface);
|
||||
err = snd_device_name_hint(-1, niface, &hints);
|
||||
err = snd_device_name_hint(-1, iface, &hints);
|
||||
if (err < 0)
|
||||
errx(1, "snd_device_name_hint error: %s", snd_strerror(err));
|
||||
n = hints;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue