mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
de2a7b9ee8
Original commit message from CVS: Compile fix.
19 lines
255 B
C
19 lines
255 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;
|
|
|
|
}
|