@@ -291,9 +291,6 @@ public void Shutdown()
291291        /// <summary> 
292292        /// Creates the media session to use with the SIP call. 
293293        /// </summary> 
294-         /// <param name="audioSrcOpts">The audio source options to set when the call is first 
295-         /// answered. These options can be adjusted afterwards to do things like put play 
296-         /// on hold music etc.</param> 
297294        /// <returns>A new media session object.</returns> 
298295        private  VoIPMediaSession  CreateMediaSession ( ) 
299296        { 
@@ -304,8 +301,9 @@ private VoIPMediaSession CreateMediaSession()
304301            { 
305302                AudioSink  =  windowsAudioEndPoint , 
306303                AudioSource  =  windowsAudioEndPoint , 
307-                 VideoSink  =  windowsVideoEndPoint , 
308-                 VideoSource  =  windowsVideoEndPoint , 
304+                 // TODO: Not working for calls to sip:[email protected] . AC 29 Sep 2024.  305+                 //VideoSink = windowsVideoEndPoint, 
306+                 //VideoSource = windowsVideoEndPoint, 
309307            } ; 
310308
311309            // Fallback video source if a Windows webcam cannot be accessed. 
@@ -365,7 +363,7 @@ private void CallFinished(SIPDialogue dialogue)
365363        /// <summary> 
366364        /// An incoming call was cancelled by the caller. 
367365        /// </summary> 
368-         private  void  IncomingCallCancelled ( ISIPServerUserAgent  uas ) 
366+         private  void  IncomingCallCancelled ( ISIPServerUserAgent  uas ,   SIPRequest   cancelRequest ) 
369367        { 
370368            //SetText(m_signallingStatus, "incoming call cancelled for: " + uas.CallDestination + "."); 
371369            CallFinished ( null ) ; 
0 commit comments