mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
19 lines
355 B
C
19 lines
355 B
C
|
#include <gst/gst.h>
|
||
|
|
||
|
int main(int argc,char *argv[])
|
||
|
{
|
||
|
xmlDocPtr doc;
|
||
|
|
||
|
unlink("/etc/gstreamer/reg.xml");
|
||
|
|
||
|
gst_init(&argc,&argv);
|
||
|
gst_plugin_load_all();
|
||
|
|
||
|
doc = xmlNewDoc("1.0");
|
||
|
doc->root = xmlNewDocNode(doc, NULL, "GST-PluginRegistry", NULL);
|
||
|
gst_plugin_save_thyself(doc->root);
|
||
|
xmlSaveFile("/etc/gstreamer/reg.xml", doc);
|
||
|
exit(0);
|
||
|
}
|
||
|
|