]> GStreamer Library Reference Manual (Core) GStreamer Core Library libgst.la provides all the core GStreamer services, including initialization, plugin management and types, as well as the object hiarchy that defines elements and bins, along with some more specialized elements. &Gst; &GstAutoplug; &GstBin; &GstBuffer; &GstBufferPool; &GstCaps; &GstClock; &GstCpu; &GstData; &GstElement; &GstEvent; &GstInfo; &GstObject; &GstPad; &GstParse; &GstPipeline; &GstPlugin; &GstPluginFeature; &GstProps; &GstQueue; &GstScheduler; &GstThread; &GstTimeCache; &GstType; &GstTypeFactory; &GstTypeFind; &GstUtils; &GstXML; &cothreads; GStreamer Standard Elements libgstelements.la provide some basic elements like a disk source and sink. The use of these elements is strictly though the gtk_object_get() and gtk_object_set() functions and the GStreamer Core Library functions. Use the gst_elementfactory_find() and gst_elementfactory_create() functions to create these elements. The following code example shows you how to create a GstDiskSrc element. #include <gst/gst.h> GstElement *src; GstElementFactory *srcfactory; gst_init(&argc,&argv); srcfactory = gst_elementfactory_find("disksrc"); g_return_if_fail(srcfactory != NULL); src = gst_elementfactory_create(srcfactory,"src"); g_return_if_fail(src != NULL); ... &GstAggregator; &GstFakeSrc; &GstFakeSink; &GstDiskSrc; &GstDiskSink; &GstHttpSrc; &GstFdSrc; &GstFdSink; &GstPipefilter; &GstIdentity; &GstTee; GStreamer Autoppluggers the autopluggers provide a way to automatically construct elements based on sink and src capabilities &GstStaticAutoplug; &GstStaticAutoplugRender; Index Object Hierarchy &gstreamer-tree-index;