From 64592da3e9ae52b944c35a9d9440144373d69bf1 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 11 Oct 2013 11:23:16 +0200 Subject: [PATCH] tsdemux: Demote GST_ERROR to GST_WARNING discontinuities are not errors per-se and we handle them correctly. --- gst/mpegtsdemux/tsdemux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/mpegtsdemux/tsdemux.c b/gst/mpegtsdemux/tsdemux.c index b4d97a61b8..f17bafa284 100644 --- a/gst/mpegtsdemux/tsdemux.c +++ b/gst/mpegtsdemux/tsdemux.c @@ -1513,7 +1513,7 @@ gst_ts_demux_queue_data (GstTSDemux * demux, TSDemuxStream * stream, (stream->continuity_counter == MAX_CONTINUITY && cc == 0))) { GST_LOG ("CONTINUITY: Got expected %d", cc); } else { - GST_ERROR ("CONTINUITY: Mismatch packet %d, stream %d", + GST_WARNING ("CONTINUITY: Mismatch packet %d, stream %d", cc, stream->continuity_counter); stream->state = PENDING_PACKET_DISCONT; }