mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/tags/gstvorbistag.c: replaced a g_warning which I added in my previous commit with GST_DEBUG
Original commit message from CVS: 2004-06-12 Christophe Fergeau <teuf@gnome.org> * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my previous commit with GST_DEBUG
This commit is contained in:
parent
08a2ed3be0
commit
7d95f78199
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-06-12 Christophe Fergeau <teuf@gnome.org>
|
||||||
|
|
||||||
|
* gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
|
||||||
|
previous commit with GST_DEBUG
|
||||||
|
|
||||||
2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -324,7 +324,7 @@ gst_vorbis_tag_add (GstTagList * list, const gchar * tag, const gchar * value)
|
||||||
|
|
||||||
if (!g_utf8_validate (value, -1, (const gchar **) &valid)) {
|
if (!g_utf8_validate (value, -1, (const gchar **) &valid)) {
|
||||||
valid = g_strndup (value, valid - value);
|
valid = g_strndup (value, valid - value);
|
||||||
g_warning ("Invalid vorbis comment tag, truncated it to %s\n", valid);
|
GST_DEBUG ("Invalid vorbis comment tag, truncated it to %s\n", valid);
|
||||||
} else {
|
} else {
|
||||||
valid = g_strdup (value);
|
valid = g_strdup (value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue