mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
Remove debug
Original commit message from CVS: Remove debug
This commit is contained in:
parent
23d142d276
commit
1be2b9f2bd
1 changed files with 2 additions and 3 deletions
|
@ -347,13 +347,12 @@ gst_alsa_class_probe_devices (GstAlsaClass *klass,
|
|||
|
||||
for (num = 0; num < MAX_DEVICES; num++) {
|
||||
dev = g_strdup_printf ("hw:%d", num);
|
||||
printf ("Trying to open %s\n", dev);
|
||||
|
||||
if (!(res = snd_pcm_open (&pcm, dev, 0, 0))) {
|
||||
klass->devices = g_list_append (klass->devices, dev);
|
||||
printf ("success\n");
|
||||
|
||||
snd_pcm_close (pcm);
|
||||
} else {
|
||||
printf ("failure=%d (%s)\n", res, snd_strerror (res));
|
||||
g_free (dev);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue