summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2004-02-10 08:37:50 +0000
committerBenjamin Otte <otte@gnome.org>2004-02-10 08:37:50 +0000
commita43a79b7b2bf7f5448da7aac3aa04523a2857212 (patch)
tree105830f8196b522c39d0ff6cd60a4b233bb07b39 /ext
parent07674249ebbe189ecdb009d0fb4370bba53b9193 (diff)
ext/mikmod/gstmikmod.*: fix caps negotiation in mikmod
Original commit message from CVS: 2004-02-10 Benjamin Otte <in7y118@public.uni-hamburg.de> * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop): * ext/mikmod/gstmikmod.h: fix caps negotiation in mikmod * ext/ogg/gstoggdemux.c: (gst_ogg_print): output debug information
Diffstat (limited to 'ext')
-rw-r--r--ext/ogg/gstoggdemux.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c
index bd5a3bc73..4bf88157c 100644
--- a/ext/ogg/gstoggdemux.c
+++ b/ext/ogg/gstoggdemux.c
@@ -916,19 +916,17 @@ GST_PLUGIN_DEFINE (
static void
gst_ogg_print (GstOggDemux *ogg)
{
-#if 0
guint i;
GSList *walk;
for (i = 0; i < ogg->chains->len; i++) {
GstOggChain *chain = &g_array_index (ogg->chains, GstOggChain, i);
- g_print ("chain %d (%u streams):\n", i, g_slist_length (chain->pads));
+ GST_INFO_OBJECT (ogg, "chain %d (%u streams):", i, g_slist_length (chain->pads));
for (walk = chain->pads; walk; walk = g_slist_next (walk)) {
GstOggPad *pad = (GstOggPad *) walk->data;
- g_print (" stream %d:\n", pad->serial);
- g_print (" length %"G_GUINT64_FORMAT"\n", pad->length);
- g_print (" pages %ld\n", pad->pages);
+ GST_INFO_OBJECT (ogg, " stream %d:", pad->serial);
+ GST_INFO_OBJECT (ogg, " length %"G_GUINT64_FORMAT, pad->length);
+ GST_INFO_OBJECT (ogg, " pages %ld", pad->pages);
}
}
-#endif
}