aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder')
-rw-r--r--src/decoder/aac_plugin.c1
-rw-r--r--src/decoder/ffmpeg_plugin.c1
-rw-r--r--src/decoder/mp3_plugin.c1
-rw-r--r--src/decoder/mp4_plugin.c3
-rw-r--r--src/decoder/mpc_plugin.c1
-rw-r--r--src/decoder/oggvorbis_plugin.c1
6 files changed, 7 insertions, 1 deletions
diff --git a/src/decoder/aac_plugin.c b/src/decoder/aac_plugin.c
index 19a7d7c9c..f2907129e 100644
--- a/src/decoder/aac_plugin.c
+++ b/src/decoder/aac_plugin.c
@@ -17,6 +17,7 @@
*/
#include "../decoder_api.h"
+#include "config.h"
#define AAC_MAX_CHANNELS 6
diff --git a/src/decoder/ffmpeg_plugin.c b/src/decoder/ffmpeg_plugin.c
index 0475f442e..a5e728a39 100644
--- a/src/decoder/ffmpeg_plugin.c
+++ b/src/decoder/ffmpeg_plugin.c
@@ -17,6 +17,7 @@
*/
#include "../decoder_api.h"
+#include "config.h"
#include <glib.h>
diff --git a/src/decoder/mp3_plugin.c b/src/decoder/mp3_plugin.c
index 6fedf3766..3444a7e94 100644
--- a/src/decoder/mp3_plugin.c
+++ b/src/decoder/mp3_plugin.c
@@ -18,6 +18,7 @@
#include "../decoder_api.h"
#include "../conf.h"
+#include "config.h"
#include <assert.h>
#include <unistd.h>
diff --git a/src/decoder/mp4_plugin.c b/src/decoder/mp4_plugin.c
index dd57a8e13..bc36acf8a 100644
--- a/src/decoder/mp4_plugin.c
+++ b/src/decoder/mp4_plugin.c
@@ -1,7 +1,7 @@
/* the Music Player Daemon (MPD)
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
* This project's homepage is: http://www.musicpd.org
- *
+ *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@@ -17,6 +17,7 @@
*/
#include "../decoder_api.h"
+#include "config.h"
#include "mp4ff.h"
diff --git a/src/decoder/mpc_plugin.c b/src/decoder/mpc_plugin.c
index 19a0e2409..5ef2c5448 100644
--- a/src/decoder/mpc_plugin.c
+++ b/src/decoder/mpc_plugin.c
@@ -17,6 +17,7 @@
*/
#include "../decoder_api.h"
+#include "config.h"
#include <mpcdec/mpcdec.h>
#include <glib.h>
diff --git a/src/decoder/oggvorbis_plugin.c b/src/decoder/oggvorbis_plugin.c
index ccfeb5719..285ad6d07 100644
--- a/src/decoder/oggvorbis_plugin.c
+++ b/src/decoder/oggvorbis_plugin.c
@@ -19,6 +19,7 @@
/* TODO 'ogg' should probably be replaced with 'oggvorbis' in all instances */
#include "_ogg_common.h"
+#include "config.h"
#ifndef HAVE_TREMOR
#include <vorbis/vorbisfile.h>