mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
libs/gst/controller/gstcontroller.h: fix ABI size-correction
Original commit message from CVS: * libs/gst/controller/gstcontroller.h: fix ABI size-correction * tests/check/libs/gdp.c: (gst_dp_suite): make tests that use deprecated API conditional
This commit is contained in:
parent
9460b3ab7b
commit
876f4e4722
3 changed files with 15 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-08-10 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* libs/gst/controller/gstcontroller.h:
|
||||
fix ABI size-correction
|
||||
|
||||
* tests/check/libs/gdp.c: (gst_dp_suite):
|
||||
make tests that use deprecated API conditional
|
||||
|
||||
2006-08-10 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* docs/libs/gstreamer-libs-sections.txt:
|
||||
|
|
|
@ -130,7 +130,7 @@ struct _GstController
|
|||
|
||||
/*< private >*/
|
||||
GstControllerPrivate *priv;
|
||||
gpointer _gst_reserved[GST_PADDING - sizeof (GstControllerPrivate *)];
|
||||
gpointer _gst_reserved[GST_PADDING - 1];
|
||||
};
|
||||
|
||||
struct _GstControllerClass
|
||||
|
|
|
@ -85,6 +85,8 @@ GST_START_TEST (test_conversion)
|
|||
|
||||
GST_END_TEST;
|
||||
|
||||
#ifndef GST_DISABLE_DEPRECATED /* these tests use deprecated API, that we disable by default */
|
||||
|
||||
#ifndef HAVE_CPU_PPC64 /* this test doesn't work on PPC64. See #348114 */
|
||||
|
||||
/* test creation of header from buffer and back again */
|
||||
|
@ -150,7 +152,6 @@ GST_START_TEST (test_buffer)
|
|||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
#endif
|
||||
|
||||
GST_START_TEST (test_caps)
|
||||
|
@ -402,6 +403,8 @@ GST_START_TEST (test_memory)
|
|||
|
||||
GST_END_TEST;
|
||||
|
||||
#endif
|
||||
|
||||
Suite *
|
||||
gst_dp_suite (void)
|
||||
{
|
||||
|
@ -410,12 +413,14 @@ gst_dp_suite (void)
|
|||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
tcase_add_test (tc_chain, test_conversion);
|
||||
#ifndef GST_DISABLE_DEPRECATED
|
||||
#ifndef HAVE_CPU_PPC64
|
||||
tcase_add_test (tc_chain, test_buffer);
|
||||
#endif
|
||||
tcase_add_test (tc_chain, test_caps);
|
||||
tcase_add_test (tc_chain, test_event);
|
||||
tcase_add_test (tc_chain, test_memory);
|
||||
#endif
|
||||
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue