You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
linphone-tutorials/uwp/cs/03_OutgoingCall
Thibault Lemaire aca479888a
Give the UWP Tutorial a little refresher
3 years ago
..
Assets Tutorial for LinphoneSDK x UWP - C# 3 years ago
Properties Tutorial for LinphoneSDK x UWP - C# 3 years ago
Service Give the UWP Tutorial a little refresher 3 years ago
Views Give the UWP Tutorial a little refresher 3 years ago
03_OutgoingCall.csproj Give the UWP Tutorial a little refresher 3 years ago
App.xaml Tutorial for LinphoneSDK x UWP - C# 3 years ago
App.xaml.cs Tutorial for LinphoneSDK x UWP - C# 3 years ago
Package.appxmanifest Tutorial for LinphoneSDK x UWP - C# 3 years ago
Readme.md Give the UWP Tutorial a little refresher 3 years ago

Readme.md

Linphone X UWP tutorial 03_OutgoingCall

This time we are going to make our first video calls.

Note the new ANGLE.WindowsStore package that was added. This is required for video rendering. (If you restored NuGet packages for the solution as indicated in the parent Readme, it should already be installed, and no additional action is needed on your side.)

New/updated files :

03_OutgoingCall
│   Package.appxmanifest : For this step we added a new capability : Webcam.
│   
└───Service :
│   │   CoreService.cs : A singleton service which contains the Linphone.Core. 
│   │               Now updated with the ability to make video calls. 
│   │
│   │   VideoService.cs : A singleton service which contains the code to render the video call
│   │               on a SwapChainPanel, using OpenGL.
│
│
└───Views :
│   │   CallsPage.xaml(.cs) : This is the page where you can make calls.
│   │               Also contains new Linphone-related code.