move pcmChunk implementation into header

This commit is contained in:
badaix 2018-03-16 18:29:13 +01:00
parent 54a8ca824f
commit b26bd41aff
10 changed files with 65 additions and 100 deletions

View file

@ -7,7 +7,7 @@ set(CLIENT_SOURCES
decoder/pcmDecoder.cpp
player/player.cpp)
set(CLIENT_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} common message)
set(CLIENT_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} common)
set(CLIENT_INCLUDE
${CMAKE_SOURCE_DIR}/client

View file

@ -36,7 +36,7 @@ DEBUG=-O3
CXXFLAGS += $(ADD_CFLAGS) -std=c++0x -Wall -Wno-unused-function $(DEBUG) -DHAS_FLAC -DHAS_OGG -DASIO_STANDALONE -DVERSION=\"$(VERSION)\" -I. -I.. -isystem ../externals/asio/asio/include -I../externals/popl/include -I../externals/aixlog/include -I../externals -I../common
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/message/pcmChunk.o ../common/sampleFormat.o
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
ifneq (,$(TARGET))