mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-05 18:13:27 +00:00
Correct display of last write timestamp
On start DTMF packets we were showing the last write timestamp as a signed value when it's an unsigned value, which could result in it appearing incongruous with later packets where the value was displayed correctly.
This commit is contained in:
parent
6e8729a159
commit
59fd9b90d0
@ -4292,7 +4292,7 @@ static void do_2833(switch_rtp_t *rtp_session)
|
|||||||
rtp_session->stats.outbound.raw_bytes += wrote;
|
rtp_session->stats.outbound.raw_bytes += wrote;
|
||||||
rtp_session->stats.outbound.dtmf_packet_count++;
|
rtp_session->stats.outbound.dtmf_packet_count++;
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG, "Send start packet for [%c] ts=%u dur=%d/%d/%d seq=%d lw=%d\n",
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG, "Send start packet for [%c] ts=%u dur=%d/%d/%d seq=%d lw=%u\n",
|
||||||
rtp_session->dtmf_data.out_digit,
|
rtp_session->dtmf_data.out_digit,
|
||||||
rtp_session->dtmf_data.timestamp_dtmf,
|
rtp_session->dtmf_data.timestamp_dtmf,
|
||||||
rtp_session->dtmf_data.out_digit_sofar,
|
rtp_session->dtmf_data.out_digit_sofar,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user