In writing a program, I'm having some problems to I was writing a little code to debug it. I have a number of links going on in the program, and I believe one of the problems is in the links, so I tried to write a program to output the name of the variables that failed to link. My efforts have failed, and came here for help. Here is my code:
GstElement element1, element2; //this is debugging a gstreamer program
void testforfailure(element1, element2)
{
if(!gst_element_link(element1, element2))
{
printf("linkage of");
printf(element1); //I want this to be the name of the element calling the function
printf(" and ");
printf(element2);
printf(" failed.");
return -1;
}
}
Example call:
GstElement *source, *sink;
testforfailure(source, sink); //if link(source, sink) fails, then this should output "linkage of source and sink failed"
If anyone could help me with this problem, that would be great.
EDIT: After seeing that it is not possible, I devised a simple solution:
testsignalforfailure(GstElement *elem1, GstElement *elem2, int id, int id2)
{
if(!gst_element_link(elem1, elem2))
{
g_print("linkage of %d and %d failed", id, id2);
return -1;
}
}
When called with "testsignalforfailure(source, sink, 1, 2)", this gives me the unique id (self-defined) of the elements that failed to link (I declare an id to each element before running). Thanks for everyone's help.
"element1"and"element2", or something else? – Oli Charlesworth Aug 15 '11 at 20:37