gst/gstdebugutils.c: Add some ideas, how to make the graph smaller.
authorStefan Kost <ensonic@users.sourceforge.net>
Thu, 1 Jan 2009 21:27:06 +0000 (21:27 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Thu, 1 Jan 2009 21:27:06 +0000 (21:27 +0000)
Original commit message from CVS:
* gst/gstdebugutils.c:
Add some ideas, how to make the graph smaller.
* gst/gstutils.c:
Add a comment from a debug session.
* libs/gst/base/gstbasetransform.c:
Log more context.
* libs/gst/controller/gstinterpolationcontrolsource.c:
Indet.
* plugins/elements/gstcapsfilter.c:
Fix typo in docs.

ChangeLog
gst/gstdebugutils.c
gst/gstutils.c
libs/gst/base/gstbasetransform.c
libs/gst/controller/gstinterpolationcontrolsource.c
plugins/elements/gstcapsfilter.c

index ab7cd2e..cccf275 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2009-01-01  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst/gstdebugutils.c:
+         Add some ideas, how to make the graph smaller.
+
+       * gst/gstutils.c:
+         Add a comment from a debug session.
+
+       * libs/gst/base/gstbasetransform.c:
+         Log more context.
+
+       * libs/gst/controller/gstinterpolationcontrolsource.c:
+         Indet.
+
+       * plugins/elements/gstcapsfilter.c:
+         Fix typo in docs.
+
 2008-12-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
 
        * gst/gstbus.c: (gst_bus_dispose), (gst_bus_get_property),
index 1d0463e..c115a10 100644 (file)
  * edge [ constraint=false ];
  *   this creates strange graphs ("minlen=0" is better)
  * try puting src/sink ghostpads for each bin into invisible clusters
+ *
+ * for more compact nodes, try
+ * - changing node-shape from box into record
+ * - use labels like : element [ label="{element | <src> src | <sink> sink}"]
+ * - point to record-connectors : element1:src -> element2:sink
  */
 
 #include "gst_private.h"
index 3442b09..53c4f6c 100644 (file)
@@ -2533,6 +2533,7 @@ gst_buffer_stamp (GstBuffer * dest, const GstBuffer * src)
 static gboolean
 intersect_caps_func (GstPad * pad, GValue * ret, GstPad * orig)
 {
+  /* skip the pad, the request came from */
   if (pad != orig) {
     GstCaps *peercaps, *existing;
 
index 0c617d8..4d1f653 100644 (file)
@@ -1033,7 +1033,8 @@ no_transform_possible:
   {
     GST_WARNING_OBJECT (trans,
         "transform could not transform %" GST_PTR_FORMAT
-        " in anything we support", caps);
+        " in anything we support (othercaps %" GST_PTR_FORMAT ")",
+        caps, othercaps);
     ret = FALSE;
     goto done;
   }
index 9b2a9cd..ace4255 100644 (file)
@@ -125,8 +125,9 @@ gst_interpolation_control_source_new (void)
  * Returns: %TRUE if the interpolation mode could be set, %FALSE otherwise
  */
 gboolean
-    gst_interpolation_control_source_set_interpolation_mode
-    (GstInterpolationControlSource * self, GstInterpolateMode mode) {
+gst_interpolation_control_source_set_interpolation_mode
+    (GstInterpolationControlSource * self, GstInterpolateMode mode)
+{
   gboolean ret = TRUE;
   GstControlSource *csource = GST_CONTROL_SOURCE (self);
 
index bcef6ae..be30c33 100644 (file)
@@ -22,7 +22,7 @@
 /**
  * SECTION:element-capsfilter
  *
- * The element does not modify data as such, but can enforce limmitations on the
+ * The element does not modify data as such, but can enforce limitations on the
  * data format.
  */