mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
tests/old/testsuite/: Remove references to deprecated API g_mem_chunk*.
Original commit message from CVS: * tests/old/testsuite/caps/intersection.c: (main): * tests/old/testsuite/plugin/loading.c: (main): Remove references to deprecated API g_mem_chunk*. Fixes #560442.
This commit is contained in:
parent
c1620298ba
commit
bb0cd4e7f1
3 changed files with 7 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* tests/old/testsuite/caps/intersection.c: (main):
|
||||
* tests/old/testsuite/plugin/loading.c: (main):
|
||||
Remove references to deprecated API g_mem_chunk*.
|
||||
Fixes #560442.
|
||||
|
||||
2008-11-12 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* tools/gst-inspect.c: (main):
|
||||
|
|
|
@ -57,12 +57,10 @@ main (int argc, char *argv[])
|
|||
xmlNewDocNode (doc, NULL, (const xmlChar *) "Capabilities", NULL);
|
||||
|
||||
/*
|
||||
g_mem_chunk_info ();
|
||||
for (i = 0; i<100000; i++) {
|
||||
caps = gst_caps_intersect (gst_static_caps_get (rawcaps3), GST_CAPS_GET (rawcaps4));
|
||||
gst_caps_unref (caps);
|
||||
}
|
||||
g_mem_chunk_info ();
|
||||
*/
|
||||
|
||||
caps = gst_caps_intersect (gst_static_caps_get (&sinkcaps),
|
||||
|
|
|
@ -12,7 +12,6 @@ main (int argc, char *argv[])
|
|||
|
||||
numplugins = g_list_length (gst_registry_pool_plugin_list ());
|
||||
g_print ("%d plugins loaded\n", numplugins);
|
||||
g_mem_chunk_info ();
|
||||
|
||||
plugin = gst_registry_pool_find_plugin ("testplugin");
|
||||
g_assert (plugin != NULL);
|
||||
|
@ -30,8 +29,6 @@ main (int argc, char *argv[])
|
|||
numplugins = g_list_length (gst_registry_pool_plugin_list ());
|
||||
g_print ("%d plugins loaded\n", numplugins);
|
||||
|
||||
g_mem_chunk_info ();
|
||||
|
||||
plugin = gst_registry_pool_find_plugin ("testplugin");
|
||||
g_assert (plugin != NULL);
|
||||
g_print ("testplugin: %p loaded: %s\n", plugin,
|
||||
|
@ -49,8 +46,6 @@ main (int argc, char *argv[])
|
|||
g_print ("%d features in plugin\n",
|
||||
g_list_length (gst_plugin_get_feature_list (plugin)));
|
||||
|
||||
g_mem_chunk_info ();
|
||||
|
||||
plugin = gst_registry_pool_find_plugin ("testplugin");
|
||||
g_assert (plugin != NULL);
|
||||
g_print ("testplugin: %p loaded: %s\n", plugin,
|
||||
|
|
Loading…
Reference in a new issue