change iface argument for namehint function to const char *

remove snd_ctl_iface_conf_name function
This commit is contained in:
Jaroslav Kysela 2006-10-27 13:31:32 +02:00
parent 252fd43461
commit 03389a444b
6 changed files with 33 additions and 49 deletions

View file

@ -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;