ext/mikmod/gstmikmod.*: fix caps negotiation in mikmod
authorBenjamin Otte <otte@gnome.org>
Tue, 10 Feb 2004 08:37:50 +0000 (08:37 +0000)
committerBenjamin Otte <otte@gnome.org>
Tue, 10 Feb 2004 08:37:50 +0000 (08:37 +0000)
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

ChangeLog
ext/ogg/gstoggdemux.c

index 86c174652a6032233754e6a020cb9b02c5db6f8d..cccb1a658ce1b86f502f0d50df2523ccb0e517a4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,16 +1,19 @@
-2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
+2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
 
-       * gst-libs/gst/colorbalance/Makefile.am:
-       * gst-libs/gst/navigation/Makefile.am:
-       * gst-libs/gst/xoverlay/Makefile.am:
-         remove unused GST_OPT_CFLAGS from Makefiles
-         include X_CFLAGS and X_LIBS in xoverlay. (#131948)
+       * 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
 
 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
 
        * gst-libs/gst/colorbalance/Makefile.am:
        * gst-libs/gst/navigation/Makefile.am:
        * gst-libs/gst/xoverlay/Makefile.am:
+         remove unused GST_OPT_CFLAGS from Makefiles
+         include X_CFLAGS and X_LIBS in xoverlay. (#131948)
 
 2004-02-07  David Schleef  <ds@schleef.org>
 
index bd5a3bc739bd0362bdb34026f3c18b90409893ab..4bf88157c3e3d0c3a53fcb80c831aee9e5af7079 100644 (file)
@@ -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
 }