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
5101ef4b
Commit
5101ef4b
authored
Sep 04, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tag*: move libtag.a sources to src/tag/
parent
ee9e2381
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
22 additions
and
26 deletions
+22
-26
Makefile.am
Makefile.am
+9
-13
DecoderThread.cxx
src/DecoderThread.cxx
+1
-1
SongUpdate.cxx
src/SongUpdate.cxx
+2
-2
DsdLib.cxx
src/decoder/DsdLib.cxx
+1
-1
MadDecoderPlugin.cxx
src/decoder/MadDecoderPlugin.cxx
+2
-2
WavpackDecoderPlugin.cxx
src/decoder/WavpackDecoderPlugin.cxx
+1
-1
EmbeddedCuePlaylistPlugin.cxx
src/playlist/EmbeddedCuePlaylistPlugin.cxx
+2
-2
ApeLoader.cxx
src/tag/ApeLoader.cxx
+0
-0
ApeLoader.hxx
src/tag/ApeLoader.hxx
+0
-0
ApeReplayGain.cxx
src/tag/ApeReplayGain.cxx
+0
-0
ApeReplayGain.hxx
src/tag/ApeReplayGain.hxx
+0
-0
ApeTag.cxx
src/tag/ApeTag.cxx
+0
-0
ApeTag.hxx
src/tag/ApeTag.hxx
+0
-0
TagId3.cxx
src/tag/TagId3.cxx
+0
-0
TagId3.hxx
src/tag/TagId3.hxx
+0
-0
TagRva2.cxx
src/tag/TagRva2.cxx
+0
-0
TagRva2.hxx
src/tag/TagRva2.hxx
+0
-0
aiff.c
src/tag/aiff.c
+0
-0
aiff.h
src/tag/aiff.h
+0
-0
riff.c
src/tag/riff.c
+0
-0
riff.h
src/tag/riff.h
+0
-0
dump_rva2.cxx
test/dump_rva2.cxx
+2
-2
read_tags.cxx
test/read_tags.cxx
+2
-2
No files found.
Makefile.am
View file @
5101ef4b
...
...
@@ -63,8 +63,6 @@ mpd_headers = \
src/open.h
\
src/Playlist.hxx
\
src/poison.h
\
src/riff.h
\
src/aiff.h
\
src/replay_gain_config.h
\
src/replay_gain_info.h
\
src/TimePrint.cxx src/TimePrint.hxx
\
...
...
@@ -432,15 +430,16 @@ TAG_LIBS = \
$(ID3TAG_LIBS)
libtag_a_SOURCES
=
\
src/
ApeLoader.cxx src
/ApeLoader.hxx
\
src/
ApeReplayGain.cxx src
/ApeReplayGain.hxx
\
src/
ApeTag.cxx src
/ApeTag.hxx
src/
tag/ApeLoader.cxx src/tag
/ApeLoader.hxx
\
src/
tag/ApeReplayGain.cxx src/tag
/ApeReplayGain.hxx
\
src/
tag/ApeTag.cxx src/tag
/ApeTag.hxx
if
HAVE_ID3TAG
libtag_a_SOURCES
+=
\
src/TagId3.cxx src/TagId3.hxx
\
src/TagRva2.cxx src/TagRva2.hxx
\
src/riff.c src/aiff.c
src/tag/TagId3.cxx src/tag/TagId3.hxx
\
src/tag/TagRva2.cxx src/tag/TagRva2.hxx
\
src/tag/riff.c src/tag/riff.h
\
src/tag/aiff.c src/tag/aiff.h
endif
# decoder plugins
...
...
@@ -1218,14 +1217,11 @@ test_read_tags_SOURCES = test/read_tags.cxx \
if
HAVE_ID3TAG
test_dump_rva2_LDADD
=
\
$(
ID3
TAG_LIBS)
\
$(TAG_LIBS)
\
libutil.a
\
$(GLIB_LIBS)
test_dump_rva2_SOURCES
=
test
/dump_rva2.cxx
\
src/riff.c src/aiff.c
\
src/TagHandler.cxx
\
src/TagId3.cxx
\
src/TagRva2.cxx
src/TagHandler.cxx
endif
test_run_filter_LDADD
=
\
...
...
src/DecoderThread.cxx
View file @
5101ef4b
...
...
@@ -33,7 +33,7 @@
#include "DecoderList.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "ApeReplayGain.hxx"
#include "
tag/
ApeReplayGain.hxx"
#include <glib.h>
...
...
src/SongUpdate.cxx
View file @
5101ef4b
...
...
@@ -30,8 +30,8 @@
#include "DecoderPlugin.hxx"
#include "DecoderList.hxx"
#include "TagHandler.hxx"
#include "TagId3.hxx"
#include "ApeTag.hxx"
#include "
tag/
TagId3.hxx"
#include "
tag/
ApeTag.hxx"
#include <glib.h>
...
...
src/decoder/DsdLib.cxx
View file @
5101ef4b
...
...
@@ -28,7 +28,7 @@
#include "DecoderAPI.hxx"
#include "util/bit_reverse.h"
#include "TagHandler.hxx"
#include "TagId3.hxx"
#include "
tag/
TagId3.hxx"
#include "util/Error.hxx"
#include <unistd.h>
...
...
src/decoder/MadDecoderPlugin.cxx
View file @
5101ef4b
...
...
@@ -21,8 +21,8 @@
#include "MadDecoderPlugin.hxx"
#include "DecoderAPI.hxx"
#include "conf.h"
#include "TagId3.hxx"
#include "TagRva2.hxx"
#include "
tag/
TagId3.hxx"
#include "
tag/
TagRva2.hxx"
#include "TagHandler.hxx"
#include "CheckAudioFormat.hxx"
#include "util/Error.hxx"
...
...
src/decoder/WavpackDecoderPlugin.cxx
View file @
5101ef4b
...
...
@@ -23,7 +23,7 @@
#include "InputStream.hxx"
#include "CheckAudioFormat.hxx"
#include "TagHandler.hxx"
#include "ApeTag.hxx"
#include "
tag/
ApeTag.hxx"
#include "util/Error.hxx"
#include <wavpack/wavpack.h>
...
...
src/playlist/EmbeddedCuePlaylistPlugin.cxx
View file @
5101ef4b
...
...
@@ -28,8 +28,8 @@
#include "PlaylistPlugin.hxx"
#include "Tag.hxx"
#include "TagHandler.hxx"
#include "TagId3.hxx"
#include "ApeTag.hxx"
#include "
tag/
TagId3.hxx"
#include "
tag/
ApeTag.hxx"
#include "Song.hxx"
#include "TagFile.hxx"
#include "cue/CueParser.hxx"
...
...
src/ApeLoader.cxx
→
src/
tag/
ApeLoader.cxx
View file @
5101ef4b
File moved
src/ApeLoader.hxx
→
src/
tag/
ApeLoader.hxx
View file @
5101ef4b
File moved
src/ApeReplayGain.cxx
→
src/
tag/
ApeReplayGain.cxx
View file @
5101ef4b
File moved
src/ApeReplayGain.hxx
→
src/
tag/
ApeReplayGain.hxx
View file @
5101ef4b
File moved
src/ApeTag.cxx
→
src/
tag/
ApeTag.cxx
View file @
5101ef4b
File moved
src/ApeTag.hxx
→
src/
tag/
ApeTag.hxx
View file @
5101ef4b
File moved
src/TagId3.cxx
→
src/
tag/
TagId3.cxx
View file @
5101ef4b
File moved
src/TagId3.hxx
→
src/
tag/
TagId3.hxx
View file @
5101ef4b
File moved
src/TagRva2.cxx
→
src/
tag/
TagRva2.cxx
View file @
5101ef4b
File moved
src/TagRva2.hxx
→
src/
tag/
TagRva2.hxx
View file @
5101ef4b
File moved
src/aiff.c
→
src/
tag/
aiff.c
View file @
5101ef4b
File moved
src/aiff.h
→
src/
tag/
aiff.h
View file @
5101ef4b
File moved
src/riff.c
→
src/
tag/
riff.c
View file @
5101ef4b
File moved
src/riff.h
→
src/
tag/
riff.h
View file @
5101ef4b
File moved
test/dump_rva2.cxx
View file @
5101ef4b
...
...
@@ -18,8 +18,8 @@
*/
#include "config.h"
#include "TagId3.hxx"
#include "TagRva2.hxx"
#include "
tag/
TagId3.hxx"
#include "
tag/
TagRva2.hxx"
#include "replay_gain_info.h"
#include "conf.h"
#include "Tag.hxx"
...
...
test/read_tags.cxx
View file @
5101ef4b
...
...
@@ -25,8 +25,8 @@
#include "InputStream.hxx"
#include "AudioFormat.hxx"
#include "TagHandler.hxx"
#include "TagId3.hxx"
#include "ApeTag.hxx"
#include "
tag/
TagId3.hxx"
#include "
tag/
ApeTag.hxx"
#include "util/Error.hxx"
#include <glib.h>
...
...
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