mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
ext/xine/: add input plugin wrapper. Playback from files, http, mms and cdda works.
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
This commit is contained in:
parent
ad34b97595
commit
d4e6be4034
2 changed files with 16 additions and 1 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
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>
|
||||
|
|
|
@ -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 &&
|
||||
|
|
Loading…
Reference in a new issue