mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
tests/check/elements/icydemux.c: Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
Original commit message from CVS: * tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite): Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
This commit is contained in:
parent
1355ae0c97
commit
d53e4a60b1
3 changed files with 11 additions and 31 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-01-11 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* tests/check/elements/icydemux.c: (GST_START_TEST), (icydemux_suite):
|
||||||
|
Don't use deprecated GST_PLUGIN_DEFINE_STATIC.
|
||||||
|
|
||||||
2008-01-10 Sebastian Dröge <slomo@circular-chaos.org>
|
2008-01-10 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
* autogen.sh:
|
* autogen.sh:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 49c2fc5c9bff0e9858e89978bd98164a386de51d
|
Subproject commit bd02d788384b40ff511cac0e32aa77f51a68912d
|
|
@ -72,20 +72,6 @@ typefind_succeed (GstTypeFind * tf, gpointer private)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
|
||||||
plugin_init (GstPlugin * plugin)
|
|
||||||
{
|
|
||||||
gst_type_find_register (plugin, "success", GST_RANK_PRIMARY, typefind_succeed,
|
|
||||||
NULL, gst_static_caps_get (&typefind_caps), NULL, NULL);
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
GST_PLUGIN_DEFINE_STATIC (GST_VERSION_MAJOR, GST_VERSION_MINOR,
|
|
||||||
"gst-test",
|
|
||||||
"test plugin for icydemux",
|
|
||||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
icydemux_found_pad (GstElement * src, GstPad * pad, gpointer data)
|
icydemux_found_pad (GstElement * src, GstPad * pad, gpointer data)
|
||||||
{
|
{
|
||||||
|
@ -163,6 +149,10 @@ GST_START_TEST (test_demux)
|
||||||
const gchar *tag;
|
const gchar *tag;
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
|
|
||||||
|
fail_unless (gst_type_find_register (NULL, "success", GST_RANK_PRIMARY,
|
||||||
|
typefind_succeed, NULL, gst_static_caps_get (&typefind_caps), NULL,
|
||||||
|
NULL));
|
||||||
|
|
||||||
fake_typefind_caps = TRUE;
|
fake_typefind_caps = TRUE;
|
||||||
|
|
||||||
caps = gst_caps_from_string (ICYCAPS);
|
caps = gst_caps_from_string (ICYCAPS);
|
||||||
|
@ -252,19 +242,4 @@ icydemux_suite (void)
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
GST_CHECK_MAIN (icydemux)
|
||||||
main (int argc, char **argv)
|
|
||||||
{
|
|
||||||
int nf;
|
|
||||||
|
|
||||||
Suite *s = icydemux_suite ();
|
|
||||||
SRunner *sr = srunner_create (s);
|
|
||||||
|
|
||||||
gst_check_init (&argc, &argv);
|
|
||||||
|
|
||||||
srunner_run_all (sr, CK_NORMAL);
|
|
||||||
nf = srunner_ntests_failed (sr);
|
|
||||||
srunner_free (sr);
|
|
||||||
|
|
||||||
return nf;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue