[gst-cvs] common: docs: make static string buffers bigger
Stefan Kost
ensonic at kemper.freedesktop.org
Tue Jun 15 06:33:59 PDT 2010
Module: common
Branch: master
Commit: 5adb1ca7f388af2d81156f3ba4f89947f44acfae
URL: http://cgit.freedesktop.org/gstreamer/common/commit/?id=5adb1ca7f388af2d81156f3ba4f89947f44acfae
Author: Stefan Kost <ensonic at users.sf.net>
Date: Tue Jun 15 16:33:25 2010 +0300
docs: make static string buffers bigger
---
gstdoc-scangobj | 7 +++++--
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);
More information about the Gstreamer-commits
mailing list