tsdemux: Demote warning to simple debug

That issue is actually handled, so don't pollute the logs with such warning.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2340>
This commit is contained in:
Edward Hervey 2022-05-02 09:15:57 +02:00 committed by Edward Hervey
parent 1fbf1b30b3
commit 89780341e8

View file

@ -378,7 +378,7 @@ mpegts_packetizer_parse_adaptation_field_control (MpegTSPacketizer2 *
* adaptation field length is 183. This just means a zero length
* payload so we clear the payload flag here and continue.
*/
GST_WARNING ("PID 0x%04x afc == 0x%02x and length %d == 183 (ignored)",
GST_DEBUG ("PID 0x%04x afc == 0x%02x and length %d == 183 (ignored)",
packet->pid, packet->scram_afc_cc & 0x30, length);
packet->scram_afc_cc &= ~0x10;
} else if (length > 182) {