ext/xine/: add input plugin wrapper. Playback from files, http, mms and cdda works.
authorBenjamin Otte <otte@gnome.org>
Sun, 22 Feb 2004 20:52:15 +0000 (20:52 +0000)
committerBenjamin Otte <otte@gnome.org>
Sun, 22 Feb 2004 20:52:15 +0000 (20:52 +0000)
Original commit message from CVS:
2004-02-22  Benjamin Otte  <otte@gnome.org>

* ext/xine/Makefile.am:
* ext/xine/gstxine.h:
* ext/xine/xine.c: (plugin_init):
* ext/xine/xineinput.c:
add input plugin wrapper. Playback from files, http, mms and cdda
works.
* ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
remove leftover G_GNUC_UNUSED
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
(gst_asf_demux_identify_guid):
improve debugging output

ChangeLog
gst/asfdemux/gstasfdemux.c

index d1d1e2a..1bc03a4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
 2004-02-22  Benjamin Otte  <otte@gnome.org>
 
+       * ext/xine/Makefile.am:
+       * ext/xine/gstxine.h:
+       * ext/xine/xine.c: (plugin_init):
+       * ext/xine/xineinput.c:
+         add input plugin wrapper. Playback from files, http, mms and cdda
+         works.
+       * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
+         remove leftover G_GNUC_UNUSED
+       * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
+       (gst_asf_demux_identify_guid):
+         improve debugging output
+
+2004-02-22  Benjamin Otte  <otte@gnome.org>
+
        reported by: Padraig O'Briain <padraig.obriain@sun.com>
 
        * autogen.sh:
index 94ccbe1..3c9a854 100644 (file)
@@ -853,7 +853,7 @@ gst_asf_demux_process_stream (GstASFDemux *asf_demux, guint64 *obj_size)
     }
     break;
   default:
-    GST_ELEMENT_ERROR (asf_demux, STREAM, WRONG_TYPE, (NULL), (NULL));
+    GST_ELEMENT_ERROR (asf_demux, STREAM, WRONG_TYPE, (NULL), ("unknown asf stream (id %08x)", (guint) stream_id));
     return FALSE;
   }
 
@@ -1291,6 +1291,7 @@ gst_asf_demux_identify_guid (GstASFDemux *asf_demux,
 {
   guint32 i;
 
+  GST_LOG_OBJECT (asf_demux, "identifying 0x%08x/0x%08x/0x%08x/0x%08x", guid->v1, guid->v2, guid->v3, guid->v4); 
   i = 0;
   while (guids[i].obj_id != ASF_OBJ_UNDEFINED) {
     if (guids[i].guid.v1 == guid->v1 &&