]> git.pld-linux.org Git - packages/kde4-kopete.git/blob - linphone-fix.patch
bcb4a012e8cb1728af5ba93ca37759c743cf9ca9
[packages/kde4-kopete.git] / linphone-fix.patch
1 --- kde4-kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/session/phone/linphonemediaengine.cc~     2013-06-20 09:15:17.773243467 +0200
2 +++ kde4-kdenetwork/kopete/protocols/jabber/googletalk/libjingle/talk/session/phone/linphonemediaengine.cc      2013-06-20 09:27:03.157408216 +0200
3 @@ -200,7 +200,7 @@
4        LOG(LS_INFO) << "Using " << i->name << "/" << i->clockrate;
5        pt_ = i->id;
6        audio_stream_ = audio_stream_start(&av_profile, -1, "localhost", port1, i->id, 250, 0); /* -1 means that function will choose some free port */
7 -      port2 = rtp_session_get_local_port(audio_stream_->session);
8 +      port2 = rtp_session_get_local_port(audio_stream_->ms.session);
9        first = false;
10      }
11    }
12 @@ -211,7 +211,7 @@
13      // working with a buggy client; let's try PCMU.
14      LOG(LS_WARNING) << "Received empty list of codces; using PCMU/8000";
15      audio_stream_ = audio_stream_start(&av_profile, -1, "localhost", port1, 0, 250, 0); /* -1 means that function will choose some free port */
16 -    port2 = rtp_session_get_local_port(audio_stream_->session);
17 +    port2 = rtp_session_get_local_port(audio_stream_->ms.session);
18    }
19  
20    return true;
This page took 0.027873 seconds and 2 git commands to generate.