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
@ -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>
|
2006-02-17 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
|
* gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
|
||||||
|
@ -1075,9 +1075,9 @@ gst_asf_demux_process_stream (GstASFDemux * demux, guint8 ** p_data,
|
|||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
GST_ELEMENT_ERROR (demux, STREAM, WRONG_TYPE, (NULL),
|
GST_WARNING_OBJECT (demux, "Unknown asf stream (id %08x)",
|
||||||
("Unknown asf stream (id %08x)", (guint) stream_id));
|
(guint) stream_id);
|
||||||
return GST_FLOW_ERROR;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return GST_FLOW_OK;
|
return GST_FLOW_OK;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user