From 87635c5268238eea7a70f2be57dc2b2c07c08135 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 21 Jan 2019 14:18:55 +0100 Subject: [PATCH] input/CdioParanoia: use the new function names --- src/input/plugins/CdioParanoiaInputPlugin.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/input/plugins/CdioParanoiaInputPlugin.cxx b/src/input/plugins/CdioParanoiaInputPlugin.cxx index dc7de1e0e..f9c916886 100644 --- a/src/input/plugins/CdioParanoiaInputPlugin.cxx +++ b/src/input/plugins/CdioParanoiaInputPlugin.cxx @@ -209,10 +209,10 @@ input_cdio_open(const char *uri, throw std::runtime_error("Unable to identify audio CD disc."); } - cdda_verbose_set(drv, CDDA_MESSAGE_FORGETIT, CDDA_MESSAGE_FORGETIT); + cdio_cddap_verbose_set(drv, CDDA_MESSAGE_FORGETIT, CDDA_MESSAGE_FORGETIT); if (speed > 0) { FormatDebug(cdio_domain,"Attempting to set CD speed to %dx",speed); - cdda_speed_set(drv,speed); + cdio_cddap_speed_set(drv,speed); } if (0 != cdio_cddap_open(drv)) { @@ -300,7 +300,7 @@ CdioParanoiaInputStream::Read(void *ptr, size_t length) rbuf = cdio_paranoia_read(para, nullptr); - char *s_err = cdda_errors(drv); + char *s_err = cdio_cddap_errors(drv); if (s_err) { FormatError(cdio_domain, "paranoia_read: %s", s_err);