提交 c794e8a1 authored 作者: Anthony Minessale's avatar Anthony Minessale

bracket in the wrong place

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15619 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 3e872303
...@@ -2922,11 +2922,12 @@ SWITCH_DECLARE(int) switch_rtp_write_frame(switch_rtp_t *rtp_session, switch_fra ...@@ -2922,11 +2922,12 @@ SWITCH_DECLARE(int) switch_rtp_write_frame(switch_rtp_t *rtp_session, switch_fra
if (switch_test_flag(rtp_session, SWITCH_RTP_FLAG_VIDEO)) { if (switch_test_flag(rtp_session, SWITCH_RTP_FLAG_VIDEO)) {
send_msg->header.pt = rtp_session->payload; send_msg->header.pt = rtp_session->payload;
}
if (switch_socket_sendto(rtp_session->sock_output, rtp_session->remote_addr, 0, frame->packet, &bytes) != SWITCH_STATUS_SUCCESS) { if (switch_socket_sendto(rtp_session->sock_output, rtp_session->remote_addr, 0, frame->packet, &bytes) != SWITCH_STATUS_SUCCESS) {
return -1; return -1;
}
} }
rtp_session->stats.outbound.raw_bytes += bytes; rtp_session->stats.outbound.raw_bytes += bytes;
rtp_session->stats.outbound.media_bytes += bytes; rtp_session->stats.outbound.media_bytes += bytes;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论