mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
tsdemux: Demote a warning to debug level
We will get it for virtually every first packets.
This commit is contained in:
parent
f7893fb63e
commit
7837cab44e
1 changed files with 1 additions and 1 deletions
|
@ -1318,7 +1318,7 @@ gst_ts_demux_queue_data (GstTSDemux * demux, TSDemuxStream * stream,
|
||||||
if (stream->state == PENDING_PACKET_EMPTY) {
|
if (stream->state == PENDING_PACKET_EMPTY) {
|
||||||
if (G_UNLIKELY (!packet->payload_unit_start_indicator)) {
|
if (G_UNLIKELY (!packet->payload_unit_start_indicator)) {
|
||||||
stream->state = PENDING_PACKET_DISCONT;
|
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 {
|
} else {
|
||||||
GST_LOG ("EMPTY=>HEADER");
|
GST_LOG ("EMPTY=>HEADER");
|
||||||
stream->state = PENDING_PACKET_HEADER;
|
stream->state = PENDING_PACKET_HEADER;
|
||||||
|
|
Loading…
Reference in a new issue