mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-29 10:17:16 +02:00
subdirectory for encoder/decoder
This commit is contained in:
parent
e2362a2750
commit
30a88602dc
23 changed files with 9 additions and 9 deletions
|
@ -6,7 +6,7 @@ CC = /usr/bin/g++
|
|||
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" -I.. # -static-libgcc -static-libstdc++
|
||||
LDFLAGS = -lrt -lpthread -lboost_system -lboost_program_options -lasound -logg -lvorbis -lvorbisenc -lFLAC -lavahi-client -lavahi-common
|
||||
|
||||
OBJ = snapClient.o stream.o alsaPlayer.o clientConnection.o timeProvider.o oggDecoder.o pcmDecoder.o flacDecoder.o controller.o browseAvahi.o ../message/pcmChunk.o ../common/log.o ../message/sampleFormat.o
|
||||
OBJ = snapClient.o stream.o alsaPlayer.o clientConnection.o timeProvider.o decoder/oggDecoder.o decoder/pcmDecoder.o decoder/flacDecoder.o controller.o browseAvahi.o ../message/pcmChunk.o ../common/log.o ../message/sampleFormat.o
|
||||
BIN = snapclient
|
||||
|
||||
all: $(TARGET)
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
#include <iostream>
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include "oggDecoder.h"
|
||||
#include "pcmDecoder.h"
|
||||
#include "flacDecoder.h"
|
||||
#include "decoder/oggDecoder.h"
|
||||
#include "decoder/pcmDecoder.h"
|
||||
#include "decoder/flacDecoder.h"
|
||||
#include "alsaPlayer.h"
|
||||
#include "timeProvider.h"
|
||||
#include "common/log.h"
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
#include "decoder/decoder.h"
|
||||
#include "message/message.h"
|
||||
#include "clientConnection.h"
|
||||
#include "decoder.h"
|
||||
#include "stream.h"
|
||||
#include "pcmDevice.h"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ CC = /usr/bin/g++
|
|||
CFLAGS = -std=c++0x -Wall -Wno-unused-function -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" -I..
|
||||
LDFLAGS = -lrt -lpthread -lboost_system -lboost_program_options -lvorbis -lvorbisenc -logg -lFLAC -lavahi-client -lavahi-common
|
||||
|
||||
OBJ = snapServer.o controlServer.o flacEncoder.o pcmEncoder.o oggEncoder.o serverSession.o publishAvahi.o pipeReader.o encoderFactory.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
||||
OBJ = snapServer.o controlServer.o encoder/encoderFactory.o encoder/flacEncoder.o encoder/pcmEncoder.o encoder/oggEncoder.o serverSession.o publishAvahi.o pipeReader.o ../common/log.o ../message/pcmChunk.o ../message/sampleFormat.o
|
||||
BIN = snapserver
|
||||
|
||||
all: $(TARGET)
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include "pipeReader.h"
|
||||
#include "encoderFactory.h"
|
||||
#include "encoder/encoderFactory.h"
|
||||
#include "common/log.h"
|
||||
#include "common/snapException.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <thread>
|
||||
#include <atomic>
|
||||
#include <string>
|
||||
#include "encoder.h"
|
||||
#include "encoder/encoder.h"
|
||||
#include "message/sampleFormat.h"
|
||||
#include "message/header.h"
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "common/snapException.h"
|
||||
#include "message/sampleFormat.h"
|
||||
#include "message/message.h"
|
||||
#include "encoderFactory.h"
|
||||
#include "encoder/encoderFactory.h"
|
||||
#include "controlServer.h"
|
||||
#include "publishAvahi.h"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue