mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
0ec400890c
Original commit message from CVS: initial checkin
37 lines
1 KiB
C
37 lines
1 KiB
C
#include <gst/gst.h>
|
|
|
|
extern gboolean _gst_plugin_spew;
|
|
|
|
int main(int argc,char *argv[]) {
|
|
GstPipeline *pipeline;
|
|
GstElement *src, *sink;
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
// _gst_plugin_spew = TRUE;
|
|
gst_init(&argc,&argv);
|
|
|
|
pipeline = gst_pipeline_new("pipeline");
|
|
g_return_if_fail(pipeline != NULL);
|
|
|
|
g_print("--- creating src and sink elements\n");
|
|
src = gst_elementfactory_make("fakesrc","src");
|
|
g_return_if_fail(src != NULL);
|
|
sink = gst_elementfactory_make("fakesink","sink");
|
|
g_return_if_fail(sink != NULL);
|
|
|
|
g_print("--- about to add the elements to the pipeline\n");
|
|
gst_bin_add(GST_BIN(pipeline),GST_ELEMENT(src));
|
|
gst_bin_add(GST_BIN(pipeline),GST_ELEMENT(sink));
|
|
|
|
g_print("--- getting pads\n");
|
|
srcpad = gst_element_get_pad(src,"src");
|
|
g_return_if_fail(srcpad != NULL);
|
|
sinkpad = gst_element_get_pad(sink,"sink");
|
|
g_return_if_fail(srcpad != NULL);
|
|
|
|
g_print("--- connecting\n");
|
|
gst_pad_connect(srcpad,sinkpad);
|
|
|
|
g_print("--- setting up\n");
|
|
gst_pipeline_iterate(pipeline);
|
|
}
|