2020-12-11 00:20:19 +08:00
|
|
|
Linphone X UWP tutorial 03_OutgoingCall
|
|
|
|
========================================
|
|
|
|
|
|
|
|
This time we are going to make our first video calls.
|
|
|
|
|
2021-12-23 23:49:01 +08:00
|
|
|
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.)
|
|
|
|
|
2020-12-11 00:20:19 +08:00
|
|
|
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
|
2021-12-23 23:49:01 +08:00
|
|
|
│ │ on a SwapChainPanel, using OpenGL.
|
2020-12-11 00:20:19 +08:00
|
|
|
│
|
|
|
|
│
|
|
|
|
└───Views :
|
|
|
|
│ │ CallsPage.xaml(.cs) : This is the page where you can make calls.
|
2021-12-23 23:49:01 +08:00
|
|
|
│ │ Also contains new Linphone-related code.
|
2020-12-11 00:20:19 +08:00
|
|
|
```
|