mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
rtpsession: print value of unknown RTCP Payload Type
This adds printing the actual value of any unknown RTCP PT to the already existing WARNING log message. https://bugzilla.gnome.org/show_bug.cgi?id=783248
This commit is contained in:
parent
246f21ac2f
commit
72d2afda18
1 changed files with 1 additions and 1 deletions
|
@ -2859,7 +2859,7 @@ rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
|
|||
rtp_session_process_feedback (sess, &packet, &pinfo, current_time);
|
||||
break;
|
||||
default:
|
||||
GST_WARNING ("got unknown RTCP packet");
|
||||
GST_WARNING ("got unknown RTCP packet type: %d", type);
|
||||
break;
|
||||
}
|
||||
more = gst_rtcp_packet_move_to_next (&packet);
|
||||
|
|
Loading…
Reference in a new issue