diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-03-21 20:35:56 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-03-21 20:35:56 +0000 |
| commit | c06ecb1cccf9b6bbfaa0a56403e8926ba974db1f (patch) | |
| tree | 8f6d9b92771fb3c6263c4616a667bc7b7f74a2c1 /src/plugins/Input/mpc/decoder_mpc.h | |
| parent | 025866f86ad797ee879fad4a6d5530b1aeda3f90 (diff) | |
| download | qmmp-c06ecb1cccf9b6bbfaa0a56403e8926ba974db1f.tar.gz qmmp-c06ecb1cccf9b6bbfaa0a56403e8926ba974db1f.tar.bz2 qmmp-c06ecb1cccf9b6bbfaa0a56403e8926ba974db1f.zip | |
musepack sv8 support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@864 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/mpc/decoder_mpc.h')
| -rw-r--r-- | src/plugins/Input/mpc/decoder_mpc.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/plugins/Input/mpc/decoder_mpc.h b/src/plugins/Input/mpc/decoder_mpc.h index 052f634c8..fccc74610 100644 --- a/src/plugins/Input/mpc/decoder_mpc.h +++ b/src/plugins/Input/mpc/decoder_mpc.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2008 by Ilya Kotov * + * Copyright (C) 2006-2009 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -21,13 +21,21 @@ #ifndef DECODER_MPC_H #define DECODER_MPC_H +#ifdef MPC_OLD_API #include <mpcdec/mpcdec.h> +#else +#include <mpc/mpcdec.h> +#endif #include <qmmp/decoder.h> struct mpc_data { +#ifdef MPC_OLD_API mpc_decoder decoder; +#else + mpc_demux *demuxer; +#endif mpc_reader reader; mpc_streaminfo info; }; |
