mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
rtpsession: print the correct variable in debug statement
This debug statement is meant to print the time since the last (early) RTCP transmission, not the last regular RTCP transmission (which also happens to be set a few lines above to current_time, so the debug output is just confusing)
This commit is contained in:
parent
1622d4c894
commit
0e65304d5c
1 changed files with 1 additions and 1 deletions
|
@ -4064,7 +4064,7 @@ rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time,
|
|||
|
||||
GST_DEBUG ("Time since last RTCP: %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT
|
||||
" = %" GST_TIME_FORMAT, GST_TIME_ARGS (data.current_time),
|
||||
GST_TIME_ARGS (sess->last_rtcp_send_time),
|
||||
GST_TIME_ARGS (sess->last_rtcp_check_time),
|
||||
GST_TIME_ARGS (data.current_time - sess->last_rtcp_check_time));
|
||||
sess->last_rtcp_check_time = data.current_time;
|
||||
sess->first_rtcp = FALSE;
|
||||
|
|
Loading…
Reference in a new issue