mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
gst/asfdemux/gstasfdemux.c: Do not error out on non-recognized streams. Ignore them and allow playback of the other s...
Original commit message from CVS: * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream): Do not error out on non-recognized streams. Ignore them and allow playback of the other streams.
This commit is contained in:
parent
1f14799cea
commit
d2445ecbf4
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-02-17 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream):
|
||||
Do not error out on non-recognized streams. Ignore them and allow
|
||||
playback of the other streams.
|
||||
|
||||
2006-02-17 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
|
||||
|
|
|
@ -1075,9 +1075,9 @@ gst_asf_demux_process_stream (GstASFDemux * demux, guint8 ** p_data,
|
|||
}
|
||||
|
||||
default:
|
||||
GST_ELEMENT_ERROR (demux, STREAM, WRONG_TYPE, (NULL),
|
||||
("Unknown asf stream (id %08x)", (guint) stream_id));
|
||||
return GST_FLOW_ERROR;
|
||||
GST_WARNING_OBJECT (demux, "Unknown asf stream (id %08x)",
|
||||
(guint) stream_id);
|
||||
break;
|
||||
}
|
||||
|
||||
return GST_FLOW_OK;
|
||||
|
|
Loading…
Reference in a new issue