From be670bfd1f6ba20262f64fa67d198e6b51b9b51a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 22 Dec 2010 07:59:38 +0100 Subject: input/cdda: move code to cdda_detect_drive() --- src/input/cdda_input_plugin.c | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'src/input') diff --git a/src/input/cdda_input_plugin.c b/src/input/cdda_input_plugin.c index 5dcf2fcd7..52de8adef 100644 --- a/src/input/cdda_input_plugin.c +++ b/src/input/cdda_input_plugin.c @@ -82,11 +82,23 @@ input_cdda_close(struct input_stream *is) g_free(i); } +static char * +cdda_detect_device(void) +{ + char **devices = cdio_get_devices_with_cap(NULL, CDIO_FS_AUDIO, false); + if (devices == NULL) + return NULL; + + char *device = g_strdup(devices[0]); + cdio_free_device_list(devices); + + return device; +} + static struct input_stream * input_cdda_open(const char *uri, GError **error_r) { struct input_cdda *i; - char **cd_drives; /* List of all drives with a loaded CDDA in it. */ if (!g_str_has_prefix(uri, "cdda://")) return NULL; @@ -108,8 +120,8 @@ input_cdda_open(const char *uri, GError **error_r) } /* get list of CD's supporting CD-DA */ - cd_drives = cdio_get_devices_with_cap(NULL, CDIO_FS_AUDIO, false); - if (!cd_drives) { + char *device = cdda_detect_device(); + if (device == NULL) { g_set_error(error_r, cdda_quark(), 0, "Unable find or access a CD-ROM drive with an audio CD in it."); input_cdda_close(i); @@ -117,11 +129,10 @@ input_cdda_open(const char *uri, GError **error_r) } /* Found such a CD-ROM with a CD-DA loaded. Use the first drive in the list. */ - i->cdio = cdio_open(*cd_drives, DRIVER_UNKNOWN); - i->drv = cdio_cddap_identify_cdio(i->cdio, 1, NULL); + i->cdio = cdio_open(device, DRIVER_UNKNOWN); + g_free(device); - /* Don't need a list of CD's with CD-DA's any more. */ - cdio_free_device_list(cd_drives); + i->drv = cdio_cddap_identify_cdio(i->cdio, 1, NULL); if ( !i->drv ) { g_set_error(error_r, cdda_quark(), 0, -- cgit v1.2.3