[gst-devel] another issue - bug or my fault?

Tim Hockin thockin at hockin.org
Mon Sep 23 00:20:03 CEST 2002


Hey all,  I'm back with another weird question.

So I am still figuring it all out.  I wanted to do a simple program that
played a sample whenever I hit 'enter'.  Sounds easy.


testgst.c:
-----
#include <gst/gst.h>
#include <sys/select.h>

int 
main(int argc, char *argv[])
{
	gchar *filename;
	GstElement *pipeline;
	GstElement *src;
	GstElement *parse;
	GstElement *sink;

	gst_init(&argc, &argv);

	if (argc <= 1)
		g_error("usage: %s file\n", argv[0]);

	pipeline = gst_pipeline_new("main");
	if (!pipeline)
		g_error("pipeline\n");

	src = gst_element_factory_make("filesrc", "src");
	parse = gst_element_factory_make("wavparse", "parse");
	sink = gst_element_factory_make("osssink", "sink");
	if (!src || !sink)
		g_error("!src || !parse || !sink\n");

	g_object_set(G_OBJECT(src), "location", argv[1], NULL);
	gst_element_connect_many(src, parse, sink, NULL);

	gst_bin_add_many(GST_BIN(pipeline), src, parse, sink, NULL);

	while (1) {
		fd_set set;
		FD_ZERO(&set);
		FD_SET(0, &set);
		select(1, &set, NULL, NULL, 0);
		if (FD_ISSET(0, &set)) {
			char c = 0;
			read(0, &c, 1);
			if (c == '\n') {
				gst_element_set_state(src, GST_STATE_READY);
				gst_element_set_state(pipeline, GST_STATE_PLAYING);
				while (gst_bin_iterate(GST_BIN(pipeline)))
					g_print("\n");
				gst_element_set_state(pipeline, GST_STATE_PAUSED);
				g_print("\n\n\n\n\n");
			}
		}
	}


	gst_object_unref(GST_OBJECT(pipeline));

	return 0;
}
-----


Here is the problem (well, 2 actually).

1) playing the sample, some of it does not get output - it seems to start a
fraction of a second into the sample.

2) it works for small samples(36k), but when I play a longer sample (187k)
it only plays once, then never again.

I ran both of them, hitting enter twice, with --gst-mask=-1.  Here is the
output.  Can anyone help me figure out what is going on?

Thanks!  I'm trying hard to grasp all of this :)
Tim


small_sample.log:
-----
INFO (28778: 0) Initializing GStreamer Core Library version 0.4.1.1 
INFO (28778: 0) CPU features: (00000000) MMX SSE 
DEBUG(28778: 0)gst_element_factory_find:106: no such elementfactory "bin"
DEBUG(28778: 0)gst_element_factory_find:106: no such elementfactory "pipeline"
DEBUG(28778: 0)gst_element_factory_find:106: no such elementfactory "thread"
DEBUG(28778: 0)gst_element_factory_find:106: no such elementfactory "queue"
DEBUG(28778: 0)gst_element_factory_find:106: no such elementfactory "typefind"
INFO (28778: 0)gst_plugin_register_func:115: plugin "(null)" initialised
INFO (28778: 0)_gst_buffer_initialize:58: Buffers are initialized now
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x804d280) gave new mime type 'video/raw', id 1
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x805e168) gave new mime type 'video/mpeg', id 2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x805e3d0) gave new mime type 'audio/raw', id 3
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x805e4c0) gave new mime type 'audio/mod', id 4
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: mikmod_audio/mod(0x805e548) gave new mime type 'audio/mod', id 4
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x805e740) gave new mime type 'audio/mp3', id 5
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x805ec28) gave new mime type 'video/jpeg', id 6
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8060570) gave new mime type 'audio/x-aiff', id 7
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8060760) gave new mime type 'audio/x-wav', id 8
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x80607f0) gave new mime type 'audio/basic', id 9
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8062b38) gave new mime type 'application/x-lav', id 10
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: wavparse_audio/x-wav(0x8062d30) gave new mime type 'audio/x-wav', id 8
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: mpeg1types_video/mpeg(0x80686a0) gave new mime type 'video/mpeg', id 2
DEBUG(28778: 0)gst_type_register:171: gsttype: mpeg1types_video/mpeg;system(0x8068788) gave new mime type 'video/mpeg', id 2
DEBUG(28778: 0)gst_type_register:171: gsttype: mpeg2types_video/mpeg(0x8068828) gave new mime type 'video/mpeg', id 2
DEBUG(28778: 0)gst_type_register:171: gsttype: mpeg2types_video/mpeg;system(0x8068878) gave new mime type 'video/mpeg', id 2
DEBUG(28778: 0)gst_type_register:171: gsttype: mp3types_audio/mp3(0x8068980) gave new mime type 'audio/mp3', id 5
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: festival_text/plain(0x806c738) gave new mime type 'text/plain', id 11
DEBUG(28778: 0)gst_object_ref:169: ref 'festival_sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'festival_src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x806f7e0) gave new mime type 'video/avi', id 12
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'audio_%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video_%d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: auparse_audio/au(0x806faf0) gave new mime type 'audio/au', id 13
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x806fe88) gave new mime type 'audio/ac3', id 14
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: gsttypes_video/raw(0x8070a60) gave new mime type 'video/raw', id 1
DEBUG(28778: 0)gst_type_register:171: gsttype: gsttypes_audio/raw(0x80707c0) gave new mime type 'audio/raw', id 3
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src_%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink_%d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: vorbis_audio/x-ogg(0x80734a0) gave new mime type 'application/x-ogg', id 15
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: dv_video/dv(0x8073b28) gave new mime type 'video/dv', id 16
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'audio' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8083210) gave new mime type 'video/quicktime', id 17
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: qtdemux_video/quicktime(0x80832b0) gave new mime type 'video/quicktime', id 17
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8083768) gave new mime type 'audio/a52', id 18
DEBUG(28778: 0)gst_object_ref:169: ref 'private_stream_1_%02d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: capstype(0x8083808) gave new mime type 'unknown/unknown', id 19
DEBUG(28778: 0)gst_object_ref:169: ref 'private_stream_2' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'subtitle_stream_%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'audio_%02d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'audio_%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video_%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: flxdec_video/fli(0x8084b30) gave new mime type 'video/fli', id 20
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: cdxaparse_video/avi(0x8085118) gave new mime type 'video/avi', id 12
DEBUG(28778: 0)gst_object_ref:169: ref 'audio_%02d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_type_register:171: gsttype: avidemux_video/avi(0x8085ca8) gave new mime type 'video/avi', id 12
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
registry: loaded user_registry in 0.154687 seconds
          (/home/thockin/.gstreamer/registry.xml)
DEBUG(28778: 0)gst_element_factory_make:248: gstelementfactory: make "pipeline" "main"
DEBUG(28778: 0)gst_element_factory_create:196: creating element from factory "pipeline" (name "main", type 134553416)
DEBUG(28778: 0)gst_scheduler_factory_find:777: gstscheduler: find "basicomega"
DEBUG(28778: 0)gst_plugin_feature_ensure_loaded:92: loading plugin gstbasicomegascheduler for feature
DEBUG(28778: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so"
DEBUG(28778: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" loaded, called entry function...
DEBUG(28778: 0)gst_scheduler_factory_find:777: gstscheduler: find "basicomega"
INFO (28778: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" initialised
INFO (28778: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" loaded
DEBUG(28778: 0)gst_object_ref:169: ref '(null)' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink '(null)'
DEBUG(28778: 0)gst_object_unref:188: unref '(null)' 2->1
DEBUG(28778: 0)gst_basic_scheduler_setup:976: initializing cothread context
INFO (28778: 0)cothread_context_init:93: initializing cothreads
INFO (28778: 0)cothread_context_init:124: 0th cothread is 0x8058370 at sp:0xbffff3bb
DEBUG(28778: 0)gst_element_factory_create:213: class pipeline
DEBUG(28778: 0)gst_element_factory_make:248: gstelementfactory: make "filesrc" "src"
DEBUG(28778: 0)gst_plugin_feature_ensure_loaded:92: loading plugin gstelements for feature
DEBUG(28778: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstelements.so"
DEBUG(28778: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstelements.so" loaded, called entry function...
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'src%d' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'sink%d' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'src%d' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'sink%d' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
INFO (28778: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstelements.so" initialised
INFO (28778: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstelements.so" loaded
DEBUG(28778: 0)gst_element_factory_create:196: creating element from factory "filesrc" (name "src", type 134685168)
DEBUG(28778: 0)gst_pad_set_get_function:478: getfunc for '':src  set to 0x40216d64
DEBUG(28778: 0)gst_pad_set_event_function:498: eventfunc for '':src  set to 0x402177bc
DEBUG(28778: 0)gst_pad_set_event_mask_function:511: eventmaskfunc for '':src  set to 0x402161d8
DEBUG(28778: 0)gst_pad_set_query_function:610: queryfunc for '':src  set to 0x40217740
DEBUG(28778: 0)gst_pad_set_query_type_function:622: querytypefunc for '':src  set to 0x402161f4
DEBUG(28778: 0)gst_pad_set_formats_function:696: formats function for '':src  set to 0x40216210
DEBUG(28778: 0)gst_element_add_pad:939: setting parent of pad 'src' to '(null)'
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'src'
DEBUG(28778: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28778: 0)gst_element_factory_create:213: class filesrc
DEBUG(28778: 0)gst_element_factory_make:248: gstelementfactory: make "wavparse" "parse"
DEBUG(28778: 0)gst_plugin_feature_ensure_loaded:92: loading plugin wavparse for feature
DEBUG(28778: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstwavparse.so"
DEBUG(28778: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstwavparse.so" loaded, called entry function...
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_sink' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'wavparse_sink' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_src' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'wavparse_src' 2->1
INFO (28778: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstwavparse.so" initialised
INFO (28778: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstwavparse.so" loaded
DEBUG(28778: 0)gst_element_factory_create:196: creating element from factory "wavparse" (name "parse", type 134810488)
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_sink' 2->3
DEBUG(28778: 0)gst_element_add_pad:939: setting parent of pad 'sink' to '(null)'
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'sink'
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_pad_set_chain_function:458: chainfunc for (null):sink set to 0x4022356c
DEBUG(28778: 0)gst_object_ref:169: ref 'wavparse_src' 2->3
DEBUG(28778: 0)gst_element_add_pad:939: setting parent of pad 'src' to '(null)'
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'src'
DEBUG(28778: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28778: 0)gst_element_factory_create:213: class wavparse
DEBUG(28778: 0)gst_element_factory_make:248: gstelementfactory: make "osssink" "sink"
DEBUG(28778: 0)gst_plugin_feature_ensure_loaded:92: loading plugin ossaudio for feature
DEBUG(28778: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstossaudio.so"
DEBUG(28778: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstossaudio.so" loaded, called entry function...
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_unref:188: unref 'src' 2->1
INFO (28778: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstossaudio.so" initialised
INFO (28778: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstossaudio.so" loaded
DEBUG(28778: 0)gst_element_factory_create:196: creating element from factory "osssink" (name "sink", type 134812256)
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 2->3
DEBUG(28778: 0)gst_element_add_pad:939: setting parent of pad 'sink' to '(null)'
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'sink'
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_pad_set_connect_function:716: connectfunc for (null):sink set to 0x40228e80
DEBUG(28778: 0)gst_pad_set_bufferpool_function:753: bufferpoolfunc for (null):sink set to 0x402288e4
DEBUG(28778: 0)gst_pad_set_convert_function:591: convertfunc for (null):sink  set to 0x40229abc
DEBUG(28778: 0)gst_pad_set_query_function:610: queryfunc for (null):sink  set to 0x40229e90
DEBUG(28778: 0)gst_pad_set_query_type_function:622: querytypefunc for (null):sink  set to 0x40229e74
DEBUG(28778: 0)gst_pad_set_formats_function:696: formats function for (null):sink  set to 0x40229aa0
DEBUG(28778: 0)gst_pad_set_chain_function:458: chainfunc for (null):sink set to 0x40229708
DEBUG(28778: 0)gst_element_factory_create:213: class osssink
DEBUG(28778: 0)gst_element_connect_filtered:1495: trying to connect element src to element parse
INFO (28778: 0)gst_pad_connect_filtered:963: connecting src:src and parse:sink
INFO (28778: 0)gst_pad_try_reconnect_filtered_func:1422: reconnect filtered src:src and parse:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28778: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1427: dumping caps of pad src:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of src pad (pre-reconnect): entering
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1431: dumping caps of pad parse:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of sink pad (pre-reconnect): entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28778: 0)gst_caps_debug:199: no properties
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:702: first caps is NULL, return other caps
INFO (28778: 0)gst_pad_try_reconnect_filtered_func:1446: pads src:src and parse:sink intersected to fixed caps
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1471: setting filter for connection to:
DEBUG(28778: 0)gst_caps_debug:190: caps debug: filter for connection: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d520 wavparse_wav audio/x-wav (fixed)
DEBUG(28778: 0)gst_caps_debug:199: no properties
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28778: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28778: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28778: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28778: 0)gst_caps_debug:199: no properties
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28778: 0)gst_caps_intersect:706: second caps is NULL, return other caps
DEBUG(28778: 0)gst_pad_try_set_caps_func:1246: parent src of pad src:src is not READY
DEBUG(28778: 0)gst_pad_try_set_caps_func:1246: parent parse of pad parse:sink is not READY
INFO (28778: 0)gst_pad_connect_filtered:1031: connected src:src and parse:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28778: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of newly connected src pad: entering
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_element_connect_filtered:1510: connected pad src:src to pad parse:sink
DEBUG(28778: 0)gst_element_connect_filtered:1495: trying to connect element parse to element sink
INFO (28778: 0)gst_pad_connect_filtered:963: connecting parse:src and sink:sink
INFO (28778: 0)gst_pad_try_reconnect_filtered_func:1422: reconnect filtered parse:src and sink:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1427: dumping caps of pad parse:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of src pad (pre-reconnect): entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1431: dumping caps of pad sink:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of sink pad (pre-reconnect): entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
INFO (28778: 0)gst_pad_try_reconnect_filtered_func:1446: pads parse:src and sink:sink intersected to variable caps
DEBUG(28778: 0)gst_pad_try_reconnect_filtered_func:1471: setting filter for connection to:
DEBUG(28778: 0)gst_caps_debug:190: caps debug: filter for connection: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d538 intersect audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28778: 0)gst_pad_perform_negotiate:1516: dumping caps of pad parse:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28778: 0)gst_pad_perform_negotiate:1521: dumping caps of pad sink:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:706: second caps is NULL, return other caps
DEBUG(28778: 0)gst_pad_try_set_caps_func:1246: parent parse of pad parse:src is not READY
DEBUG(28778: 0)gst_pad_try_set_caps_func:1246: parent sink of pad sink:sink is not READY
INFO (28778: 0)gst_pad_connect_filtered:1031: connected parse:src and sink:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps of newly connected src pad: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_element_connect_filtered:1510: connected pad parse:src to pad sink:sink
DEBUG(28778: 0)gst_bin_add:352: adding element "src" to bin "main"
DEBUG(28778: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'src'
DEBUG(28778: 0)gst_object_unref:188: unref 'src' 2->1
INFO (28778: 0)gst_bin_set_element_sched:225: setting element "src" sched to 0x8058250
INFO (28778: 0)gst_element_set_scheduler:2476: [src] setting scheduler to 0x8058250
INFO (28778: 0)gst_basic_scheduler_add_element:1021: adding element "src" to scheduler
INFO (28778: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093948, now are 1 chains in sched 0x8058250
INFO (28778: 0)gst_basic_scheduler_chain_add_element:752: adding element "src" to chain 0x8093948
INFO (28778: 0)gst_bin_add:389: [main] added child "src"
DEBUG(28778: 0)gst_bin_add:352: adding element "parse" to bin "main"
DEBUG(28778: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'parse'
DEBUG(28778: 0)gst_object_unref:188: unref 'parse' 2->1
INFO (28778: 0)gst_bin_set_element_sched:225: setting element "parse" sched to 0x8058250
INFO (28778: 0)gst_element_set_scheduler:2476: [parse] setting scheduler to 0x8058250
INFO (28778: 0)gst_basic_scheduler_add_element:1021: adding element "parse" to scheduler
INFO (28778: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093988, now are 2 chains in sched 0x8058250
INFO (28778: 0)gst_basic_scheduler_chain_add_element:752: adding element "parse" to chain 0x8093988
INFO (28778: 0)gst_basic_scheduler_add_element:1050: peer is in same scheduler, chaining together
INFO (28778: 0)gst_basic_scheduler_chain_elements:881: merging chain 0x8093948 into chain 0x8093988
INFO (28778: 0)gst_basic_scheduler_chain_destroy:740: destroyed chain 0x8093948, now are 1 chains in sched 0x8058250
INFO (28778: 0)gst_bin_add:389: [main] added child "parse"
DEBUG(28778: 0)gst_bin_add:352: adding element "sink" to bin "main"
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_object_sink:209: sink 'sink'
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
INFO (28778: 0)gst_bin_set_element_sched:225: setting element "sink" sched to 0x8058250
DEBUG(28778: 0)gst_scheduler_add_element:217: added clock provider sink
DEBUG(28778: 0)gst_scheduler_add_element:221: added clock receiver sink
INFO (28778: 0)gst_element_set_scheduler:2476: [sink] setting scheduler to 0x8058250
INFO (28778: 0)gst_basic_scheduler_add_element:1021: adding element "sink" to scheduler
INFO (28778: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093948, now are 2 chains in sched 0x8058250
INFO (28778: 0)gst_basic_scheduler_chain_add_element:752: adding element "sink" to chain 0x8093948
INFO (28778: 0)gst_basic_scheduler_add_element:1050: peer is in same scheduler, chaining together
INFO (28778: 0)gst_basic_scheduler_chain_elements:881: merging chain 0x8093988 into chain 0x8093948
INFO (28778: 0)gst_basic_scheduler_chain_destroy:740: destroyed chain 0x8093988, now are 1 chains in sched 0x8058250
INFO (28778: 0)gst_bin_add:389: [main] added child "sink"
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from NULL to READY
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from NULL to READY 258
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from NULL to READY
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from NULL to READY
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to READY
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from NULL to READY 258
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1107: no interesting state change, doing nothing
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from NULL to READY
DEBUG(28778: 0)gst_element_set_state:2003: [main] setting state from READY to PLAYING
DEBUG(28778: 0)gst_element_set_state:2021: [main] intermediate: setting state from READY to PAUSED
INFO (28778: 0)gst_bin_change_state:518: [main] changing childrens' state from READY to PAUSED
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from READY to PAUSED
DEBUG(28778: 0)gst_filesrc_open_file:606: opening file test.wav
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from READY to PAUSED 516
DEBUG(28778: 0)gst_element_negotiate_pads:2069: [src] negotiating pads
DEBUG(28778: 0)gst_element_negotiate_pads:2117: [src] not negotiating src:src and parse:sink, not in READY yet
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from READY to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from READY to PAUSED
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from READY to PAUSED 516
DEBUG(28778: 0)gst_element_negotiate_pads:2069: [main] negotiating pads
DEBUG(28778: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28778: 0)gst_scheduler_state_transition:279: scheduler READY to PAUSED clock is 0x8093678 (GstOssClock)
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1107: no interesting state change, doing nothing
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from READY to PAUSED
DEBUG(28778: 0)gst_element_set_state:2003: [parse] setting state from NULL to PAUSED
DEBUG(28778: 0)gst_element_set_state:2021: [parse] intermediate: setting state from NULL to READY
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from NULL to READY 258
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from NULL to READY
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from NULL to READY
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from READY to PAUSED 516
DEBUG(28778: 0)gst_element_negotiate_pads:2069: [parse] negotiating pads
DEBUG(28778: 0)gst_element_negotiate_pads:2109: [parse] perform negotiate for src:src and parse:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28778: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28778: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28778: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28778: 0)gst_caps_debug:199: no properties
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28778: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939d8 on pad src:src
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad src:src
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939d8 on pad parse:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:sink
DEBUG(28778: 0)gst_element_negotiate_pads:2117: [parse] not negotiating parse:src and sink:sink, not in READY yet
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from READY to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from READY to PAUSED
DEBUG(28778: 0)gst_element_set_state:2003: [sink] setting state from NULL to PAUSED
DEBUG(28778: 0)gst_element_set_state:2021: [sink] intermediate: setting state from NULL to READY
INFO (28778: 0)gst_osssink_open_audio:848: osssink: attempting to open sound device
INFO (28778: 0)gst_osssink_open_audio:870: osssink: Capabilities 0000b300
INFO (28778: 0)gst_osssink_open_audio:872: osssink:   Full duplex
INFO (28778: 0)gst_osssink_open_audio:873: osssink:   Realtime
INFO (28778: 0)gst_osssink_open_audio:876: osssink:   Trigger
INFO (28778: 0)gst_osssink_open_audio:877: osssink:   Direct access
INFO (28778: 0)gst_osssink_open_audio:884: osssink:   Channel binding
INFO (28778: 0)gst_osssink_open_audio:889: osssink: Formats 00000418
INFO (28778: 0)gst_osssink_open_audio:893: osssink:   U8
INFO (28778: 0)gst_osssink_open_audio:894: osssink:   S16_LE
INFO (28778: 0)gst_osssink_open_audio:901: osssink:   AC3
INFO (28778: 0)gst_osssink_open_audio:904: osssink: opened audio (/dev/dsp) with fd=4
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from NULL to READY 258
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from NULL to READY
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from NULL to READY
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from READY to PAUSED 516
DEBUG(28778: 0)gst_element_negotiate_pads:2069: [sink] negotiating pads
DEBUG(28778: 0)gst_element_negotiate_pads:2109: [sink] perform negotiate for parse:src and sink:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28778: 0)gst_pad_perform_negotiate:1516: dumping caps of pad parse:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28778: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28778: 0)gst_pad_perform_negotiate:1521: dumping caps of pad sink:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:151: [list]
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28778: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939f0 on pad parse:src
INFO (28778: 0)gst_pad_try_set_caps_func:1325: caps are not fixed on pad parse:src, not setting them yet
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939f0 on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1272: calling connect function on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1297: got reply DELAYED (0) from connect function on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1325: caps are not fixed on pad sink:sink, not setting them yet
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from READY to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from READY to PAUSED
INFO (28778: 0)gst_bin_change_state:562: [main] done changing bin's state from READY to PAUSED, now in PAUSED
INFO (28778: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
INFO (28778: 0)gst_bin_change_state:518: [main] changing childrens' state from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "src" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'src' is &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)cothread_create:189: Found free cothread slot 1
DEBUG(28778: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe00000 to 0xc1700000 (size 0x20000)
DEBUG(28778: 0)cothread_create:207: going into mmap
DEBUG(28778: 0)cothread_create:213: coming out of mmap
DEBUG(28778: 0)cothread_create:224: create  cothread 1 with magic number 0xabcdef
INFO (28778: 0)cothread_create:234: created cothread #1 in slot 1: 0xbfe00000 at sp:0xbfe20000
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe00000 for 'src'
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to PLAYING
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from PAUSED to PLAYING 1032
DEBUG(28778: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28778: 0)gst_scheduler_state_transition:289: scheduler PAUSED to PLAYING clock is 0x8093678 (GstOssClock)
DEBUG(28778: 0)gst_scheduler_set_clock:567: scheduler setting clock 0x8093678 (GstOssClock) on element sink
DEBUG(28778: 0)gst_scheduler_state_transition:296: enabling clock 0x8093678 (GstOssClock)
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1103: setting scheduler state to running
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [parse] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "parse" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'parse' is &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)cothread_create:189: Found free cothread slot 2
DEBUG(28778: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe20000 to 0xc1720000 (size 0x20000)
DEBUG(28778: 0)cothread_create:207: going into mmap
DEBUG(28778: 0)cothread_create:213: coming out of mmap
DEBUG(28778: 0)cothread_create:224: create  cothread 2 with magic number 0xabcdef
INFO (28778: 0)cothread_create:234: created cothread #2 in slot 2: 0xbfe20000 at sp:0xbfe40000
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe20000 for 'parse'
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [sink] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "sink" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'sink' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'sink' is &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)cothread_create:189: Found free cothread slot 3
DEBUG(28778: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe40000 to 0xc1740000 (size 0x20000)
DEBUG(28778: 0)cothread_create:207: going into mmap
DEBUG(28778: 0)cothread_create:213: coming out of mmap
DEBUG(28778: 0)cothread_create:224: create  cothread 3 with magic number 0xabcdef
INFO (28778: 0)cothread_create:234: created cothread #3 in slot 3: 0xbfe40000 at sp:0xbfe60000
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe40000 for 'sink'
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PAUSED to PLAYING
INFO (28778: 0)gst_bin_change_state:562: [main] done changing bin's state from PAUSED to PLAYING, now in PLAYING
INFO (28778: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe60000
DEBUG(28778: 0)cothread_stub:428: : entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe40000
DEBUG(28778: 0)cothread_stub:428: : entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("parse"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe20000
DEBUG(28778: 0)cothread_stub:428: : entering
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:371: (0,"src"): entering
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056cd8
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056cd8 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056cd8
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056cd8
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_wavparse_chain:218: GstWavParse: checking for RIFF format
DEBUG(28778: 0)gst_wavparse_chain:246: GstWavParse: looking for fmt chunk
INFO (28778: 0)gst_pad_try_set_caps:1351: trying to set caps 0x8093a20 on pad parse:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: caps that we are trying to set: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x8093a20 parsewav_src audio/raw (fixed)
DEBUG(28778: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28778: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28778: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28778: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28778: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28778: 0)gst_props_debug_entry:128: rate: int 44100
DEBUG(28778: 0)gst_props_debug_entry:128: channels: int 1
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a20 on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1272: calling connect function on pad sink:sink
INFO (28778: 0)gst_osssink_sync_parms:401: osssink: trying to set sound card to 44100Hz 16 bit mono (7fff0006 fragment)
INFO (28778: 0)gst_osssink_sync_parms:429: osssink: set sound card to 44100Hz 16 bit mono (65536 bytes buffer, 04000006 fragment)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (format)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (fragment)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (frequency)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (channels)
INFO (28778: 0)gst_osssink_sync_parms:442: fragment time 88200 725623

INFO (28778: 0)gst_pad_try_set_caps_func:1297: got reply OK (1) from connect function on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad sink:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a20 on pad parse:src
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:src
INFO (28778: 0)gst_pad_try_set_caps:1383: succeeded setting caps 0x8093a20 on pad parse:src, return value 1
DEBUG(28778: 0)gst_wavparse_chain:289: frequency 44100, channels 1
DEBUG(28778: 0)gst_wavparse_chain:306: GstWavParse: looking for data chunk
DEBUG(28778: 0)gst_wavparse_chain:319: data begins at 44
DEBUG(28778: 0)gst_wavparse_chain:326: sending last 4052 bytes along as audio
INFO (28778: 0)gst_data_unref:195: unref data 0x8056cd8, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 18446744073705598616,  target 0, now 3953000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 40237043,  target 45941043, now 5704000
DEBUG(28778: 0)gst_clock_handle_discont:288: clock discont 47274000 1032763486124385000 1
DEBUG(28778: 0)gst_clock_handle_discont:307: new time 47276000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_filesrc_get:493: filesrc eos 36056 36056

DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element src
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "src" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)gst_event_new:106: creating new event 0x8096f78
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8096f78
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8096f78 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8096f78
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_pad_send_event:2682: have event 1 on pad parse:sink
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8096f78 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8096f78
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8096f78
INFO (28778: 0)gst_data_unref:195: unref data 0x8096f78, count before unref is 2
DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element sink
DEBUG(28778: 0)gst_element_set_state:2003: [sink] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "sink" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "parse"(@0x8090ce8)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28778: 0)gst_data_unref:195: unref data 0x8096f78, count before unref is 1
INFO (28778: 0)_gst_event_free:77: freeing event 0x8096f78
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element parse
DEBUG(28778: 0)gst_element_set_state:2003: [parse] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "parse" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from PLAYING to PAUSED 2052
DEBUG(28778: 0)gst_scheduler_state_transition:304: disabling clock 0x8093678 (GstOssClock)
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1099: setting scheduler state to stopped
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from PLAYING to PAUSED
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
INFO (28778: 0)gst_basic_scheduler_iterate:1395: no enabled elements in this chain, trying the next one
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1401: nothing was scheduled, return STOPPED
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 0: leaving
DEBUG(28778: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PAUSED





DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from PAUSED to READY
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 1
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to READY 1026
DEBUG(28778: 0)gst_element_clear_pad_caps:2133: [src] clearing pad caps
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to READY
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to READY
DEBUG(28778: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_bin_change_state:518: [main] changing childrens' state from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from READY to PLAYING
DEBUG(28778: 0)gst_element_set_state:2021: [src] intermediate: setting state from READY to PAUSED
DEBUG(28778: 0)gst_filesrc_open_file:606: opening file test.wav
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from READY to PAUSED 516
DEBUG(28778: 0)gst_element_negotiate_pads:2069: [src] negotiating pads
DEBUG(28778: 0)gst_element_negotiate_pads:2109: [src] perform negotiate for src:src and parse:sink
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28778: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28778: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28778: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28778: 0)gst_pad_get_caps:1667: using pad real caps 0x80939d8
DEBUG(28778: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28778: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28778: 0)gst_caps_debug:192: caps: 0x80939d8 wavparse_wav audio/x-wav (fixed)
DEBUG(28778: 0)gst_caps_debug:199: no properties
DEBUG(28778: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28778: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28778: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a80 on pad src:src
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad src:src
INFO (28778: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a80 on pad parse:sink
INFO (28778: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:sink
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from READY to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from READY to PAUSED
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "src" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to PLAYING
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from PAUSED to PLAYING 1032
DEBUG(28778: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28778: 0)gst_scheduler_state_transition:289: scheduler PAUSED to PLAYING clock is 0x8093678 (GstOssClock)
DEBUG(28778: 0)gst_scheduler_set_clock:567: scheduler setting clock 0x8093678 (GstOssClock) on element sink
DEBUG(28778: 0)gst_scheduler_state_transition:296: enabling clock 0x8093678 (GstOssClock)
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1103: setting scheduler state to running
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [parse] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "parse" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PAUSED to PLAYING
DEBUG(28778: 0)gst_element_set_state:2003: [sink] setting state from PAUSED to PLAYING
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from PAUSED to PLAYING 1032
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28778: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "sink" in chain 0x8093948
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'sink' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'sink' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'sink' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from PAUSED to PLAYING
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PAUSED to PLAYING
INFO (28778: 0)gst_bin_change_state:562: [main] done changing bin's state from PAUSED to PLAYING, now in PLAYING
INFO (28778: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'parse'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'parse' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("parse"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:404: : leaving
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:371: (0,"src"): entering
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_filesrc_get:478: filesrc sending discont

INFO (28778: 0)gst_event_new:106: creating new event 0x8096f78
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8096f78
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8096f78 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8096f78
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_pad_send_event:2682: have event 4 on pad parse:sink
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8096f78 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8096f78
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8096f78
INFO (28778: 0)gst_data_unref:195: unref data 0x8096f78, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28778: 0)gst_data_unref:195: unref data 0x8096f78, count before unref is 1
INFO (28778: 0)_gst_event_free:77: freeing event 0x8096f78
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 18446744073701254935,  target 408299319, now 416596000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 36414229,  target 454739229, now 418325000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 49211138,  target 501179138, now 451968000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28778: 0)gst_clock_wait_id:502: real_target 45628047,  target 547619047, now 501991000
DEBUG(28778: 0)gst_clock_handle_discont:288: clock discont 550287000 1032763487091373000 1
DEBUG(28778: 0)gst_clock_handle_discont:307: new time 550288000
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28778: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28778: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28778: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28778: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28778: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28778: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28778: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28778: 0)gst_filesrc_get:493: filesrc eos 36056 36056

DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element src
DEBUG(28778: 0)gst_element_set_state:2003: [src] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: src default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "src" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [src] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child src changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)gst_event_new:106: creating new event 0x8097a00
DEBUG(28778: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8097a00
DEBUG(28778: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8097a00 in peer "src:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8097a00
INFO (28778: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28778: 0)gst_pad_send_event:2682: have event 1 on pad parse:sink
DEBUG(28778: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28778: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8097a00 in peer "parse:src"'s pen
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8097a00
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28778: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28778: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8097a00
INFO (28778: 0)gst_data_unref:195: unref data 0x8097a00, count before unref is 2
DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element sink
DEBUG(28778: 0)gst_element_set_state:2003: [sink] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: sink default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "sink" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [sink] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28778: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28778: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "parse"(@0x8090ce8)
INFO (28778: 0)cothread_switch:602: switching from cothread #0 to cothread #2
DEBUG(28778: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28778: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28778: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28778: 0)gst_data_unref:195: unref data 0x8097a00, count before unref is 1
INFO (28778: 0)_gst_event_free:77: freeing event 0x8097a00
DEBUG(28778: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28778: 0)gst_element_set_eos:2534: setting EOS on element parse
DEBUG(28778: 0)gst_element_set_state:2003: [parse] setting state from PLAYING to PAUSED
INFO (28778: 0)gst_element_change_state:2166: parse default handler sets state from PLAYING to PAUSED 2052
INFO (28778: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28778: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "parse" in chain 0x8093948
DEBUG(28778: 0)gst_element_change_state:2200: [parse] signaling state change from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PLAYING to PAUSED
INFO (28778: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28778: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28778: 0)gst_element_change_state:2166: main default handler sets state from PLAYING to PAUSED 2052
DEBUG(28778: 0)gst_scheduler_state_transition:304: disabling clock 0x8093678 (GstOssClock)
INFO (28778: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28778: 0)gst_basic_scheduler_state_transition:1099: setting scheduler state to stopped
DEBUG(28778: 0)gst_element_change_state:2200: [main] signaling state change from PLAYING to PAUSED
INFO (28778: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28778: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28778: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28778: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28778: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28778: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28778: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
INFO (28778: 0)gst_basic_scheduler_iterate:1395: no enabled elements in this chain, trying the next one
DEBUG(28778: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28778: 0)gst_basic_scheduler_iterate:1401: nothing was scheduled, return STOPPED
DEBUG(28778: 0)gst_bin_iterate:824: ("main") 0: leaving
DEBUG(28778: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PAUSED






big_sample.log:
-----
INFO (28777: 0) Initializing GStreamer Core Library version 0.4.1.1 
INFO (28777: 0) CPU features: (00000000) MMX SSE 
DEBUG(28777: 0)gst_element_factory_find:106: no such elementfactory "bin"
DEBUG(28777: 0)gst_element_factory_find:106: no such elementfactory "pipeline"
DEBUG(28777: 0)gst_element_factory_find:106: no such elementfactory "thread"
DEBUG(28777: 0)gst_element_factory_find:106: no such elementfactory "queue"
DEBUG(28777: 0)gst_element_factory_find:106: no such elementfactory "typefind"
INFO (28777: 0)gst_plugin_register_func:115: plugin "(null)" initialised
INFO (28777: 0)_gst_buffer_initialize:58: Buffers are initialized now
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x804d280) gave new mime type 'video/raw', id 1
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x805e168) gave new mime type 'video/mpeg', id 2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x805e3d0) gave new mime type 'audio/raw', id 3
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x805e4c0) gave new mime type 'audio/mod', id 4
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: mikmod_audio/mod(0x805e548) gave new mime type 'audio/mod', id 4
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x805e740) gave new mime type 'audio/mp3', id 5
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x805ec28) gave new mime type 'video/jpeg', id 6
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8060570) gave new mime type 'audio/x-aiff', id 7
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8060760) gave new mime type 'audio/x-wav', id 8
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x80607f0) gave new mime type 'audio/basic', id 9
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8062b38) gave new mime type 'application/x-lav', id 10
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: wavparse_audio/x-wav(0x8062d30) gave new mime type 'audio/x-wav', id 8
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: mpeg1types_video/mpeg(0x80686a0) gave new mime type 'video/mpeg', id 2
DEBUG(28777: 0)gst_type_register:171: gsttype: mpeg1types_video/mpeg;system(0x8068788) gave new mime type 'video/mpeg', id 2
DEBUG(28777: 0)gst_type_register:171: gsttype: mpeg2types_video/mpeg(0x8068828) gave new mime type 'video/mpeg', id 2
DEBUG(28777: 0)gst_type_register:171: gsttype: mpeg2types_video/mpeg;system(0x8068878) gave new mime type 'video/mpeg', id 2
DEBUG(28777: 0)gst_type_register:171: gsttype: mp3types_audio/mp3(0x8068980) gave new mime type 'audio/mp3', id 5
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: festival_text/plain(0x806c738) gave new mime type 'text/plain', id 11
DEBUG(28777: 0)gst_object_ref:169: ref 'festival_sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'festival_src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x806f7e0) gave new mime type 'video/avi', id 12
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'audio_%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video_%d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: auparse_audio/au(0x806faf0) gave new mime type 'audio/au', id 13
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x806fe88) gave new mime type 'audio/ac3', id 14
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: gsttypes_video/raw(0x8070a60) gave new mime type 'video/raw', id 1
DEBUG(28777: 0)gst_type_register:171: gsttype: gsttypes_audio/raw(0x80707c0) gave new mime type 'audio/raw', id 3
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src_%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink_%d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: vorbis_audio/x-ogg(0x80734a0) gave new mime type 'application/x-ogg', id 15
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: dv_video/dv(0x8073b28) gave new mime type 'video/dv', id 16
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'audio' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8083210) gave new mime type 'video/quicktime', id 17
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: qtdemux_video/quicktime(0x80832b0) gave new mime type 'video/quicktime', id 17
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8083768) gave new mime type 'audio/a52', id 18
DEBUG(28777: 0)gst_object_ref:169: ref 'private_stream_1_%02d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: capstype(0x8083808) gave new mime type 'unknown/unknown', id 19
DEBUG(28777: 0)gst_object_ref:169: ref 'private_stream_2' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'subtitle_stream_%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'audio_%02d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'audio_%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video_%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: flxdec_video/fli(0x8084b30) gave new mime type 'video/fli', id 20
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: cdxaparse_video/avi(0x8085118) gave new mime type 'video/avi', id 12
DEBUG(28777: 0)gst_object_ref:169: ref 'audio_%02d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'video_%02d' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_type_register:171: gsttype: avidemux_video/avi(0x8085ca8) gave new mime type 'video/avi', id 12
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
registry: loaded user_registry in 0.154638 seconds
          (/home/thockin/.gstreamer/registry.xml)
DEBUG(28777: 0)gst_element_factory_make:248: gstelementfactory: make "pipeline" "main"
DEBUG(28777: 0)gst_element_factory_create:196: creating element from factory "pipeline" (name "main", type 134553416)
DEBUG(28777: 0)gst_scheduler_factory_find:777: gstscheduler: find "basicomega"
DEBUG(28777: 0)gst_plugin_feature_ensure_loaded:92: loading plugin gstbasicomegascheduler for feature
DEBUG(28777: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so"
DEBUG(28777: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" loaded, called entry function...
DEBUG(28777: 0)gst_scheduler_factory_find:777: gstscheduler: find "basicomega"
INFO (28777: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" initialised
INFO (28777: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstbasicomegascheduler.so" loaded
DEBUG(28777: 0)gst_object_ref:169: ref '(null)' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink '(null)'
DEBUG(28777: 0)gst_object_unref:188: unref '(null)' 2->1
DEBUG(28777: 0)gst_basic_scheduler_setup:976: initializing cothread context
INFO (28777: 0)cothread_context_init:93: initializing cothreads
INFO (28777: 0)cothread_context_init:124: 0th cothread is 0x8058370 at sp:0xbffff3bb
DEBUG(28777: 0)gst_element_factory_create:213: class pipeline
DEBUG(28777: 0)gst_element_factory_make:248: gstelementfactory: make "filesrc" "src"
DEBUG(28777: 0)gst_plugin_feature_ensure_loaded:92: loading plugin gstelements for feature
DEBUG(28777: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstelements.so"
DEBUG(28777: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstelements.so" loaded, called entry function...
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'src%d' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'sink%d' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'src%d' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'src%d' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'sink%d' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'sink%d' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
INFO (28777: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstelements.so" initialised
INFO (28777: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstelements.so" loaded
DEBUG(28777: 0)gst_element_factory_create:196: creating element from factory "filesrc" (name "src", type 134685168)
DEBUG(28777: 0)gst_pad_set_get_function:478: getfunc for '':src  set to 0x40216d64
DEBUG(28777: 0)gst_pad_set_event_function:498: eventfunc for '':src  set to 0x402177bc
DEBUG(28777: 0)gst_pad_set_event_mask_function:511: eventmaskfunc for '':src  set to 0x402161d8
DEBUG(28777: 0)gst_pad_set_query_function:610: queryfunc for '':src  set to 0x40217740
DEBUG(28777: 0)gst_pad_set_query_type_function:622: querytypefunc for '':src  set to 0x402161f4
DEBUG(28777: 0)gst_pad_set_formats_function:696: formats function for '':src  set to 0x40216210
DEBUG(28777: 0)gst_element_add_pad:939: setting parent of pad 'src' to '(null)'
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'src'
DEBUG(28777: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28777: 0)gst_element_factory_create:213: class filesrc
DEBUG(28777: 0)gst_element_factory_make:248: gstelementfactory: make "wavparse" "parse"
DEBUG(28777: 0)gst_plugin_feature_ensure_loaded:92: loading plugin wavparse for feature
DEBUG(28777: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstwavparse.so"
DEBUG(28777: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstwavparse.so" loaded, called entry function...
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_sink' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'wavparse_sink' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_src' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'wavparse_src' 2->1
INFO (28777: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstwavparse.so" initialised
INFO (28777: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstwavparse.so" loaded
DEBUG(28777: 0)gst_element_factory_create:196: creating element from factory "wavparse" (name "parse", type 134810488)
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_sink' 2->3
DEBUG(28777: 0)gst_element_add_pad:939: setting parent of pad 'sink' to '(null)'
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'sink'
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_pad_set_chain_function:458: chainfunc for (null):sink set to 0x4022356c
DEBUG(28777: 0)gst_object_ref:169: ref 'wavparse_src' 2->3
DEBUG(28777: 0)gst_element_add_pad:939: setting parent of pad 'src' to '(null)'
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'src'
DEBUG(28777: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28777: 0)gst_element_factory_create:213: class wavparse
DEBUG(28777: 0)gst_element_factory_make:248: gstelementfactory: make "osssink" "sink"
DEBUG(28777: 0)gst_plugin_feature_ensure_loaded:92: loading plugin ossaudio for feature
DEBUG(28777: 0)gst_plugin_load_plugin:161: attempt to load plugin "/usr/local/lib/gst/libgstossaudio.so"
DEBUG(28777: 0)gst_plugin_load_plugin:184: plugin "/usr/local/lib/gst/libgstossaudio.so" loaded, called entry function...
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'src' 2->1
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_unref:188: unref 'src' 2->1
INFO (28777: 0)gst_plugin_register_func:115: plugin "/usr/local/lib/gst/libgstossaudio.so" initialised
INFO (28777: 0)gst_plugin_load_plugin:190: plugin "/usr/local/lib/gst/libgstossaudio.so" loaded
DEBUG(28777: 0)gst_element_factory_create:196: creating element from factory "osssink" (name "sink", type 134812256)
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 2->3
DEBUG(28777: 0)gst_element_add_pad:939: setting parent of pad 'sink' to '(null)'
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'sink'
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_pad_set_connect_function:716: connectfunc for (null):sink set to 0x40228e80
DEBUG(28777: 0)gst_pad_set_bufferpool_function:753: bufferpoolfunc for (null):sink set to 0x402288e4
DEBUG(28777: 0)gst_pad_set_convert_function:591: convertfunc for (null):sink  set to 0x40229abc
DEBUG(28777: 0)gst_pad_set_query_function:610: queryfunc for (null):sink  set to 0x40229e90
DEBUG(28777: 0)gst_pad_set_query_type_function:622: querytypefunc for (null):sink  set to 0x40229e74
DEBUG(28777: 0)gst_pad_set_formats_function:696: formats function for (null):sink  set to 0x40229aa0
DEBUG(28777: 0)gst_pad_set_chain_function:458: chainfunc for (null):sink set to 0x40229708
DEBUG(28777: 0)gst_element_factory_create:213: class osssink
DEBUG(28777: 0)gst_element_connect_filtered:1495: trying to connect element src to element parse
INFO (28777: 0)gst_pad_connect_filtered:963: connecting src:src and parse:sink
INFO (28777: 0)gst_pad_try_reconnect_filtered_func:1422: reconnect filtered src:src and parse:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28777: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1427: dumping caps of pad src:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of src pad (pre-reconnect): entering
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1431: dumping caps of pad parse:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of sink pad (pre-reconnect): entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28777: 0)gst_caps_debug:199: no properties
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:702: first caps is NULL, return other caps
INFO (28777: 0)gst_pad_try_reconnect_filtered_func:1446: pads src:src and parse:sink intersected to fixed caps
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1471: setting filter for connection to:
DEBUG(28777: 0)gst_caps_debug:190: caps debug: filter for connection: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d520 wavparse_wav audio/x-wav (fixed)
DEBUG(28777: 0)gst_caps_debug:199: no properties
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28777: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28777: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28777: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28777: 0)gst_caps_debug:199: no properties
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28777: 0)gst_caps_intersect:706: second caps is NULL, return other caps
DEBUG(28777: 0)gst_pad_try_set_caps_func:1246: parent src of pad src:src is not READY
DEBUG(28777: 0)gst_pad_try_set_caps_func:1246: parent parse of pad parse:sink is not READY
INFO (28777: 0)gst_pad_connect_filtered:1031: connected src:src and parse:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28777: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of newly connected src pad: entering
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_element_connect_filtered:1510: connected pad src:src to pad parse:sink
DEBUG(28777: 0)gst_element_connect_filtered:1495: trying to connect element parse to element sink
INFO (28777: 0)gst_pad_connect_filtered:963: connecting parse:src and sink:sink
INFO (28777: 0)gst_pad_try_reconnect_filtered_func:1422: reconnect filtered parse:src and sink:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1427: dumping caps of pad parse:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of src pad (pre-reconnect): entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1431: dumping caps of pad sink:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of sink pad (pre-reconnect): entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
INFO (28777: 0)gst_pad_try_reconnect_filtered_func:1446: pads parse:src and sink:sink intersected to variable caps
DEBUG(28777: 0)gst_pad_try_reconnect_filtered_func:1471: setting filter for connection to:
DEBUG(28777: 0)gst_caps_debug:190: caps debug: filter for connection: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d538 intersect audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28777: 0)gst_pad_perform_negotiate:1516: dumping caps of pad parse:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28777: 0)gst_pad_perform_negotiate:1521: dumping caps of pad sink:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:706: second caps is NULL, return other caps
DEBUG(28777: 0)gst_pad_try_set_caps_func:1246: parent parse of pad parse:src is not READY
DEBUG(28777: 0)gst_pad_try_set_caps_func:1246: parent sink of pad sink:sink is not READY
INFO (28777: 0)gst_pad_connect_filtered:1031: connected parse:src and sink:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps of newly connected src pad: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_element_connect_filtered:1510: connected pad parse:src to pad sink:sink
DEBUG(28777: 0)gst_bin_add:352: adding element "src" to bin "main"
DEBUG(28777: 0)gst_object_ref:169: ref 'src' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'src'
DEBUG(28777: 0)gst_object_unref:188: unref 'src' 2->1
INFO (28777: 0)gst_bin_set_element_sched:225: setting element "src" sched to 0x8058250
INFO (28777: 0)gst_element_set_scheduler:2476: [src] setting scheduler to 0x8058250
INFO (28777: 0)gst_basic_scheduler_add_element:1021: adding element "src" to scheduler
INFO (28777: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093948, now are 1 chains in sched 0x8058250
INFO (28777: 0)gst_basic_scheduler_chain_add_element:752: adding element "src" to chain 0x8093948
INFO (28777: 0)gst_bin_add:389: [main] added child "src"
DEBUG(28777: 0)gst_bin_add:352: adding element "parse" to bin "main"
DEBUG(28777: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'parse'
DEBUG(28777: 0)gst_object_unref:188: unref 'parse' 2->1
INFO (28777: 0)gst_bin_set_element_sched:225: setting element "parse" sched to 0x8058250
INFO (28777: 0)gst_element_set_scheduler:2476: [parse] setting scheduler to 0x8058250
INFO (28777: 0)gst_basic_scheduler_add_element:1021: adding element "parse" to scheduler
INFO (28777: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093988, now are 2 chains in sched 0x8058250
INFO (28777: 0)gst_basic_scheduler_chain_add_element:752: adding element "parse" to chain 0x8093988
INFO (28777: 0)gst_basic_scheduler_add_element:1050: peer is in same scheduler, chaining together
INFO (28777: 0)gst_basic_scheduler_chain_elements:881: merging chain 0x8093948 into chain 0x8093988
INFO (28777: 0)gst_basic_scheduler_chain_destroy:740: destroyed chain 0x8093948, now are 1 chains in sched 0x8058250
INFO (28777: 0)gst_bin_add:389: [main] added child "parse"
DEBUG(28777: 0)gst_bin_add:352: adding element "sink" to bin "main"
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_object_sink:209: sink 'sink'
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
INFO (28777: 0)gst_bin_set_element_sched:225: setting element "sink" sched to 0x8058250
DEBUG(28777: 0)gst_scheduler_add_element:217: added clock provider sink
DEBUG(28777: 0)gst_scheduler_add_element:221: added clock receiver sink
INFO (28777: 0)gst_element_set_scheduler:2476: [sink] setting scheduler to 0x8058250
INFO (28777: 0)gst_basic_scheduler_add_element:1021: adding element "sink" to scheduler
INFO (28777: 0)gst_basic_scheduler_chain_new:721: created new chain 0x8093948, now are 2 chains in sched 0x8058250
INFO (28777: 0)gst_basic_scheduler_chain_add_element:752: adding element "sink" to chain 0x8093948
INFO (28777: 0)gst_basic_scheduler_add_element:1050: peer is in same scheduler, chaining together
INFO (28777: 0)gst_basic_scheduler_chain_elements:881: merging chain 0x8093988 into chain 0x8093948
INFO (28777: 0)gst_basic_scheduler_chain_destroy:740: destroyed chain 0x8093988, now are 1 chains in sched 0x8058250
INFO (28777: 0)gst_bin_add:389: [main] added child "sink"
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from NULL to READY
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from NULL to READY 258
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from NULL to READY
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from NULL to READY
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to READY
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from NULL to READY 258
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1107: no interesting state change, doing nothing
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from NULL to READY
DEBUG(28777: 0)gst_element_set_state:2003: [main] setting state from READY to PLAYING
DEBUG(28777: 0)gst_element_set_state:2021: [main] intermediate: setting state from READY to PAUSED
INFO (28777: 0)gst_bin_change_state:518: [main] changing childrens' state from READY to PAUSED
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from READY to PAUSED
DEBUG(28777: 0)gst_filesrc_open_file:606: opening file tribal113.wav
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from READY to PAUSED 516
DEBUG(28777: 0)gst_element_negotiate_pads:2069: [src] negotiating pads
DEBUG(28777: 0)gst_element_negotiate_pads:2117: [src] not negotiating src:src and parse:sink, not in READY yet
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from READY to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from READY to PAUSED
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from READY to PAUSED 516
DEBUG(28777: 0)gst_element_negotiate_pads:2069: [main] negotiating pads
DEBUG(28777: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28777: 0)gst_scheduler_state_transition:279: scheduler READY to PAUSED clock is 0x8093678 (GstOssClock)
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1107: no interesting state change, doing nothing
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from READY to PAUSED
DEBUG(28777: 0)gst_element_set_state:2003: [parse] setting state from NULL to PAUSED
DEBUG(28777: 0)gst_element_set_state:2021: [parse] intermediate: setting state from NULL to READY
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from NULL to READY 258
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from NULL to READY
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from NULL to READY
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from READY to PAUSED 516
DEBUG(28777: 0)gst_element_negotiate_pads:2069: [parse] negotiating pads
DEBUG(28777: 0)gst_element_negotiate_pads:2109: [parse] perform negotiate for src:src and parse:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28777: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28777: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b40 with caps 0x805d4a8
DEBUG(28777: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4a8 wavparse_wav audio/x-wav (fixed)
DEBUG(28777: 0)gst_caps_debug:199: no properties
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28777: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939d8 on pad src:src
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad src:src
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939d8 on pad parse:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:sink
DEBUG(28777: 0)gst_element_negotiate_pads:2117: [parse] not negotiating parse:src and sink:sink, not in READY yet
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from READY to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from READY to PAUSED
DEBUG(28777: 0)gst_element_set_state:2003: [sink] setting state from NULL to PAUSED
DEBUG(28777: 0)gst_element_set_state:2021: [sink] intermediate: setting state from NULL to READY
INFO (28777: 0)gst_osssink_open_audio:848: osssink: attempting to open sound device
INFO (28777: 0)gst_osssink_open_audio:870: osssink: Capabilities 0000b300
INFO (28777: 0)gst_osssink_open_audio:872: osssink:   Full duplex
INFO (28777: 0)gst_osssink_open_audio:873: osssink:   Realtime
INFO (28777: 0)gst_osssink_open_audio:876: osssink:   Trigger
INFO (28777: 0)gst_osssink_open_audio:877: osssink:   Direct access
INFO (28777: 0)gst_osssink_open_audio:884: osssink:   Channel binding
INFO (28777: 0)gst_osssink_open_audio:889: osssink: Formats 00000418
INFO (28777: 0)gst_osssink_open_audio:893: osssink:   U8
INFO (28777: 0)gst_osssink_open_audio:894: osssink:   S16_LE
INFO (28777: 0)gst_osssink_open_audio:901: osssink:   AC3
INFO (28777: 0)gst_osssink_open_audio:904: osssink: opened audio (/dev/dsp) with fd=4
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from NULL to READY 258
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from NULL to READY
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from NULL to READY
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from READY to PAUSED 516
DEBUG(28777: 0)gst_element_negotiate_pads:2069: [sink] negotiating pads
DEBUG(28777: 0)gst_element_negotiate_pads:2109: [sink] perform negotiate for parse:src and sink:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:src (0x808f808)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058b70 with caps 0x805d4c0
DEBUG(28777: 0)gst_pad_perform_negotiate:1516: dumping caps of pad parse:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4c0 wavparse_raw audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 8000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of sink:sink (0x808f884)
DEBUG(28777: 0)gst_pad_get_caps:1676: using pad template 0x8058ba0 with caps 0x805d4d8
DEBUG(28777: 0)gst_pad_perform_negotiate:1521: dumping caps of pad sink:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x805d4d8 osssink_sink audio/raw (NOT fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 0
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:151: [list]
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 8
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:143: rate: int range 1000-48000
DEBUG(28777: 0)gst_props_debug_entry:143: channels: int range 1-2
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939f0 on pad parse:src
INFO (28777: 0)gst_pad_try_set_caps_func:1325: caps are not fixed on pad parse:src, not setting them yet
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x80939f0 on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1272: calling connect function on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1297: got reply DELAYED (0) from connect function on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1325: caps are not fixed on pad sink:sink, not setting them yet
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from READY to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from READY to PAUSED
INFO (28777: 0)gst_bin_change_state:562: [main] done changing bin's state from READY to PAUSED, now in PAUSED
INFO (28777: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
INFO (28777: 0)gst_bin_change_state:518: [main] changing childrens' state from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "src" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'src' is &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)cothread_create:189: Found free cothread slot 1
DEBUG(28777: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe00000 to 0xc1700000 (size 0x20000)
DEBUG(28777: 0)cothread_create:207: going into mmap
DEBUG(28777: 0)cothread_create:213: coming out of mmap
DEBUG(28777: 0)cothread_create:224: create  cothread 1 with magic number 0xabcdef
INFO (28777: 0)cothread_create:234: created cothread #1 in slot 1: 0xbfe00000 at sp:0xbfe20000
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe00000 for 'src'
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to PLAYING
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from PAUSED to PLAYING 1032
DEBUG(28777: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28777: 0)gst_scheduler_state_transition:289: scheduler PAUSED to PLAYING clock is 0x8093678 (GstOssClock)
DEBUG(28777: 0)gst_scheduler_set_clock:567: scheduler setting clock 0x8093678 (GstOssClock) on element sink
DEBUG(28777: 0)gst_scheduler_state_transition:296: enabling clock 0x8093678 (GstOssClock)
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1103: setting scheduler state to running
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [parse] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "parse" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'parse' is &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)cothread_create:189: Found free cothread slot 2
DEBUG(28777: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe20000 to 0xc1720000 (size 0x20000)
DEBUG(28777: 0)cothread_create:207: going into mmap
DEBUG(28777: 0)cothread_create:213: coming out of mmap
DEBUG(28777: 0)cothread_create:224: create  cothread 2 with magic number 0xabcdef
INFO (28777: 0)cothread_create:234: created cothread #2 in slot 2: 0xbfe20000 at sp:0xbfe40000
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe20000 for 'parse'
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [sink] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "sink" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'sink' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:666: about to create a cothread, wrapper for 'sink' is &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)cothread_create:189: Found free cothread slot 3
DEBUG(28777: 0)cothread_create:202: mmap   cothread slot stack from 0xbfe40000 to 0xc1740000 (size 0x20000)
DEBUG(28777: 0)cothread_create:207: going into mmap
DEBUG(28777: 0)cothread_create:213: coming out of mmap
DEBUG(28777: 0)cothread_create:224: create  cothread 3 with magic number 0xabcdef
INFO (28777: 0)cothread_create:234: created cothread #3 in slot 3: 0xbfe40000 at sp:0xbfe60000
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:678: created cothread 0xbfe40000 for 'sink'
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PAUSED to PLAYING
INFO (28777: 0)gst_bin_change_state:562: [main] done changing bin's state from PAUSED to PLAYING, now in PLAYING
INFO (28777: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe60000
DEBUG(28777: 0)cothread_stub:428: : entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe40000
DEBUG(28777: 0)cothread_stub:428: : entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("parse"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe20000
DEBUG(28777: 0)cothread_stub:428: : entering
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:371: (0,"src"): entering
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056cd8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056cd8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056cd8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056cd8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:218: GstWavParse: checking for RIFF format
DEBUG(28777: 0)gst_wavparse_chain:246: GstWavParse: looking for fmt chunk
INFO (28777: 0)gst_pad_try_set_caps:1351: trying to set caps 0x8093a20 on pad parse:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: caps that we are trying to set: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x8093a20 parsewav_src audio/raw (fixed)
DEBUG(28777: 0)gst_props_debug_entry:140: format: string "int"
DEBUG(28777: 0)gst_props_debug_entry:128: width: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: law: int 0
DEBUG(28777: 0)gst_props_debug_entry:128: endianness: int 1234
DEBUG(28777: 0)gst_props_debug_entry:137: signed: bool 1
DEBUG(28777: 0)gst_props_debug_entry:128: depth: int 16
DEBUG(28777: 0)gst_props_debug_entry:128: rate: int 44100
DEBUG(28777: 0)gst_props_debug_entry:128: channels: int 1
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a20 on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1272: calling connect function on pad sink:sink
INFO (28777: 0)gst_osssink_sync_parms:401: osssink: trying to set sound card to 44100Hz 16 bit mono (7fff0006 fragment)
INFO (28777: 0)gst_osssink_sync_parms:429: osssink: set sound card to 44100Hz 16 bit mono (65536 bytes buffer, 04000006 fragment)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (format)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (fragment)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (frequency)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from sink to main (channels)
INFO (28777: 0)gst_osssink_sync_parms:442: fragment time 88200 725623

INFO (28777: 0)gst_pad_try_set_caps_func:1297: got reply OK (1) from connect function on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad sink:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a20 on pad parse:src
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:src
INFO (28777: 0)gst_pad_try_set_caps:1383: succeeded setting caps 0x8093a20 on pad parse:src, return value 1
DEBUG(28777: 0)gst_wavparse_chain:289: frequency 44100, channels 1
DEBUG(28777: 0)gst_wavparse_chain:306: GstWavParse: looking for data chunk
DEBUG(28777: 0)gst_wavparse_chain:319: data begins at 44
DEBUG(28777: 0)gst_wavparse_chain:326: sending last 4052 bytes along as audio
INFO (28777: 0)gst_data_unref:195: unref data 0x8056cd8, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28777: 0)gst_clock_wait_id:502: real_target 18446744073705579616,  target 0, now 3972000
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
DEBUG(28777: 0)gst_clock_wait_id:502: real_target 40187043,  target 45941043, now 5754000
DEBUG(28777: 0)gst_clock_handle_discont:288: clock discont 54210000 1032763467087449000 1
DEBUG(28777: 0)gst_clock_handle_discont:307: new time 54211000
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8056c90
INFO (28777: 0)gst_data_unref:195: unref data 0x8056c90, count before unref is 1
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_filesrc_get:493: filesrc eos 187454 187454

DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element src
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "src" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)gst_event_new:106: creating new event 0x8098b70
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8098b70
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8098b70 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8098b70
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_pad_send_event:2682: have event 1 on pad parse:sink
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8098b70 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8098b70
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8098b70
INFO (28777: 0)gst_data_unref:195: unref data 0x8098b70, count before unref is 2
DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element sink
DEBUG(28777: 0)gst_element_set_state:2003: [sink] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "sink" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "parse"(@0x8090ce8)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28777: 0)gst_data_unref:195: unref data 0x8098b70, count before unref is 1
INFO (28777: 0)_gst_event_free:77: freeing event 0x8098b70
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element parse
DEBUG(28777: 0)gst_element_set_state:2003: [parse] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "parse" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from PLAYING to PAUSED 2052
DEBUG(28777: 0)gst_scheduler_state_transition:304: disabling clock 0x8093678 (GstOssClock)
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1099: setting scheduler state to stopped
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from PLAYING to PAUSED
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
INFO (28777: 0)gst_basic_scheduler_iterate:1395: no enabled elements in this chain, trying the next one
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1401: nothing was scheduled, return STOPPED
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 0: leaving
DEBUG(28777: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PAUSED





DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from PAUSED to READY
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28777: 0)gst_data_unref:195: unref data 0x8056d20, count before unref is 1
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to READY 1026
DEBUG(28777: 0)gst_element_clear_pad_caps:2133: [src] clearing pad caps
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to READY
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to READY
DEBUG(28777: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_bin_change_state:518: [main] changing childrens' state from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from READY to PLAYING
DEBUG(28777: 0)gst_element_set_state:2021: [src] intermediate: setting state from READY to PAUSED
DEBUG(28777: 0)gst_filesrc_open_file:606: opening file tribal113.wav
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (filesize)
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from READY to PAUSED 516
DEBUG(28777: 0)gst_element_negotiate_pads:2069: [src] negotiating pads
DEBUG(28777: 0)gst_element_negotiate_pads:2109: [src] perform negotiate for src:src and parse:sink
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of src:src (0x808f710)
DEBUG(28777: 0)gst_pad_get_caps:1680: pad has no caps
DEBUG(28777: 0)gst_pad_perform_negotiate:1516: dumping caps of pad src:src
DEBUG(28777: 0)gst_caps_debug:190: caps debug: src caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_pad_get_caps:1663: get pad caps of parse:sink (0x808f78c)
DEBUG(28777: 0)gst_pad_get_caps:1667: using pad real caps 0x80939d8
DEBUG(28777: 0)gst_pad_perform_negotiate:1521: dumping caps of pad parse:sink
DEBUG(28777: 0)gst_caps_debug:190: caps debug: sink caps, awaiting negotiation, after applying filter: entering
DEBUG(28777: 0)gst_caps_debug:192: caps: 0x80939d8 wavparse_wav audio/x-wav (fixed)
DEBUG(28777: 0)gst_caps_debug:199: no properties
DEBUG(28777: 0)gst_caps_debug:204: caps debug: leaving
DEBUG(28777: 0)gst_caps_intersect:702: first caps is NULL, return other caps
DEBUG(28777: 0)gst_caps_intersect:706: second caps is NULL, return other caps
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a80 on pad src:src
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad src:src
INFO (28777: 0)gst_pad_try_set_caps_func:1251: trying to set caps 0x8093a80 on pad parse:sink
INFO (28777: 0)gst_pad_try_set_caps_func:1316: setting caps on pad parse:sink
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from READY to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from READY to PAUSED
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "src" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to PLAYING
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from PAUSED to PLAYING 1032
DEBUG(28777: 0)gst_scheduler_get_clock:514: scheduler selected clock 0x8093678 (GstOssClock)
DEBUG(28777: 0)gst_scheduler_state_transition:289: scheduler PAUSED to PLAYING clock is 0x8093678 (GstOssClock)
DEBUG(28777: 0)gst_scheduler_set_clock:567: scheduler setting clock 0x8093678 (GstOssClock) on element sink
DEBUG(28777: 0)gst_scheduler_state_transition:296: enabling clock 0x8093678 (GstOssClock)
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1103: setting scheduler state to running
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [parse] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "parse" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PAUSED to PLAYING
DEBUG(28777: 0)gst_element_set_state:2003: [sink] setting state from PAUSED to PLAYING
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from PAUSED to PLAYING 1032
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28777: 0)gst_basic_scheduler_chain_enable_element:770: enabling element "sink" in chain 0x8093948
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:533: chain is using COTHREADS
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'sink' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'sink' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'sink' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:570: element 'parse' is a filter, using _chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:649: setting cothreaded push proxy for sinkpad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad parse:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'parse' to &gst_basic_scheduler_chain_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:564: element 'src' is a source, using _src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:594: inspecting pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:655: setting cothreaded pull proxy for srcpad src:src
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:683: about to set the wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_basic_scheduler_cothreaded_chain:690: set wrapper function for 'src' to &gst_basic_scheduler_src_wrapper
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from PAUSED to PLAYING
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PAUSED to PLAYING
INFO (28777: 0)gst_bin_change_state:562: [main] done changing bin's state from PAUSED to PLAYING, now in PLAYING
INFO (28777: 0)gst_element_change_state:2160: no state change needed for element main (VOID_PENDING)
DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'parse'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'parse' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("parse"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'parse' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:404: : leaving
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:371: (0,"src"): entering
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_filesrc_get:478: filesrc sending discont

INFO (28777: 0)gst_event_new:106: creating new event 0x8098e30
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8098e30
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8098e30 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8098e30
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_pad_send_event:2682: have event 4 on pad parse:sink
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8098e30 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x8098e30
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x8098e30
INFO (28777: 0)gst_data_unref:195: unref data 0x8098e30, count before unref is 2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element sink done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:357: (0,'sink'): leaving
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)cothread_main:387: returning 0x8058370, the 0th cothread
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_basic_scheduler_iterate:1381: cothread switch ended or interrupted
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1405: scheduler still running, return RUNNING
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "sink"(@0x8092d48)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:305: ("sink"): entering
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:307: stepping through pads
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from sink:sink
DEBUG(28777: 0)gst_pad_pull:2111: (sink:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad parse:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (parse:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "parse": 0xbfe20000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28777: 0)gst_data_unref:195: unref data 0x8098e30, count before unref is 1
INFO (28777: 0)_gst_event_free:77: freeing event 0x8098e30
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c90
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c90 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c90
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c90
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056cd8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056cd8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056cd8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056cd8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c48
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c48 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c48
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c48
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056c00
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056c00 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056c00
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056c00
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056bb8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056bb8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056bb8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056bb8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056b70
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056b70 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056b70
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056b70
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056b28
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056b28 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056b28
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056b28
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056ae0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056ae0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056ae0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056ae0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056a98
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056a98 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056a98
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056a98
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056a50
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056a50 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056a50
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056a50
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056a08
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056a08 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056a08
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056a08
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80569c0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80569c0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80569c0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80569c0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056978
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056978 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056978
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056978
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056930
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056930 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056930
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056930
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80568e8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80568e8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80568e8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80568e8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80568a0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80568a0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80568a0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80568a0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056858
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056858 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056858
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056858
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056810
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056810 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056810
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056810
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80567c8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80567c8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80567c8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80567c8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056780
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056780 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056780
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056780
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056738
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056738 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056738
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056738
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80566f0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80566f0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80566f0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80566f0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80566a8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80566a8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80566a8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80566a8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056660
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056660 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056660
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056660
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056618
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056618 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056618
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056618
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80565d0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80565d0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80565d0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80565d0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056588
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056588 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056588
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056588
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056540
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056540 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056540
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056540
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80564f8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80564f8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80564f8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80564f8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80564b0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80564b0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80564b0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80564b0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056468
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056468 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056468
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056468
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056420
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056420 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056420
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056420
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80563d8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80563d8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80563d8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80563d8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056390
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056390 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056390
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056390
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056348
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056348 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056348
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056348
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056300
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056300 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056300
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056300
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80562b8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80562b8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80562b8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80562b8
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056270
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056270 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056270
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056270
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056228
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056228 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056228
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056228
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80561e0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80561e0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80561e0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80561e0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056198
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056198 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056198
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056198
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056150
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056150 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056150
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056150
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056108
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056108 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056108
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056108
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x80560c0
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x80560c0 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x80560c0
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x80560c0
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056078
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056078 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056078
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056078
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_element_dispatch_properties_changed:238: deep notification from src to main (offset)
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x8056030
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x8056030 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x8056030
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of parse:sink 0x8056030
DEBUG(28777: 0)gst_wavparse_chain:179: gst_wavparse_chain: got buffer in 'parse'
DEBUG(28777: 0)gst_wavparse_chain:205: we're in unknown territory here, not passing on
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:338: calling chain function of element parse done
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:327: pulling data from parse:sink
DEBUG(28777: 0)gst_pad_pull:2111: (parse:sink): entering
DEBUG(28777: 0)gst_pad_pull:2125: calling gethandler gst_basic_scheduler_gethandler_proxy of peer pad src:src
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:489: (src:src): entering
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:498: switching to "src": 0xbfe00000 to fill bufpen
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #1
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe1fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe00020
DEBUG(28777: 0)cothread_switch:613: enter cothread #1 1 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:384: calling _getfunc for src:src
DEBUG(28777: 0)gst_filesrc_get:493: filesrc eos 187454 187454

DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element src
DEBUG(28777: 0)gst_element_set_state:2003: [src] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: src default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "src" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "src" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [src] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child src changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)gst_event_new:106: creating new event 0x809a5d8
DEBUG(28777: 0)gst_basic_scheduler_src_wrapper:388: calling gst_pad_push on pad src:src 0x809a5d8
DEBUG(28777: 0)gst_pad_push:2063: (src:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad parse:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (parse:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x809a5d8 in peer "src:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe20000 to consume buffer 0x809a5d8
INFO (28777: 0)cothread_switch:602: switching from cothread #1 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #1 0 0xbfe1fffc<->0xbfe20000 (4) 0xbfe00020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_object_ref:169: ref 'sink' 1->2
DEBUG(28777: 0)gst_pad_send_event:2682: have event 1 on pad parse:sink
DEBUG(28777: 0)gst_pad_push:2063: (parse:src): entering
DEBUG(28777: 0)gst_pad_push:2074: calling chainhandler &gst_basic_scheduler_chainhandler_proxy of peer pad sink:sink
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:418: (sink:sink): entering
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:419: putting buffer 0x809a5d8 in peer "parse:src"'s pen
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:450: switching to 0xbfe40000 to consume buffer 0x809a5d8
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #3
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe5fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe40020
DEBUG(28777: 0)cothread_switch:613: enter cothread #3 1 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)gst_basic_scheduler_gethandler_proxy:515: done switching
DEBUG(28777: 0)gst_basic_scheduler_chain_wrapper:335: calling chain function of sink:sink 0x809a5d8
INFO (28777: 0)gst_data_unref:195: unref data 0x809a5d8, count before unref is 2
DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element sink
DEBUG(28777: 0)gst_element_set_state:2003: [sink] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: sink default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "sink" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "sink" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [sink] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child sink changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)cothread_switch:602: switching from cothread #3 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #3 0 0xbfe5fffc<->0xbfe60000 (4) 0xbfe40020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
DEBUG(28777: 0)gst_basic_scheduler_iterate:1335: there are 3 elements in this chain
DEBUG(28777: 0)gst_basic_scheduler_iterate:1358: set COTHREAD_STOPPING flag on "parse"(@0x8090ce8)
INFO (28777: 0)cothread_switch:602: switching from cothread #0 to cothread #2
DEBUG(28777: 0)cothread_switch:619: exit cothread #0 0 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbfe3fffc
DEBUG(28777: 0)cothread_switch:631: in thread 0xbfe20020
DEBUG(28777: 0)cothread_switch:613: enter cothread #2 1 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)gst_basic_scheduler_chainhandler_proxy:455: done switching
INFO (28777: 0)gst_data_unref:195: unref data 0x809a5d8, count before unref is 1
INFO (28777: 0)_gst_event_free:77: freeing event 0x809a5d8
DEBUG(28777: 0)gst_object_unref:188: unref 'sink' 2->1
DEBUG(28777: 0)gst_element_set_eos:2534: setting EOS on element parse
DEBUG(28777: 0)gst_element_set_state:2003: [parse] setting state from PLAYING to PAUSED
INFO (28777: 0)gst_element_change_state:2166: parse default handler sets state from PLAYING to PAUSED 2052
INFO (28777: 0)gst_basic_scheduler_find_chain:916: searching for element "parse" in chains
INFO (28777: 0)gst_basic_scheduler_chain_disable_element:791: disabling element "parse" in chain 0x8093948
DEBUG(28777: 0)gst_element_change_state:2200: [parse] signaling state change from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:471: child parse changed state in bin main from PLAYING to PAUSED
INFO (28777: 0)gst_bin_child_state_change:486: bin main need state change to PAUSED
DEBUG(28777: 0)gst_bin_change_state_norecurse:586: [main] setting bin's own state
INFO (28777: 0)gst_element_change_state:2166: main default handler sets state from PLAYING to PAUSED 2052
DEBUG(28777: 0)gst_scheduler_state_transition:304: disabling clock 0x8093678 (GstOssClock)
INFO (28777: 0)gst_basic_scheduler_state_transition:1097: parent "main" changed state
INFO (28777: 0)gst_basic_scheduler_state_transition:1099: setting scheduler state to stopped
DEBUG(28777: 0)gst_element_change_state:2200: [main] signaling state change from PLAYING to PAUSED
INFO (28777: 0)cothread_switch:602: switching from cothread #2 to cothread #0
DEBUG(28777: 0)cothread_switch:619: exit cothread #2 0 0xbfe3fffc<->0xbfe40000 (4) 0xbfe20020
DEBUG(28777: 0)cothread_switch:628: set stack to 0xbffff3bb
DEBUG(28777: 0)cothread_switch:631: in thread 0x8058390
DEBUG(28777: 0)cothread_switch:613: enter cothread #0 1 0xbffff3bb<->(nil) (1073744965) 0x8058390
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 1: leaving

DEBUG(28777: 0)gst_bin_iterate:808: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1313: ("main"): entering
DEBUG(28777: 0)gst_basic_scheduler_iterate:1330: starting iteration via cothreads using basic scheduler
INFO (28777: 0)gst_basic_scheduler_iterate:1395: no enabled elements in this chain, trying the next one
DEBUG(28777: 0)gst_basic_scheduler_iterate:1399: leaving (main)
INFO (28777: 0)gst_basic_scheduler_iterate:1401: nothing was scheduled, return STOPPED
DEBUG(28777: 0)gst_bin_iterate:824: ("main") 0: leaving
DEBUG(28777: 0)gst_element_set_state:2003: [main] setting state from PAUSED to PAUSED










More information about the gstreamer-devel mailing list