diff options
author | Max Kellermann <max@duempel.org> | 2008-09-07 22:41:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-07 22:41:17 +0200 |
commit | bed2a49fe97b8f070ace2dd37909bb06540c66bd (patch) | |
tree | aa5700adc8317362f121fea88596471ca2c7ba48 /src/audioOutputs/audioOutput_fifo.c | |
parent | dc7c6bd14d0737f4c7c09c315a6806a901cf9976 (diff) | |
download | mpd-bed2a49fe97b8f070ace2dd37909bb06540c66bd.tar.gz mpd-bed2a49fe97b8f070ace2dd37909bb06540c66bd.tar.xz mpd-bed2a49fe97b8f070ace2dd37909bb06540c66bd.zip |
output: added output_api.h
Just like decoder_api.h, output_api.h provides the audio output API
which is used by the plugins.
Diffstat (limited to 'src/audioOutputs/audioOutput_fifo.c')
-rw-r--r-- | src/audioOutputs/audioOutput_fifo.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/audioOutputs/audioOutput_fifo.c b/src/audioOutputs/audioOutput_fifo.c index 0c279667d..a539856c1 100644 --- a/src/audioOutputs/audioOutput_fifo.c +++ b/src/audioOutputs/audioOutput_fifo.c @@ -16,13 +16,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "../audioOutput.h" -#include "../os_compat.h" +#include "../output_api.h" #ifdef HAVE_FIFO #include "../log.h" -#include "../conf.h" #include "../utils.h" #include "../timer.h" |