switch rtp flags format usage on switch_rtp_new

This commit is contained in:
Anthony Minessale 2013-01-18 10:24:18 -06:00
parent f1e304cc29
commit 3fe0b471c1
4 changed files with 8 additions and 7 deletions

View File

@ -65,7 +65,7 @@ SWITCH_STANDARD_APP(bcast_function)
switch_size_t bytes;
ls_control_packet_t control_packet;
switch_codec_t codec = { 0 };
uint32_t flags = 0;
switch_rtp_flag_t flags[SWITCH_RTP_FLAG_INVALID] = {0};
const char *err;
switch_rtp_t *rtp_session = NULL;
switch_port_t rtp_port;

View File

@ -109,7 +109,7 @@ static int oreka_tear_down_rtp(oreka_session_t *oreka, oreka_stream_type_t type)
static int oreka_setup_rtp(oreka_session_t *oreka, oreka_stream_type_t type)
{
switch_port_t rtp_port = 0;
switch_rtp_flag_t flags = 0;
switch_rtp_flag_t flags[SWITCH_RTP_FLAG_INVALID] = {0};
switch_rtp_t *rtp_stream = NULL;
switch_codec_implementation_t *codec_impl = NULL;
switch_status_t status = SWITCH_STATUS_SUCCESS;

View File

@ -251,7 +251,7 @@ static int sangoma_create_rtp(void *usr_priv, sngtc_codec_request_leg_t *codec_r
switch_memory_pool_t *sesspool = NULL;
switch_rtp_t *rtp_session = NULL;
char codec_ip[255];
switch_rtp_flag_t flags = 0;
switch_rtp_flag_t flags[SWITCH_RTP_FLAG_INVALID] = {0};
int iana = 0;
const char *err = NULL;
struct in_addr local_ip_addr = { 0 };

View File

@ -1947,7 +1947,7 @@ PBoolean FSH323_ExternalRTPChannel::Start()
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,"======>FSH323_ExternalRTPChannel::Start() [%p]\n",this);
const char *err = NULL;
switch_rtp_flag_t flags;
switch_rtp_flag_t flags[SWITCH_RTP_FLAG_INVALID] = {0};
char * timer_name = NULL;
const char *var;
@ -2145,15 +2145,16 @@ PBoolean FSH323_ExternalRTPChannel::Start()
}
if ((!m_conn->m_startRTP)) {
flags = (switch_rtp_flag_t) (SWITCH_RTP_FLAG_DATAWAIT|SWITCH_RTP_FLAG_RAW_WRITE);
flags[SWITCH_RTP_FLAG_DATAWAIT]++;
flags[SWITCH_RTP_FLAG_RAW_WRITE]++;
if (mod_h323_globals.use_rtp_timer) {
flags |= SWITCH_RTP_FLAG_USE_TIMER;
flags[SWITCH_RTP_FLAG_USE_TIMER]++;
timer_name = mod_h323_globals.rtp_timer_name;
} else {
if ((var = switch_channel_get_variable(m_fsChannel, "timer_name"))) {
timer_name = (char *) var;
flags |= SWITCH_RTP_FLAG_USE_TIMER;
flags[SWITCH_RTP_FLAG_USE_TIMER]++;
}
}