mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 22:28:22 +00:00
removed some annoying debugging
Original commit message from CVS: removed some annoying debugging
This commit is contained in:
parent
8f3cfa70e6
commit
48c1d9cc8e
1 changed files with 6 additions and 4 deletions
|
@ -182,15 +182,17 @@ gst_identity_loop (GstElement *element)
|
|||
identity = GST_IDENTITY (element);
|
||||
|
||||
do {
|
||||
g_print("\n");
|
||||
// g_print("\n");
|
||||
|
||||
for (i=0;i<identity->count;i++) {
|
||||
g_print("bstest: getting a buffer of %d bytes\n",identity->byte_size);
|
||||
// g_print("bstest: getting a buffer of %d bytes\n",identity->byte_size);
|
||||
buf = gst_bytestream2_read(identity->bs,identity->byte_size);
|
||||
if (!buf) g_print("BUFFER IS BOGUS\n");
|
||||
g_print("pushing the buffer, %d bytes at %d\n",GST_BUFFER_SIZE(buf),GST_BUFFER_OFFSET(buf));
|
||||
// g_print("pushing the buffer, %d bytes at %d\n",GST_BUFFER_SIZE(buf),GST_BUFFER_OFFSET(buf));
|
||||
gst_pad_push(identity->srcpad,buf);
|
||||
g_print("\n");
|
||||
// g_print("\n");
|
||||
gst_bytestream2_print_status(identity->bs);
|
||||
// g_print("\n\n");
|
||||
}
|
||||
|
||||
exit(1);
|
||||
|
|
Loading…
Reference in a new issue