aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/plugins/VorbisComments.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-09-24 20:56:25 +0200
committerMax Kellermann <max@duempel.org>2014-09-24 21:50:42 +0200
commitd1e31261fe7d58f9ea50c93b58ace9befd5ea0cc (patch)
tree82c6f314c238861a369735539683213d1a5be52c /src/decoder/plugins/VorbisComments.cxx
parent05dd9acba8c7534c8e8f01bf15342ab7493d28fc (diff)
downloadmpd-d1e31261fe7d58f9ea50c93b58ace9befd5ea0cc.tar.gz
mpd-d1e31261fe7d58f9ea50c93b58ace9befd5ea0cc.tar.xz
mpd-d1e31261fe7d58f9ea50c93b58ace9befd5ea0cc.zip
decoder/{vorbis,flac}: move duplicate code to tag/VorbisComment.cxx
Diffstat (limited to '')
-rw-r--r--src/decoder/plugins/VorbisComments.cxx14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/decoder/plugins/VorbisComments.cxx b/src/decoder/plugins/VorbisComments.cxx
index 2a0820ab5..f1dcdc1b0 100644
--- a/src/decoder/plugins/VorbisComments.cxx
+++ b/src/decoder/plugins/VorbisComments.cxx
@@ -23,26 +23,14 @@
#include "tag/TagTable.hxx"
#include "tag/TagHandler.hxx"
#include "tag/TagBuilder.hxx"
+#include "tag/VorbisComment.hxx"
#include "ReplayGainInfo.hxx"
#include "util/ASCII.hxx"
#include "util/SplitString.hxx"
#include <stddef.h>
-#include <string.h>
#include <stdlib.h>
-static const char *
-vorbis_comment_value(const char *comment, const char *needle)
-{
- size_t len = strlen(needle);
-
- if (StringEqualsCaseASCII(comment, needle, len) &&
- comment[len] == '=')
- return comment + len + 1;
-
- return nullptr;
-}
-
bool
vorbis_comments_to_replay_gain(ReplayGainInfo &rgi, char **comments)
{