ext/ladspa/gstladspa.c: make sure longname, description and author are valid UTF-8
authorBenjamin Otte <otte@gnome.org>
Mon, 19 Jul 2004 21:44:49 +0000 (21:44 +0000)
committerBenjamin Otte <otte@gnome.org>
Mon, 19 Jul 2004 21:44:49 +0000 (21:44 +0000)
Original commit message from CVS:
* ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
make sure longname, description and author are valid UTF-8

ChangeLog
ext/ladspa/gstladspa.c

index 090463e..5ace675 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-19  Benjamin Otte  <otte@gnome.org>
+
+       * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
+         make sure longname, description and author are valid UTF-8
+
 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
index 191a7d9..0f1982f 100644 (file)
@@ -119,9 +119,13 @@ gst_ladspa_base_init (GstLADSPAClass * klass)
 
   /* construct the element details struct */
   details = g_new0 (GstElementDetails, 1);
-  details->longname = g_strdup (desc->Name);
+  details->longname = g_locale_to_utf8 (desc->Name, -1, NULL, NULL, NULL);
+  if (!details->longname)
+    details->longname = g_strdup ("no description available");
   details->description = details->longname;
-  details->author = g_strdup (desc->Maker);
+  details->author = g_locale_to_utf8 (desc->Maker, -1, NULL, NULL, NULL);
+  if (!details->author)
+    details->author = g_strdup ("no author available");
   if ((klass->numsinkpads > 0) && (klass->numsrcpads > 0))
     details->klass = "Filter/Effect/Audio/LADSPA";
   else if ((klass->numsinkpads == 0) && (klass->numsrcpads > 0))