print fixes

Original commit message from CVS:
print fixes
This commit is contained in:
Thomas Vander Stichele 2002-07-15 12:35:49 +00:00
parent 6a76cca81a
commit b3493d394d

View file

@ -271,13 +271,11 @@ gst_cutter_chain (GstPad *pad, GstBuffer *buf)
GST_DEBUG (GST_CAT_PLUGIN_INFO, "DEBUG: cutter: flushing buffer"); GST_DEBUG (GST_CAT_PLUGIN_INFO, "DEBUG: cutter: flushing buffer");
while (filter->pre_buffer) while (filter->pre_buffer)
{ {
g_print (".");
prebuf = (g_list_first (filter->pre_buffer))->data; prebuf = (g_list_first (filter->pre_buffer))->data;
filter->pre_buffer = g_list_remove (filter->pre_buffer, prebuf); filter->pre_buffer = g_list_remove (filter->pre_buffer, prebuf);
gst_pad_push (filter->srcpad, prebuf); gst_pad_push (filter->srcpad, prebuf);
filter->pre_run_length = 0.0; filter->pre_run_length = 0.0;
} }
g_print ("\n");
} }
} }
/* now check if we have to add the new buffer to the cache or to the pad */ /* now check if we have to add the new buffer to the cache or to the pad */