diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-01-17 13:51:42 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-01-17 13:51:42 +0000 |
| commit | 56152bbc29d5872f57483eb489b3b0eb025e0328 (patch) | |
| tree | b3ac60827a2d40a8329e1d750f39992b7bdd4bb2 /src/plugins/Input/cdaudio | |
| parent | 72807249ab492e97a805d75add895efcdaf03b5b (diff) | |
| download | qmmp-56152bbc29d5872f57483eb489b3b0eb025e0328.tar.gz qmmp-56152bbc29d5872f57483eb489b3b0eb025e0328.tar.bz2 qmmp-56152bbc29d5872f57483eb489b3b0eb025e0328.zip | |
fixed latest paranoia support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3171 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/cdaudio')
| -rw-r--r-- | src/plugins/Input/cdaudio/decoder_cdaudio.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/Input/cdaudio/decoder_cdaudio.cpp b/src/plugins/Input/cdaudio/decoder_cdaudio.cpp index 76abc2a2b..5d3f652ea 100644 --- a/src/plugins/Input/cdaudio/decoder_cdaudio.cpp +++ b/src/plugins/Input/cdaudio/decoder_cdaudio.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009-2012 by Ilya Kotov * + * Copyright (C) 2009-2013 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -25,7 +25,11 @@ #include <QFileInfo> #include <QDir> #include <cdio/cdio.h> +#if LIBCDIO_VERSION_NUM <= 83 #include <cdio/cdda.h> +#else +#include <cdio/paranoia/cdda.h> +#endif #include <cdio/audio.h> #include <cdio/cd_types.h> #include <cdio/logging.h> |
