mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
42ebe8b588
Original commit message from CVS: Fixed a couple of compiler warnings.
37 lines
1 KiB
C
37 lines
1 KiB
C
#include <stdio.h>
|
|
#include <gst/gst.h>
|
|
|
|
int main(int argc,char *argv[]) {
|
|
GstBin *pipeline, *thread;
|
|
GstElement *src, *queue1, *sink;
|
|
|
|
gst_init(&argc,&argv);
|
|
gst_info_set_categories(-1);
|
|
gst_debug_set_categories(-1);
|
|
|
|
pipeline = GST_BIN (gst_pipeline_new("pipeline"));
|
|
thread = GST_BIN (gst_thread_new("thread"));
|
|
src = gst_elementfactory_make("fakesrc","src");
|
|
queue1 = gst_elementfactory_make("queue","queue");
|
|
sink = gst_elementfactory_make("fakesink","sink");
|
|
|
|
gst_bin_add(pipeline,src);
|
|
gst_bin_add(pipeline,queue1);
|
|
gst_bin_add(pipeline,GST_ELEMENT(thread));
|
|
gst_bin_add(thread,sink);
|
|
|
|
gst_element_add_ghost_pad(GST_ELEMENT(thread),gst_element_get_pad(sink,"sink"),"sink");
|
|
|
|
gst_element_connect (src,"src",queue1,"sink");
|
|
gst_element_connect (queue1, "src", GST_ELEMENT (thread), "sink");
|
|
|
|
|
|
fprintf(stderr,"\n\n\n");
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_READY);
|
|
|
|
|
|
fprintf(stderr,"\n\n\n");
|
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
|
|
|
return 0;
|
|
}
|