2000-12-11 00:06:16 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_plugins (void)
|
|
|
|
{
|
|
|
|
GList *plugins;
|
|
|
|
plugins = gst_plugin_get_list ();
|
|
|
|
|
|
|
|
while (plugins) {
|
|
|
|
GstPlugin *plugin = (GstPlugin *)plugins->data;
|
|
|
|
|
|
|
|
g_print ("plugin: %s, loaded %d\n", plugin->name, plugin->loaded);
|
|
|
|
|
|
|
|
plugins = g_list_next (plugins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dump_factories (void)
|
|
|
|
{
|
|
|
|
GList *factories;
|
|
|
|
factories = gst_elementfactory_get_list ();
|
|
|
|
|
|
|
|
while (factories) {
|
|
|
|
GstElementFactory *factory = (GstElementFactory *)factories->data;
|
|
|
|
|
2000-12-28 02:51:07 +00:00
|
|
|
g_print ("factory: %s %d\n", factory->name, factory->type);
|
2000-12-11 00:06:16 +00:00
|
|
|
|
|
|
|
factories = g_list_next (factories);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-16 17:12:28 +00:00
|
|
|
static void
|
|
|
|
dump_factory (gchar *name)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
factory = gst_elementfactory_find (name);
|
|
|
|
|
|
|
|
if (factory) {
|
|
|
|
GList *padtemplates = factory->padtemplates;
|
|
|
|
xmlDocPtr doc;
|
|
|
|
|
|
|
|
doc = xmlNewDoc ("1.0");
|
2001-01-18 15:29:46 +00:00
|
|
|
doc->xmlRootNode = xmlNewDocNode (doc, NULL, "templates", NULL);
|
2000-12-16 17:12:28 +00:00
|
|
|
|
|
|
|
while (padtemplates) {
|
|
|
|
xmlNodePtr parent;
|
|
|
|
GstPadTemplate *template = (GstPadTemplate *) padtemplates->data;
|
|
|
|
|
2001-01-18 15:29:46 +00:00
|
|
|
parent = xmlNewChild (doc->xmlRootNode, NULL, "template", NULL);
|
2000-12-16 17:12:28 +00:00
|
|
|
|
|
|
|
gst_padtemplate_save_thyself (template, parent);
|
|
|
|
|
|
|
|
padtemplates = g_list_next (padtemplates);
|
|
|
|
}
|
|
|
|
|
|
|
|
xmlDocDump(stdout, doc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-11 00:06:16 +00:00
|
|
|
static void
|
|
|
|
dump_types (void)
|
|
|
|
{
|
|
|
|
GList *types;
|
|
|
|
types = gst_type_get_list ();
|
|
|
|
|
|
|
|
while (types) {
|
|
|
|
GstType *factory = (GstType *)types->data;
|
|
|
|
|
|
|
|
g_print ("type: %s %d\n", factory->mime, factory->id);
|
|
|
|
|
|
|
|
types = g_list_next (types);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_something (gchar *name)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
GstElement *element;
|
|
|
|
|
2000-12-28 02:51:07 +00:00
|
|
|
//factory = gst_elementfactory_find ("foo");
|
|
|
|
//g_print ("factory \"foo\" %s\n", (factory?"found":"not found"));
|
2000-12-11 00:06:16 +00:00
|
|
|
|
|
|
|
factory = gst_elementfactory_find (name);
|
|
|
|
g_print ("factory \"%s\" %s\n", name, (factory?"found":"not found"));
|
|
|
|
|
|
|
|
element = gst_elementfactory_create (factory, "test");
|
|
|
|
|
|
|
|
g_print ("element \"%s\" %s\n", name, (element?"found":"not found"));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_some_providers (gchar *mime)
|
|
|
|
{
|
|
|
|
guint16 type;
|
|
|
|
GList *srcs, *sinks;
|
|
|
|
type = gst_type_find_by_mime (mime);
|
|
|
|
|
2000-12-19 13:41:55 +00:00
|
|
|
/*
|
2000-12-11 00:06:16 +00:00
|
|
|
srcs = gst_type_get_srcs (type);
|
|
|
|
|
|
|
|
while (srcs) {
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
factory = (GstElementFactory *) srcs->data;
|
|
|
|
|
|
|
|
g_print ("factory src: \"%s\"\n", factory->name);
|
|
|
|
|
|
|
|
srcs = g_list_next (srcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
sinks = gst_type_get_sinks (type);
|
|
|
|
while (sinks) {
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
factory = (GstElementFactory *) sinks->data;
|
|
|
|
|
|
|
|
g_print ("factory sink: \"%s\"\n", factory->name);
|
|
|
|
|
|
|
|
sinks = g_list_next (sinks);
|
|
|
|
}
|
2000-12-19 13:41:55 +00:00
|
|
|
*/
|
2000-12-11 00:06:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc,char *argv[])
|
|
|
|
{
|
|
|
|
|
|
|
|
gst_init(&argc,&argv);
|
|
|
|
|
2000-12-28 02:51:07 +00:00
|
|
|
//dump_plugins ();
|
|
|
|
//dump_factories ();
|
|
|
|
//dump_types ();
|
2000-12-11 00:06:16 +00:00
|
|
|
|
2000-12-28 02:51:07 +00:00
|
|
|
//print_some_providers ("audio/mp3");
|
2000-12-11 00:06:16 +00:00
|
|
|
|
2000-12-28 02:51:07 +00:00
|
|
|
load_something ("fdsink");
|
2000-12-11 00:06:16 +00:00
|
|
|
|
|
|
|
print_some_providers ("audio/mp3");
|
|
|
|
|
|
|
|
load_something ("mpg123");
|
|
|
|
|
|
|
|
dump_plugins ();
|
|
|
|
dump_factories ();
|
|
|
|
dump_types ();
|
|
|
|
|
2000-12-16 17:12:28 +00:00
|
|
|
dump_factory ("lame");
|
|
|
|
dump_factory ("mpeg_play");
|
2000-12-11 00:06:16 +00:00
|
|
|
}
|