mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
mpegtsdemux: only warn when we see a PID with unknown type
This is quite frequent, and we will just ignore that stream, so an error is not warranted.
This commit is contained in:
parent
570ba0c84a
commit
b23e6bfa70
1 changed files with 1 additions and 1 deletions
|
@ -1128,7 +1128,7 @@ gst_mpegts_demux_add_all_streams (GstMpegTSDemux * demux, GstClockTime pts)
|
|||
}
|
||||
if (!gst_mpegts_demux_fill_stream (stream, stream->filter.id,
|
||||
stream->stream_type)) {
|
||||
GST_ERROR ("Unknown type for PID 0x%04x", stream->PID);
|
||||
GST_WARNING_OBJECT (demux, "Unknown type for PID 0x%04x", stream->PID);
|
||||
/* ignore */
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue