Remove ifdef checks for header inclusion in audio_player.cpp as the headers themselves have the checks

This commit is contained in:
Thomas Goyne 2012-03-19 16:58:21 -07:00
parent 95a1b7e9b5
commit d0a7388581

View file

@ -36,25 +36,13 @@
#include "config.h" #include "config.h"
#ifdef WITH_ALSA
#include "audio_player_alsa.h" #include "audio_player_alsa.h"
#endif
#ifdef WITH_DIRECTSOUND
#include "audio_player_dsound.h" #include "audio_player_dsound.h"
#include "audio_player_dsound2.h" #include "audio_player_dsound2.h"
#endif
#ifdef WITH_OPENAL
#include "audio_player_openal.h" #include "audio_player_openal.h"
#endif
#ifdef WITH_OSS
#include "audio_player_oss.h" #include "audio_player_oss.h"
#endif
#ifdef WITH_PORTAUDIO
#include "audio_player_portaudio.h" #include "audio_player_portaudio.h"
#endif
#ifdef WITH_LIBPULSE
#include "audio_player_pulse.h" #include "audio_player_pulse.h"
#endif
#include "audio_controller.h" #include "audio_controller.h"
#include "compat.h" #include "compat.h"