decoder/{vorbis,flac,opus}: move OggCodec.cxx to libxiph.a

This commit is contained in:
Max Kellermann 2016-05-03 12:54:47 +02:00
parent 1c91d19163
commit 7adbd00811
6 changed files with 17 additions and 4 deletions

View File

@ -578,6 +578,19 @@ libpcm_a_SOURCES += \
src/pcm/SoxrResampler.cxx src/pcm/SoxrResampler.hxx
endif
# Xiph codec support library
if HAVE_XIPH
noinst_LIBRARIES += libxiph.a
libxiph_a_SOURCES = \
src/lib/xiph/XiphTags.cxx src/lib/xiph/XiphTags.hxx
XIPH_LIBS = libxiph.a
endif
# File system library
FS_LIBS = libfs.a
@ -925,6 +938,7 @@ libdecoder_a_CPPFLAGS = $(AM_CPPFLAGS) \
DECODER_LIBS = \
libdecoder.a \
$(XIPH_LIBS) \
$(VORBIS_LIBS) $(TREMOR_LIBS) \
$(FLAC_LIBS) \
$(SNDFILE_LIBS) \
@ -1005,7 +1019,6 @@ endif
if HAVE_XIPH
libdecoder_a_SOURCES += \
src/decoder/plugins/XiphTags.cxx src/decoder/plugins/XiphTags.hxx \
src/decoder/plugins/OggCodec.cxx src/decoder/plugins/OggCodec.hxx
endif

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "FlacMetadata.hxx"
#include "XiphTags.hxx"
#include "lib/xiph/XiphTags.hxx"
#include "MixRampInfo.hxx"
#include "tag/TagHandler.hxx"
#include "tag/TagTable.hxx"

View File

@ -20,7 +20,7 @@
#include "config.h"
#include "OpusTags.hxx"
#include "OpusReader.hxx"
#include "XiphTags.hxx"
#include "lib/xiph/XiphTags.hxx"
#include "tag/TagHandler.hxx"
#include "tag/Tag.hxx"
#include "ReplayGainInfo.hxx"

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "VorbisComments.hxx"
#include "XiphTags.hxx"
#include "lib/xiph/XiphTags.hxx"
#include "tag/TagTable.hxx"
#include "tag/TagHandler.hxx"
#include "tag/TagBuilder.hxx"