diff options
author | Max Kellermann <max@musicpd.org> | 2019-01-21 14:18:55 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-01-21 14:18:55 +0100 |
commit | 87635c5268238eea7a70f2be57dc2b2c07c08135 (patch) | |
tree | ed83748fe88c0e20878f1b6c59d061dd920339bc /src/input | |
parent | 528b4338f44686a0709a09737f61b5423e77aa86 (diff) |
input/CdioParanoia: use the new function names
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/plugins/CdioParanoiaInputPlugin.cxx | 6 |
1 files 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); |