mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-11 16:16:42 +02:00
rename some files to snake_case
This commit is contained in:
parent
484cd5e672
commit
ea3921d8b7
14 changed files with 19 additions and 19 deletions
|
@ -1,9 +1,9 @@
|
|||
set(CLIENT_SOURCES
|
||||
clientConnection.cpp
|
||||
client_connection.cpp
|
||||
controller.cpp
|
||||
snapClient.cpp
|
||||
snapclient.cpp
|
||||
stream.cpp
|
||||
timeProvider.cpp
|
||||
time_provider.cpp
|
||||
decoder/pcmDecoder.cpp
|
||||
player/player.cpp)
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ DEBUG=-O3
|
|||
|
||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wpedantic -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DVERSION=\"$(VERSION)\" -I. -I.. -I../common
|
||||
LDFLAGS = $(ADD_LDFLAGS) -logg -lFLAC
|
||||
OBJ = snapClient.o stream.o clientConnection.o timeProvider.o player/player.o decoder/pcmDecoder.o decoder/oggDecoder.o decoder/flacDecoder.o controller.o ../common/sampleFormat.o
|
||||
OBJ = snapclient.o stream.o client_connection.o time_provider.o player/player.o decoder/pcmDecoder.o decoder/oggDecoder.o decoder/flacDecoder.o controller.o ../common/sampleFormat.o
|
||||
|
||||
|
||||
ifneq (,$(TARGET))
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "clientConnection.h"
|
||||
#include "client_connection.hpp"
|
||||
#include "common/aixlog.hpp"
|
||||
#include "common/snapException.h"
|
||||
#include "common/strCompat.h"
|
|
@ -16,7 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "controller.h"
|
||||
#include "controller.hpp"
|
||||
#include "decoder/pcmDecoder.h"
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
|
@ -31,7 +31,7 @@
|
|||
#include "common/snapException.h"
|
||||
#include "message/hello.h"
|
||||
#include "message/time.h"
|
||||
#include "timeProvider.h"
|
||||
#include "time_provider.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
#elif HAS_COREAUDIO
|
||||
#include "player/coreAudioPlayer.h"
|
||||
#endif
|
||||
#include "clientConnection.h"
|
||||
#include "metadata.h"
|
||||
#include "stream.h"
|
||||
#include "client_connection.hpp"
|
||||
#include "metadata.hpp"
|
||||
#include "stream.hpp"
|
||||
|
||||
|
||||
/// Forwards PCM data to the audio player
|
|
@ -22,7 +22,7 @@
|
|||
#include "common/aixlog.hpp"
|
||||
#include "common/endian.hpp"
|
||||
#include "pcmDevice.h"
|
||||
#include "stream.h"
|
||||
#include "stream.hpp"
|
||||
#include <atomic>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include "browseZeroConf/browsemDNS.h"
|
||||
#include "common/popl.hpp"
|
||||
#include "controller.h"
|
||||
#include "controller.hpp"
|
||||
|
||||
#ifdef HAS_ALSA
|
||||
#include "player/alsaPlayer.h"
|
||||
|
@ -33,7 +33,7 @@
|
|||
#include "common/signalHandler.h"
|
||||
#include "common/strCompat.h"
|
||||
#include "common/utils.h"
|
||||
#include "metadata.h"
|
||||
#include "metadata.hpp"
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
@ -117,7 +117,7 @@ int main(int argc, char** argv)
|
|||
if (versionSwitch->is_set())
|
||||
{
|
||||
cout << "snapclient v" << VERSION << "\n"
|
||||
<< "Copyright (C) 2014-2018 BadAix (snapcast@badaix.de).\n"
|
||||
<< "Copyright (C) 2014-2019 BadAix (snapcast@badaix.de).\n"
|
||||
<< "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
|
||||
<< "This is free software: you are free to change and redistribute it.\n"
|
||||
<< "There is NO WARRANTY, to the extent permitted by law.\n\n"
|
|
@ -16,9 +16,9 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "stream.h"
|
||||
#include "stream.hpp"
|
||||
#include "common/aixlog.hpp"
|
||||
#include "timeProvider.h"
|
||||
#include "time_provider.hpp"
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <string.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "common/queue.h"
|
||||
#include "common/sampleFormat.h"
|
||||
#include "doubleBuffer.h"
|
||||
#include "double_buffer.hpp"
|
||||
#include "message/message.h"
|
||||
#include "message/pcmChunk.h"
|
||||
#include <deque>
|
|
@ -16,7 +16,7 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#include "timeProvider.h"
|
||||
#include "time_provider.hpp"
|
||||
#include "common/aixlog.hpp"
|
||||
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
#define TIME_PROVIDER_H
|
||||
|
||||
#include "common/timeDefs.h"
|
||||
#include "doubleBuffer.h"
|
||||
#include "double_buffer.hpp"
|
||||
#include "message/message.h"
|
||||
#include <atomic>
|
||||
#include <chrono>
|
Loading…
Add table
Add a link
Reference in a new issue