summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-06-15 16:33:25 +0300
committerStefan Kost <ensonic@users.sf.net>2010-06-15 16:33:25 +0300
commit5adb1ca7f388af2d81156f3ba4f89947f44acfae (patch)
tree112350c71a11ae8ee9a60f92cb97518ef81082be
parent57c89b71cb943b578df9dde18779f74b5f03fd19 (diff)
docs: make static string buffers bigger
-rwxr-xr-xgstdoc-scangobj7
1 files changed, 5 insertions, 2 deletions
diff --git a/gstdoc-scangobj b/gstdoc-scangobj
index 5e3f8ca..88a8556 100755
--- a/gstdoc-scangobj
+++ b/gstdoc-scangobj
@@ -143,8 +143,9 @@ xmlprint (gint indent, const gchar *tag, const gchar *data)
{
/* 20 spaces */
gchar indent_str[] = " ";
- static gchar str[1000];
- gchar conv[1000];
+ /* these need to be quite big */
+ static gchar str[50000];
+ gchar conv[50000];
gchar *s2 = conv;
if (data) {
@@ -257,6 +258,8 @@ get_object_types (void)
const gchar *pad_dir[] = { "unknown","source","sink" };
const gchar *pad_pres[] = { "always","sometimes","request" };
+ /*g_print (" feature: %s\\n", feature->name);*/
+
factory = GST_ELEMENT_FACTORY (feature);
factories = g_list_prepend (factories, factory);