$OpenBSD: patch-protocols_jabber_googletalk_libjingle_talk_session_phone_linphonemediaengine_cc,v 1.1.1.1 2013/12/08 18:39:44 zhuk Exp $
Make it compile with recent MediaStreamer.
--- protocols/jabber/googletalk/libjingle/talk/session/phone/linphonemediaengine.cc.orig	Thu Dec  5 01:50:11 2013
+++ protocols/jabber/googletalk/libjingle/talk/session/phone/linphonemediaengine.cc	Thu Dec  5 01:50:16 2013
@@ -200,7 +200,7 @@ bool LinphoneVoiceChannel::SetSendCodecs(const std::ve
       LOG(LS_INFO) << "Using " << i->name << "/" << i->clockrate;
       pt_ = i->id;
       audio_stream_ = audio_stream_start(&av_profile, -1, "localhost", port1, i->id, 250, 0); /* -1 means that function will choose some free port */
-      port2 = rtp_session_get_local_port(audio_stream_->session);
+      port2 = rtp_session_get_local_port(audio_stream_->ms.session);
       first = false;
     }
   }
@@ -211,7 +211,7 @@ bool LinphoneVoiceChannel::SetSendCodecs(const std::ve
     // working with a buggy client; let's try PCMU.
     LOG(LS_WARNING) << "Received empty list of codces; using PCMU/8000";
     audio_stream_ = audio_stream_start(&av_profile, -1, "localhost", port1, 0, 250, 0); /* -1 means that function will choose some free port */
-    port2 = rtp_session_get_local_port(audio_stream_->session);
+    port2 = rtp_session_get_local_port(audio_stream_->ms.session);
   }
 
   return true;
