aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-04 17:43:01 +0100
committerMax Kellermann <max@duempel.org>2014-12-04 17:43:01 +0100
commit4e2f4e2091103ea571602c444642ff04c2bf5a2f (patch)
treec9673af59272ac77d3ee594e79e7bacb462b1f2c /src/encoder
parente69bef3ce389967b8239648e4b9eaec42217bc95 (diff)
downloadmpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.tar.gz
mpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.tar.xz
mpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.zip
util/StringUtil: add ToUpperASCII()
Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib.
Diffstat (limited to 'src/encoder')
-rw-r--r--src/encoder/plugins/VorbisEncoderPlugin.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/encoder/plugins/VorbisEncoderPlugin.cxx b/src/encoder/plugins/VorbisEncoderPlugin.cxx
index 3cc941220..01c9910a0 100644
--- a/src/encoder/plugins/VorbisEncoderPlugin.cxx
+++ b/src/encoder/plugins/VorbisEncoderPlugin.cxx
@@ -25,14 +25,13 @@
#include "tag/Tag.hxx"
#include "AudioFormat.hxx"
#include "config/ConfigError.hxx"
+#include "util/StringUtil.hxx"
#include "util/NumberParser.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include <vorbis/vorbisenc.h>
-#include <glib.h>
-
struct vorbis_encoder {
/** the base class */
Encoder encoder;
@@ -273,9 +272,9 @@ static void
copy_tag_to_vorbis_comment(vorbis_comment *vc, const Tag &tag)
{
for (const auto &item : tag) {
- char *name = g_ascii_strup(tag_item_names[item.type], -1);
+ char name[64];
+ ToUpperASCII(name, tag_item_names[item.type], sizeof(name));
vorbis_comment_add_tag(vc, name, item.value);
- g_free(name);
}
}