mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:26:14 +00:00
libs/gst/base/gstbasetransform.c: Extra debug output
Original commit message from CVS: * libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps): Extra debug output * tests/check/libs/gdp.c: (gst_dp_suite): Take a whack at fixing the ppc compile using a different define to disable the broken test. * tests/check/pipelines/parse-launch.c: (GST_START_TEST): Remove excess g_print()
This commit is contained in:
parent
e76af7f73f
commit
38aad233cc
4 changed files with 18 additions and 4 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2006-07-27 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
|
* libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
|
||||||
|
Extra debug output
|
||||||
|
* tests/check/libs/gdp.c: (gst_dp_suite):
|
||||||
|
Take a whack at fixing the ppc compile using a different define to
|
||||||
|
disable the broken test.
|
||||||
|
|
||||||
|
* tests/check/pipelines/parse-launch.c: (GST_START_TEST):
|
||||||
|
Remove excess g_print()
|
||||||
|
|
||||||
2006-07-27 Jan Schmidt <thaytan@mad.scientist.com>
|
2006-07-27 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
|
* tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
|
||||||
|
|
|
@ -770,7 +770,8 @@ gst_base_transform_setcaps (GstPad * pad, GstCaps * caps)
|
||||||
if (!peer_checked && otherpeer && !gst_pad_accept_caps (otherpeer, othercaps))
|
if (!peer_checked && otherpeer && !gst_pad_accept_caps (otherpeer, othercaps))
|
||||||
goto peer_no_accept;
|
goto peer_no_accept;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (trans, "got final caps %" GST_PTR_FORMAT, othercaps);
|
GST_DEBUG_OBJECT (trans, "Input caps were %" GST_PTR_FORMAT
|
||||||
|
", and got final caps %" GST_PTR_FORMAT, caps, othercaps);
|
||||||
|
|
||||||
trans->have_same_caps = gst_caps_is_equal (caps, othercaps);
|
trans->have_same_caps = gst_caps_is_equal (caps, othercaps);
|
||||||
GST_DEBUG_OBJECT (trans, "have_same_caps: %d", trans->have_same_caps);
|
GST_DEBUG_OBJECT (trans, "have_same_caps: %d", trans->have_same_caps);
|
||||||
|
|
|
@ -286,7 +286,7 @@ gst_dp_suite (void)
|
||||||
|
|
||||||
suite_add_tcase (s, tc_chain);
|
suite_add_tcase (s, tc_chain);
|
||||||
tcase_add_test (tc_chain, test_conversion);
|
tcase_add_test (tc_chain, test_conversion);
|
||||||
#ifndef __PPC64__
|
#if !defined (__ppc64)
|
||||||
tcase_add_test (tc_chain, test_buffer);
|
tcase_add_test (tc_chain, test_buffer);
|
||||||
#endif
|
#endif
|
||||||
tcase_add_test (tc_chain, test_caps);
|
tcase_add_test (tc_chain, test_caps);
|
||||||
|
|
|
@ -324,9 +324,11 @@ GST_START_TEST (leaking_fail_pipes)
|
||||||
const gchar **s;
|
const gchar **s;
|
||||||
|
|
||||||
for (s = leaking_failures; *s != NULL; s++) {
|
for (s = leaking_failures; *s != NULL; s++) {
|
||||||
g_print ("Trying pipe: %s\n", *s);
|
|
||||||
/* Uncomment if you want to try fixing the leaks */
|
/* Uncomment if you want to try fixing the leaks */
|
||||||
/* expected_fail_pipe (*s); */
|
#if 0
|
||||||
|
g_print ("Trying pipe: %s\n", *s);
|
||||||
|
expected_fail_pipe (*s);
|
||||||
|
#endif
|
||||||
VALGRIND_DO_LEAK_CHECK;
|
VALGRIND_DO_LEAK_CHECK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue