mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-01 11:17:36 +02:00
rename some files from camel to snake case
This commit is contained in:
parent
c2a306032a
commit
c2488091fe
9 changed files with 11 additions and 11 deletions
|
@ -1,11 +1,11 @@
|
||||||
set(SERVER_SOURCES
|
set(SERVER_SOURCES
|
||||||
config.cpp
|
config.cpp
|
||||||
controlServer.cpp
|
control_server.cpp
|
||||||
control_session_tcp.cpp
|
control_session_tcp.cpp
|
||||||
control_session_http.cpp
|
control_session_http.cpp
|
||||||
snapServer.cpp
|
snapserver.cpp
|
||||||
streamServer.cpp
|
stream_server.cpp
|
||||||
streamSession.cpp
|
stream_session.cpp
|
||||||
encoder/encoderFactory.cpp
|
encoder/encoderFactory.cpp
|
||||||
encoder/pcmEncoder.cpp
|
encoder/pcmEncoder.cpp
|
||||||
streamreader/base64.cpp
|
streamreader/base64.cpp
|
||||||
|
|
|
@ -36,7 +36,7 @@ DEBUG=-O3
|
||||||
|
|
||||||
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DHAS_VORBIS -DHAS_VORBIS_ENC -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DHAS_VORBIS -DHAS_VORBIS_ENC -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
|
||||||
LDFLAGS = $(ADD_LDFLAGS) -lvorbis -lvorbisenc -logg -lFLAC
|
LDFLAGS = $(ADD_LDFLAGS) -lvorbis -lvorbisenc -logg -lFLAC
|
||||||
OBJ = snapServer.o config.o controlServer.o controlSession.o streamServer.o streamSession.o streamreader/streamUri.o streamreader/base64.o streamreader/streamManager.o streamreader/pcmStream.o streamreader/pipeStream.o streamreader/fileStream.o streamreader/processStream.o streamreader/airplayStream.o streamreader/spotifyStream.o streamreader/watchdog.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o ../common/sampleFormat.o
|
OBJ = snapserver.o config.o control_server.o control_session.o stream_server.o stream_session.o streamreader/streamUri.o streamreader/base64.o streamreader/streamManager.o streamreader/pcmStream.o streamreader/pipeStream.o streamreader/fileStream.o streamreader/processStream.o streamreader/airplayStream.o streamreader/spotifyStream.o streamreader/watchdog.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o ../common/sampleFormat.o
|
||||||
|
|
||||||
ifneq (,$(TARGET))
|
ifneq (,$(TARGET))
|
||||||
CXXFLAGS += -D$(TARGET)
|
CXXFLAGS += -D$(TARGET)
|
||||||
|
|
|
@ -16,7 +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 "controlServer.h"
|
#include "control_server.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
#include "common/snapException.h"
|
#include "common/snapException.h"
|
||||||
#include "common/utils.h"
|
#include "common/utils.h"
|
|
@ -32,7 +32,7 @@
|
||||||
#include "encoder/encoderFactory.h"
|
#include "encoder/encoderFactory.h"
|
||||||
#include "message/message.h"
|
#include "message/message.h"
|
||||||
#include "server_settings.hpp"
|
#include "server_settings.hpp"
|
||||||
#include "streamServer.h"
|
#include "stream_server.hpp"
|
||||||
#if defined(HAS_AVAHI) || defined(HAS_BONJOUR)
|
#if defined(HAS_AVAHI) || defined(HAS_BONJOUR)
|
||||||
#include "publishZeroConf/publishmDNS.h"
|
#include "publishZeroConf/publishmDNS.h"
|
||||||
#endif
|
#endif
|
|
@ -16,7 +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 "streamServer.h"
|
#include "stream_server.hpp"
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "message/hello.h"
|
#include "message/hello.h"
|
|
@ -29,13 +29,13 @@
|
||||||
|
|
||||||
#include "common/queue.h"
|
#include "common/queue.h"
|
||||||
#include "common/sampleFormat.h"
|
#include "common/sampleFormat.h"
|
||||||
#include "controlServer.h"
|
#include "control_server.hpp"
|
||||||
#include "jsonrpcpp.hpp"
|
#include "jsonrpcpp.hpp"
|
||||||
#include "message/codecHeader.h"
|
#include "message/codecHeader.h"
|
||||||
#include "message/message.h"
|
#include "message/message.h"
|
||||||
#include "message/serverSettings.h"
|
#include "message/serverSettings.h"
|
||||||
#include "server_settings.hpp"
|
#include "server_settings.hpp"
|
||||||
#include "streamSession.h"
|
#include "stream_session.hpp"
|
||||||
#include "streamreader/streamManager.h"
|
#include "streamreader/streamManager.h"
|
||||||
|
|
||||||
|
|
|
@ -16,7 +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 "streamSession.h"
|
#include "stream_session.hpp"
|
||||||
|
|
||||||
#include "aixlog.hpp"
|
#include "aixlog.hpp"
|
||||||
#include "message/pcmChunk.h"
|
#include "message/pcmChunk.h"
|
Loading…
Add table
Reference in a new issue