Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
ed6c6296
Commit
ed6c6296
authored
May 02, 2016
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
{de,en}coder/{vorbis,flac,opus}: move several libraries to lib/xiph/
parent
b27a4181
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
20 additions
and
22 deletions
+20
-22
Makefile.am
Makefile.am
+12
-12
configure.ac
configure.ac
+0
-2
OggFind.cxx
src/decoder/plugins/OggFind.cxx
+1
-1
OpusDecoderPlugin.cxx
src/decoder/plugins/OpusDecoderPlugin.cxx
+1
-1
VorbisDecoderPlugin.cxx
src/decoder/plugins/VorbisDecoderPlugin.cxx
+1
-1
OpusEncoderPlugin.cxx
src/encoder/plugins/OpusEncoderPlugin.cxx
+2
-2
VorbisEncoderPlugin.cxx
src/encoder/plugins/VorbisEncoderPlugin.cxx
+2
-2
OggSerial.cxx
src/lib/xiph/OggSerial.cxx
+0
-0
OggSerial.hxx
src/lib/xiph/OggSerial.hxx
+0
-0
OggStream.hxx
src/lib/xiph/OggStream.hxx
+0
-0
OggSyncState.hxx
src/lib/xiph/OggSyncState.hxx
+0
-0
OggUtil.cxx
src/lib/xiph/OggUtil.cxx
+0
-0
OggUtil.hxx
src/lib/xiph/OggUtil.hxx
+0
-0
VorbisComments.cxx
src/lib/xiph/VorbisComments.cxx
+1
-1
VorbisComments.hxx
src/lib/xiph/VorbisComments.hxx
+0
-0
No files found.
Makefile.am
View file @
ed6c6296
...
...
@@ -20,6 +20,7 @@ noinst_LIBRARIES = \
libevent.a
\
libicu.a
\
libpcm.a
\
libxiph.a
\
libconf.a
\
libtag.a
\
libinput.a
\
...
...
@@ -585,10 +586,19 @@ if HAVE_XIPH
noinst_LIBRARIES
+=
libxiph.a
libxiph_a_SOURCES
=
\
src/lib/xiph/VorbisComments.cxx src/lib/xiph/VorbisComments.hxx
\
src/lib/xiph/XiphTags.cxx src/lib/xiph/XiphTags.hxx
libxiph_a_CPPFLAGS
=
$(AM_CPPFLAGS)
\
$(OGG_CFLAGS)
if
HAVE_OGG
libxiph_a_SOURCES
+=
\
src/lib/xiph/OggSerial.cxx src/lib/xiph/OggSerial.hxx
\
src/lib/xiph/OggUtil.cxx src/lib/xiph/OggUtil.hxx
\
src/lib/xiph/OggSyncState.hxx
\
src/lib/xiph/OggStream.hxx
endif
XIPH_LIBS
=
libxiph.a
endif
...
...
@@ -988,9 +998,6 @@ endif
if
ENABLE_OPUS
libdecoder_a_SOURCES
+=
\
src/decoder/plugins/OggUtil.cxx
\
src/decoder/plugins/OggUtil.hxx
\
src/decoder/plugins/OggSyncState.hxx
\
src/decoder/plugins/OggFind.cxx src/decoder/plugins/OggFind.hxx
\
src/decoder/plugins/OpusDomain.cxx src/decoder/plugins/OpusDomain.hxx
\
src/decoder/plugins/OpusReader.hxx
\
...
...
@@ -1027,7 +1034,6 @@ endif
if
ENABLE_VORBIS_DECODER
libdecoder_a_SOURCES
+=
\
src/decoder/plugins/VorbisDomain.cxx src/decoder/plugins/VorbisDomain.hxx
\
src/decoder/plugins/VorbisComments.cxx src/decoder/plugins/VorbisComments.hxx
\
src/decoder/plugins/VorbisDecoderPlugin.cxx src/decoder/plugins/VorbisDecoderPlugin.h
endif
...
...
@@ -1120,6 +1126,7 @@ libencoder_plugins_a_CPPFLAGS = $(AM_CPPFLAGS) \
ENCODER_LIBS
=
\
libencoder_plugins.a
\
$(XIPH_LIBS)
\
$(LAME_LIBS)
\
$(TWOLAME_LIBS)
\
$(FLAC_LIBS)
\
...
...
@@ -1132,18 +1139,10 @@ libencoder_plugins_a_SOURCES = \
src/encoder/EncoderInterface.hxx
\
src/encoder/EncoderPlugin.hxx
\
src/encoder/ToOutputStream.cxx src/encoder/ToOutputStream.hxx
\
src/encoder/plugins/OggStream.hxx
\
src/encoder/plugins/NullEncoderPlugin.cxx
\
src/encoder/plugins/NullEncoderPlugin.hxx
\
src/encoder/EncoderList.cxx src/encoder/EncoderList.hxx
if
HAVE_OGG_ENCODER
libencoder_plugins_a_SOURCES
+=
\
src/encoder/plugins/OggSerial.cxx
\
src/encoder/plugins/OggSerial.hxx
\
src/encoder/plugins/OggStream.hxx
endif
if
ENABLE_WAVE_ENCODER
libencoder_plugins_a_SOURCES
+=
\
src/encoder/plugins/WaveEncoderPlugin.cxx
\
...
...
@@ -1825,6 +1824,7 @@ test_dump_playlist_LDADD = \
$(FLAC_LIBS)
\
$(DECODER_LIBS)
\
$(TAG_LIBS)
\
libxiph.a
\
$(INPUT_LIBS)
\
$(ARCHIVE_LIBS)
\
libconf.a
\
...
...
configure.ac
View file @
ed6c6296
...
...
@@ -1086,8 +1086,6 @@ fi
MPD_DEFINE_CONDITIONAL(enable_encoder, ENABLE_ENCODER,
[the encoder plugins])
AM_CONDITIONAL(HAVE_OGG_ENCODER, test x$enable_vorbis_encoder = xyes || test x$enable_opus = xyes)
dnl ---------------------------------------------------------------------------
dnl Audio Output Plugins
dnl ---------------------------------------------------------------------------
...
...
src/decoder/plugins/OggFind.cxx
View file @
ed6c6296
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "OggFind.hxx"
#include "OggSyncState.hxx"
#include "
lib/xiph/
OggSyncState.hxx"
#include "input/InputStream.hxx"
#include "util/Error.hxx"
...
...
src/decoder/plugins/OpusDecoderPlugin.cxx
View file @
ed6c6296
...
...
@@ -23,7 +23,7 @@
#include "OpusHead.hxx"
#include "OpusTags.hxx"
#include "OggFind.hxx"
#include "OggSyncState.hxx"
#include "
lib/xiph/
OggSyncState.hxx"
#include "../DecoderAPI.hxx"
#include "decoder/Reader.hxx"
#include "input/Reader.hxx"
...
...
src/decoder/plugins/VorbisDecoderPlugin.cxx
View file @
ed6c6296
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "VorbisDecoderPlugin.h"
#include "VorbisComments.hxx"
#include "
lib/xiph/
VorbisComments.hxx"
#include "VorbisDomain.hxx"
#include "../DecoderAPI.hxx"
#include "input/InputStream.hxx"
...
...
src/encoder/plugins/OpusEncoderPlugin.cxx
View file @
ed6c6296
...
...
@@ -19,8 +19,8 @@
#include "config.h"
#include "OpusEncoderPlugin.hxx"
#include "OggStream.hxx"
#include "OggSerial.hxx"
#include "
lib/xiph/
OggStream.hxx"
#include "
lib/xiph/
OggSerial.hxx"
#include "../EncoderAPI.hxx"
#include "AudioFormat.hxx"
#include "config/ConfigError.hxx"
...
...
src/encoder/plugins/VorbisEncoderPlugin.cxx
View file @
ed6c6296
...
...
@@ -19,8 +19,8 @@
#include "config.h"
#include "VorbisEncoderPlugin.hxx"
#include "OggStream.hxx"
#include "OggSerial.hxx"
#include "
lib/xiph/
OggStream.hxx"
#include "
lib/xiph/
OggSerial.hxx"
#include "../EncoderAPI.hxx"
#include "AudioFormat.hxx"
#include "config/ConfigError.hxx"
...
...
src/
encoder/plugins
/OggSerial.cxx
→
src/
lib/xiph
/OggSerial.cxx
View file @
ed6c6296
File moved
src/
encoder/plugins
/OggSerial.hxx
→
src/
lib/xiph
/OggSerial.hxx
View file @
ed6c6296
File moved
src/
encoder/plugins
/OggStream.hxx
→
src/
lib/xiph
/OggStream.hxx
View file @
ed6c6296
File moved
src/
decoder/plugins
/OggSyncState.hxx
→
src/
lib/xiph
/OggSyncState.hxx
View file @
ed6c6296
File moved
src/
decoder/plugins
/OggUtil.cxx
→
src/
lib/xiph
/OggUtil.cxx
View file @
ed6c6296
File moved
src/
decoder/plugins
/OggUtil.hxx
→
src/
lib/xiph
/OggUtil.hxx
View file @
ed6c6296
File moved
src/
decoder/plugins
/VorbisComments.cxx
→
src/
lib/xiph
/VorbisComments.cxx
View file @
ed6c6296
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "VorbisComments.hxx"
#include "
lib/xiph/
XiphTags.hxx"
#include "XiphTags.hxx"
#include "tag/TagTable.hxx"
#include "tag/TagHandler.hxx"
#include "tag/TagBuilder.hxx"
...
...
src/
decoder/plugins
/VorbisComments.hxx
→
src/
lib/xiph
/VorbisComments.hxx
View file @
ed6c6296
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment