mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
testsuite/caps/: more gcc4 fixes by casting
Original commit message from CVS: * testsuite/caps/intersection.c: (main): * testsuite/caps/union.c: (main): more gcc4 fixes by casting
This commit is contained in:
parent
d1cee163b1
commit
eae95d1f00
5 changed files with 54 additions and 20 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-05-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* testsuite/caps/intersection.c: (main):
|
||||||
|
* testsuite/caps/union.c: (main):
|
||||||
|
more gcc4 fixes by casting
|
||||||
|
|
||||||
2005-05-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-05-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* gst/gstregistry.h:
|
* gst/gstregistry.h:
|
||||||
|
|
|
@ -52,8 +52,9 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
doc = xmlNewDoc ("1.0");
|
doc = xmlNewDoc ((const xmlChar *) "1.0");
|
||||||
doc->xmlRootNode = xmlNewDocNode (doc, NULL, "Capabilities", NULL);
|
doc->xmlRootNode =
|
||||||
|
xmlNewDocNode (doc, NULL, (const xmlChar *) "Capabilities", NULL);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
@ -66,28 +67,38 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&sinkcaps),
|
caps = gst_caps_intersect (gst_static_caps_get (&sinkcaps),
|
||||||
gst_static_caps_get (&mp1parsecaps));
|
gst_static_caps_get (&mp1parsecaps));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities1", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities1",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps),
|
||||||
gst_static_caps_get (&rawcaps2));
|
gst_static_caps_get (&rawcaps2));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities2", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities2",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
||||||
gst_static_caps_get (&rawcaps4));
|
gst_static_caps_get (&rawcaps4));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities3", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities3",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
||||||
gst_static_caps_get (&rawcaps5));
|
gst_static_caps_get (&rawcaps5));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities4", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities4",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps6),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps6),
|
||||||
gst_caps_new_full (gst_structure_copy (gst_caps_get_structure
|
gst_caps_new_full (gst_structure_copy (gst_caps_get_structure
|
||||||
(gst_static_caps_get (&rawcaps6), 0)), NULL));
|
(gst_static_caps_get (&rawcaps6), 0)), NULL));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities5", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities5",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps7),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps7),
|
||||||
|
|
|
@ -17,12 +17,15 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
doc = xmlNewDoc ("1.0");
|
doc = xmlNewDoc ((const xmlChar *) "1.0");
|
||||||
doc->xmlRootNode = xmlNewDocNode (doc, NULL, "Capabilities", NULL);
|
doc->xmlRootNode =
|
||||||
|
xmlNewDocNode (doc, NULL, (const xmlChar *) "Capabilities", NULL);
|
||||||
|
|
||||||
caps = gst_caps_union (gst_static_caps_get (&sinkcaps),
|
caps = gst_caps_union (gst_static_caps_get (&sinkcaps),
|
||||||
gst_static_caps_get (&mp1parsecaps));
|
gst_static_caps_get (&mp1parsecaps));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities1", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities1",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
xmlDocDump (stdout, doc);
|
xmlDocDump (stdout, doc);
|
||||||
|
|
|
@ -52,8 +52,9 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
doc = xmlNewDoc ("1.0");
|
doc = xmlNewDoc ((const xmlChar *) "1.0");
|
||||||
doc->xmlRootNode = xmlNewDocNode (doc, NULL, "Capabilities", NULL);
|
doc->xmlRootNode =
|
||||||
|
xmlNewDocNode (doc, NULL, (const xmlChar *) "Capabilities", NULL);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
@ -66,28 +67,38 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&sinkcaps),
|
caps = gst_caps_intersect (gst_static_caps_get (&sinkcaps),
|
||||||
gst_static_caps_get (&mp1parsecaps));
|
gst_static_caps_get (&mp1parsecaps));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities1", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities1",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps),
|
||||||
gst_static_caps_get (&rawcaps2));
|
gst_static_caps_get (&rawcaps2));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities2", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities2",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
||||||
gst_static_caps_get (&rawcaps4));
|
gst_static_caps_get (&rawcaps4));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities3", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities3",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps3),
|
||||||
gst_static_caps_get (&rawcaps5));
|
gst_static_caps_get (&rawcaps5));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities4", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities4",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps6),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps6),
|
||||||
gst_caps_new_full (gst_structure_copy (gst_caps_get_structure
|
gst_caps_new_full (gst_structure_copy (gst_caps_get_structure
|
||||||
(gst_static_caps_get (&rawcaps6), 0)), NULL));
|
(gst_static_caps_get (&rawcaps6), 0)), NULL));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities5", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities5",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps7),
|
caps = gst_caps_intersect (gst_static_caps_get (&rawcaps7),
|
||||||
|
|
|
@ -17,12 +17,15 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
|
|
||||||
doc = xmlNewDoc ("1.0");
|
doc = xmlNewDoc ((const xmlChar *) "1.0");
|
||||||
doc->xmlRootNode = xmlNewDocNode (doc, NULL, "Capabilities", NULL);
|
doc->xmlRootNode =
|
||||||
|
xmlNewDocNode (doc, NULL, (const xmlChar *) "Capabilities", NULL);
|
||||||
|
|
||||||
caps = gst_caps_union (gst_static_caps_get (&sinkcaps),
|
caps = gst_caps_union (gst_static_caps_get (&sinkcaps),
|
||||||
gst_static_caps_get (&mp1parsecaps));
|
gst_static_caps_get (&mp1parsecaps));
|
||||||
parent = xmlNewChild (doc->xmlRootNode, NULL, "Capabilities1", NULL);
|
parent =
|
||||||
|
xmlNewChild (doc->xmlRootNode, NULL, (const xmlChar *) "Capabilities1",
|
||||||
|
NULL);
|
||||||
gst_caps_save_thyself (caps, parent);
|
gst_caps_save_thyself (caps, parent);
|
||||||
|
|
||||||
xmlDocDump (stdout, doc);
|
xmlDocDump (stdout, doc);
|
||||||
|
|
Loading…
Reference in a new issue