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:
Edward Hervey 2006-02-17 10:24:56 +00:00
parent 1f14799cea
commit d2445ecbf4
2 changed files with 9 additions and 3 deletions

View file

@ -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):

View file

@ -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;