mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
a967370df5
Original commit message from CVS: gst-indent run on core
19 lines
250 B
C
19 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;
|
|
|
|
}
|