Hi Wes,
Wes Miller wrote
How do I get the element class?
You can get the element class as follows:
element = gst_element_factory_make ("qtdemux", "demuxer"); // for example sake, has sometimes pad
GstElementClass *klass = G_OBJECT_GET_CLASS(element);
With this we can use
GList* gst_element_class_get_pad_template_list( GstElementClass *element_class );
to get the pad template list, which will have sometimes pads also.
Regards,
Sandeep Prakash