diff options
author | Max Kellermann <max@duempel.org> | 2009-11-11 16:43:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-11 16:43:34 +0100 |
commit | 5bbaf0c9f170d1e18b4fd82da8685e11aa74811f (patch) | |
tree | 60cc59c808ad9340aa7c99483f602a512d627769 /src/decoder/flac_plugin.c | |
parent | f2f8290242019ec1d49cca0142af39e58878f3e8 (diff) | |
download | mpd-5bbaf0c9f170d1e18b4fd82da8685e11aa74811f.tar.gz mpd-5bbaf0c9f170d1e18b4fd82da8685e11aa74811f.tar.xz mpd-5bbaf0c9f170d1e18b4fd82da8685e11aa74811f.zip |
decoder/flac: moved code to flac_compat.h
Diffstat (limited to 'src/decoder/flac_plugin.c')
-rw-r--r-- | src/decoder/flac_plugin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decoder/flac_plugin.c b/src/decoder/flac_plugin.c index 3635a6743..f6a6cf39f 100644 --- a/src/decoder/flac_plugin.c +++ b/src/decoder/flac_plugin.c @@ -19,8 +19,13 @@ #include "config.h" /* must be first for large file support */ #include "_flac_common.h" +#include "flac_compat.h" #include "flac_metadata.h" +#if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7 +#include "_ogg_common.h" +#endif + #include <glib.h> #include <assert.h> |