This commit is contained in:
Anthony Minessale 2012-12-22 08:29:19 -06:00
parent d012c5f392
commit 1f61ad76a4
2 changed files with 1 additions and 4 deletions

View File

@ -679,7 +679,7 @@ struct private_object {
switch_core_session_t *session;
switch_channel_t *channel;
switch_media_handle_t *media_handle;
switch_core_media_params_t *mparams;
switch_core_media_params_t mparams;
switch_frame_t read_frame;
char *codec_order[SWITCH_MAX_CODECS];

View File

@ -83,9 +83,6 @@ void sofia_glue_attach_private(switch_core_session_t *session, sofia_profile_t *
switch_mutex_lock(tech_pvt->flag_mutex);
switch_mutex_lock(profile->flag_mutex);
tech_pvt->mparams = switch_core_session_alloc(session, sizeof(*tech_pvt->mparams));
/* copy flags from profile to the sofia private */
for (x = 0; x < TFLAG_MAX; x++) {
tech_pvt->flags[x] = profile->flags[x];