moved debug to before _init so cmdline can override, and put sleep(1)'s in while(1) to increase chance of contention ...

Original commit message from CVS:
moved debug to before _init so cmdline can override, and put sleep(1)'s in while(1) to increase chance of contention (I think)
This commit is contained in:
Erik Walthinsen 2001-05-26 05:26:47 +00:00
parent 7780b294e3
commit 3b50989958

View file

@ -5,9 +5,9 @@ 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);
gst_init(&argc,&argv);
pipeline = gst_pipeline_new("pipeline");
thread = gst_thread_new("thread");
@ -27,7 +27,9 @@ int main(int argc,char *argv[]) {
while (1) {
fprintf(stderr,"\nSWITCHING to PLAYING:\n");
gst_element_set_state (thread, GST_STATE_PLAYING);
sleep(1);
fprintf(stderr,"\nSWITCHING to PAUSED:\n");
gst_element_set_state (thread, GST_STATE_PAUSED);
sleep(1);
}
}