summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2009-01-01 21:27:06 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2009-01-01 21:27:06 +0000
commit7dd8b92448bc2b6b872dc6f53b16e24456be9edd (patch)
tree34739c2341735d061a6cfb41cb9b7065aaff6894 /libs
parent428ead89b805ab961a4365d419fd23443091aa17 (diff)
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.
Diffstat (limited to 'libs')
-rw-r--r--libs/gst/base/gstbasetransform.c3
-rw-r--r--libs/gst/controller/gstinterpolationcontrolsource.c5
2 files changed, 5 insertions, 3 deletions
diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c
index 0c617d891d..4d1f653c5a 100644
--- a/libs/gst/base/gstbasetransform.c
+++ b/libs/gst/base/gstbasetransform.c
@@ -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;
}
diff --git a/libs/gst/controller/gstinterpolationcontrolsource.c b/libs/gst/controller/gstinterpolationcontrolsource.c
index 9b2a9cd970..ace4255c64 100644
--- a/libs/gst/controller/gstinterpolationcontrolsource.c
+++ b/libs/gst/controller/gstinterpolationcontrolsource.c
@@ -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);