]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
MODENDP-205 revert
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 21 Mar 2009 02:31:15 +0000 (02:31 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 21 Mar 2009 02:31:15 +0000 (02:31 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12700 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia_glue.c

index 6c08279c8a3bbbd5810ab36236cf58f5fad1bca9..3ddb9488b74c1eb4964feb0e590e09b6c2c757ce 100644 (file)
@@ -396,8 +396,7 @@ void sofia_glue_set_local_sdp(private_object_t *tech_pvt, const char *ip, uint32
 
 void sofia_glue_tech_prepare_codecs(private_object_t *tech_pvt)
 {
-       const char *abs, *codec_string, *uuid;
-       switch_core_session_t *b_session = NULL;
+       const char *abs, *codec_string = NULL;
        const char *ocodec = NULL;
 
        if (switch_channel_test_flag(tech_pvt->channel, CF_PROXY_MODE) || switch_channel_test_flag(tech_pvt->channel, CF_PROXY_MEDIA)) {
@@ -410,17 +409,7 @@ void sofia_glue_tech_prepare_codecs(private_object_t *tech_pvt)
 
        switch_assert(tech_pvt->session != NULL);
 
-       if ((abs = switch_channel_get_variable(tech_pvt->channel, "inherit_codec")) && (switch_true(abs)) && (uuid = switch_channel_get_variable(tech_pvt->channel, SWITCH_SIGNAL_BOND_VARIABLE)) != NULL && (b_session = switch_core_session_locate(uuid)) != NULL) {
-               switch_codec_implementation_t impl = {0};
-               switch_core_session_get_read_impl(b_session, &impl);
-               if (impl.iananame == NULL || !(abs = switch_core_session_sprintf(tech_pvt->session, "%s@%uh", impl.iananame, impl.actual_samples_per_second))) {
-                       abs = NULL;
-               }
-       } else {
-               abs = NULL;
-       }
-
-       if (abs || (abs = switch_channel_get_variable(tech_pvt->channel, "absolute_codec_string"))) {
+       if ((abs = switch_channel_get_variable(tech_pvt->channel, "absolute_codec_string"))) {
                codec_string = abs;
        } else {
                if (!(codec_string = switch_channel_get_variable(tech_pvt->channel, "codec_string"))) {