fix includes

This commit is contained in:
badaix 2019-10-13 13:18:24 +02:00
parent 13c6f4a99f
commit d3b8ad5aa5
11 changed files with 11 additions and 18 deletions

View file

@ -1,4 +1,4 @@
#include "browseBonjour.h"
#include "browse_bonjour.hpp"
#include <deque>
#include <iostream>

View file

@ -30,7 +30,7 @@ public:
#include "browse_avahi.hpp"
typedef BrowseAvahi BrowseZeroConf;
#elif defined(HAS_BONJOUR)
#include "browseBonjour.h"
#include "browse_bonjour.hpp"
typedef BrowseBonjour BrowseZeroConf;
#endif

View file

@ -19,7 +19,7 @@
#ifndef CONTROLLER_H
#define CONTROLLER_H
#include "decoder/decoder.h"
#include "decoder/decoder.hpp"
#include "message/message.h"
#include "message/serverSettings.h"
#include "message/streamTags.h"
@ -29,9 +29,9 @@
#ifdef HAS_ALSA
#include "player/alsa_player.hpp"
#elif HAS_OPENSL
#include "player/openslPlayer.h"
#include "player/opensl_player.hpp"
#elif HAS_COREAUDIO
#include "player/coreAudioPlayer.h"
#include "player/coreaudio_player.hpp"
#endif
#include "client_connection.hpp"
#include "metadata.hpp"

View file

@ -19,7 +19,7 @@
#ifndef FLAC_DECODER_H
#define FLAC_DECODER_H
#include "decoder.h"
#include "decoder.hpp"
#include <FLAC/stream_decoder.h>
#include <atomic>

View file

@ -18,7 +18,7 @@
#ifndef OGG_DECODER_H
#define OGG_DECODER_H
#include "decoder.h"
#include "decoder.hpp"
#ifdef HAS_TREMOR
#include <tremor/ivorbiscodec.h>
#else

View file

@ -18,7 +18,7 @@
#ifndef PCM_DECODER_H
#define PCM_DECODER_H
#include "decoder.h"
#include "decoder.hpp"
class PcmDecoder : public Decoder

View file

@ -16,8 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
//#include <CoreServices/CoreServices.h>
#include "coreAudioPlayer.h"
#include "coreaudio_player.hpp"
#include <CoreAudio/CoreAudio.h>
#define NUM_BUFFERS 2

View file

@ -22,7 +22,7 @@
#include "common/aixlog.hpp"
#include "common/snap_exception.hpp"
#include "common/str_compat.hpp"
#include "openslPlayer.h"
#include "opensl_player.hpp"
using namespace std;

View file

@ -19,12 +19,6 @@
#ifndef STREAM_H
#define STREAM_H
//#include <mutex>
//#include <condition_variable>
//#include <vector>
//#include <chrono>
//#include "common/timeUtils.h"
#include "common/queue.h"
#include "common/sample_format.hpp"
#include "double_buffer.hpp"

View file

@ -23,9 +23,9 @@
#include "common/str_compat.hpp"
#include "common/utils.hpp"
#include "file_stream.hpp"
#include "librespot_stream.hpp"
#include "pipe_stream.hpp"
#include "process_stream.hpp"
#include "librespot_stream.hpp"
using namespace std;