gst/gstdebugutils.c: Add some ideas, how to make the graph smaller.

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.
This commit is contained in:
Stefan Kost 2009-01-01 21:27:06 +00:00
parent 428ead89b8
commit 7dd8b92448
6 changed files with 29 additions and 4 deletions

View file

@ -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),

View file

@ -22,6 +22,11 @@
* 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"

View 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;

View 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;
}

View 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);

View 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.
*/