gstreamer/gst/registries/registrytest.c
Thomas Vander Stichele a967370df5 gst-indent run on core
Original commit message from CVS:
gst-indent run on core
2004-03-13 15:27:01 +00:00

20 lines
250 B
C

#include <gst/gst.h>
#include "gstxmlregistry.h"
gint
main (gint argc, gchar * argv[])
{
GstRegistry *registry;
gst_init (&argc, &argv);
registry = gst_xml_registry_new ("test", "reg.xml");
gst_registry_load (registry);
return 0;
}