summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@collabora.com>2013-05-23 14:56:40 +0200
committerEdward Hervey <edward@collabora.com>2013-05-23 14:59:34 +0200
commit7837cab44e06017bb76924e253114d6c923fb983 (patch)
treebfbd9e0669c08a39aeb09930a66a65a96bcc2d87
parentf7893fb63e7405d4eb395edfcb62f206af2b5e05 (diff)
downloadgstreamer-plugins-bad-7837cab44e06017bb76924e253114d6c923fb983.tar.gz
tsdemux: Demote a warning to debug level
We will get it for virtually every first packets.
-rw-r--r--gst/mpegtsdemux/tsdemux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegtsdemux/tsdemux.c b/gst/mpegtsdemux/tsdemux.c
index 82fd9f579..20b08e304 100644
--- a/gst/mpegtsdemux/tsdemux.c
+++ b/gst/mpegtsdemux/tsdemux.c
@@ -1318,7 +1318,7 @@ gst_ts_demux_queue_data (GstTSDemux * demux, TSDemuxStream * stream,
if (stream->state == PENDING_PACKET_EMPTY) {
if (G_UNLIKELY (!packet->payload_unit_start_indicator)) {
stream->state = PENDING_PACKET_DISCONT;
- GST_WARNING ("Didn't get the first packet of this PES");
+ GST_DEBUG ("Didn't get the first packet of this PES");
} else {
GST_LOG ("EMPTY=>HEADER");
stream->state = PENDING_PACKET_HEADER;