mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
added case4
Original commit message from CVS: added case4
This commit is contained in:
parent
a46c5a73f0
commit
1d0694ade4
2 changed files with 35 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = init loadall simplefake states caps queue registry paranoia rip mp3encode autoplug props
|
||||
noinst_PROGRAMS = init loadall simplefake states caps queue registry paranoia rip mp3encode autoplug props case4
|
||||
|
||||
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_builddir)/gst/libgst.la
|
||||
CFLAGS = -Wall
|
||||
|
|
34
tests/case4.c
Normal file
34
tests/case4.c
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include <gst/gst.h>
|
||||
#include <assert.h>
|
||||
|
||||
int main(int argc,char *argv[]) {
|
||||
GstBin *thread;
|
||||
GstElement *src,*identity,*sink;
|
||||
int i;
|
||||
|
||||
DEBUG_ENTER("(%d)",argc);
|
||||
|
||||
gst_init(&argc,&argv);
|
||||
|
||||
thread = GST_BIN(gst_bin_new("bin4"));
|
||||
src = gst_elementfactory_make("fakesrc","src");
|
||||
identity = gst_elementfactory_make("identity","identity");
|
||||
g_return_val_if_fail(identity != NULL,2);
|
||||
gtk_object_set(GTK_OBJECT(identity),"loop_based",TRUE,NULL);
|
||||
sink = gst_elementfactory_make("fakesink","sink");
|
||||
g_return_val_if_fail(sink != NULL,3);
|
||||
|
||||
fprintf(stderr,"src %p identity %p sink %p\n",src,identity,sink);
|
||||
gst_bin_add(thread,src);
|
||||
gst_bin_add(thread,identity);
|
||||
gst_bin_add(thread,sink);
|
||||
|
||||
gst_element_connect(src,"src",identity,"sink");
|
||||
gst_element_connect(identity,"src",sink,"sink");
|
||||
fprintf(stderr,"done creating case4 pipeline\n\n\n");
|
||||
|
||||
gst_element_set_state(GST_ELEMENT(thread),GST_STATE_PLAYING);
|
||||
|
||||
gst_bin_iterate(thread);
|
||||
gst_bin_iterate(thread);
|
||||
}
|
Loading…
Reference in a new issue