ensonic gstreamer: gstreamer/ gstreamer/gst/ gstreamer/libs/gst/base/ gstreamer/libs/gst/controller/ gstreamer/plugins/elements/
[email protected] Thu, 1 Jan 2009 13:27:20 -0800 (PST)
| Newsgroups | gmane.comp.video.gstreamer.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVS Root: /cvs/gstreamer
Module: gstreamer
Changes by: ensonic
Date: Thu Jan 01 2009 21:27:20 UTC
Log message:
* 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.
Modified files:
. : ChangeLog
gst : gstdebugutils.c gstutils.c
libs/gst/base : gstbasetransform.c
libs/gst/controller: gstinterpolationcontrolsource.c
plugins/elements: gstcapsfilter.c
Links:
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/ChangeLog.diff?r1=1.4207&r2=1.4208
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/gst/gstdebugutils.c.diff?r1=1.21&r2=1.22
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/gst/gstutils.c.diff?r1=1.192&r2=1.193
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/libs/gst/base/gstbasetransform.c.diff?r1=1.133&r2=1.134
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/libs/gst/controller/gstinterpolationcontrolsource.c.diff?r1=1.7&r2=1.8
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/plugins/elements/gstcapsfilter.c.diff?r1=1.36&r2=1.37
====Begin Diffs====
Index: ChangeLog
===================================================================
RCS file: /cvs/gstreamer/gstreamer/ChangeLog,v
retrieving revision 1.4207
retrieving revision 1.4208
diff -u -d -r1.4207 -r1.4208
--- ChangeLog 27 Dec 2008 17:41:09 -0000 1.4207
+++ ChangeLog 1 Jan 2009 21:27:02 -0000 1.4208
@@ -1,3 +1,20 @@
+2009-01-01 Stefan Kost <[email protected]>
+
+ * 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: gstdebugutils.c
RCS file: /cvs/gstreamer/gstreamer/gst/gstdebugutils.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- gstdebugutils.c 12 Jul 2008 09:59:32 -0000 1.21
+++ gstdebugutils.c 1 Jan 2009 21:27:04 -0000 1.22
@@ -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"
Index: gstutils.c
RCS file: /cvs/gstreamer/gstreamer/gst/gstutils.c,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -d -r1.192 -r1.193
--- gstutils.c 17 Dec 2008 09:37:47 -0000 1.192
+++ gstutils.c 1 Jan 2009 21:27:05 -0000 1.193
@@ -2533,6 +2533,7 @@
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: gstbasetransform.c
RCS file: /cvs/gstreamer/gstreamer/libs/gst/base/gstbasetransform.c,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -d -r1.133 -r1.134
--- gstbasetransform.c 8 Dec 2008 18:35:44 -0000 1.133
+++ gstbasetransform.c 1 Jan 2009 21:27:05 -0000 1.134
@@ -1033,7 +1033,8 @@
{
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: gstinterpolationcontrolsource.c
RCS file: /cvs/gstreamer/gstreamer/libs/gst/controller/gstinterpolationcontrolsource.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- gstinterpolationcontrolsource.c 8 Jul 2008 11:20:22 -0000 1.7
+++ gstinterpolationcontrolsource.c 1 Jan 2009 21:27:05 -0000 1.8
@@ -125,8 +125,9 @@
* 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: gstcapsfilter.c
RCS file: /cvs/gstreamer/gstreamer/plugins/elements/gstcapsfilter.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- gstcapsfilter.c 28 Sep 2008 21:19:15 -0000 1.36
+++ gstcapsfilter.c 1 Jan 2009 21:27:06 -0000 1.37
@@ -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.
------------------------------------------------------------------------------
_______________________________________________
gstreamer-cvs-verbose mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gstreamer-cvs-verbose