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 <deque>
#include <iostream> #include <iostream>

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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