Skip to content

Commit 49805aa

Browse files
authored
Merge pull request #179810 from LoadLibrary/patch-3
Adds required information for rendering video
2 parents 68eed55 + e6afb0a commit 49805aa

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-windows.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@ The following steps exemplify how to add these buttons to the app.
3131
</StackPanel>
3232
```
3333

34+
### Register Video Handler
35+
36+
An UI component, like XAML's MediaElement, will require the app registering a configuration for rendering local and remote video feeds.
37+
Please add the following content between the `Package` tags of the `Package.appxmanifest`:
38+
39+
```xml
40+
<Extensions>
41+
<Extension Category="windows.activatableClass.inProcessServer">
42+
<InProcessServer>
43+
<Path>RtmMvrUap.dll</Path>
44+
<ActivatableClass ActivatableClassId="VideoN.VideoSchemeHandler" ThreadingModel="both" />
45+
</InProcessServer>
46+
</Extension>
47+
</Extensions>
48+
```
49+
3450
### Setting up the app with Calling SDK APIs
3551

3652
The Calling SDK APIs are in two different namespaces.
@@ -156,4 +172,4 @@ call_.HangUpAsync(hangupOptions).Completed += (IAsyncAction asyncInfo, AsyncStat
156172

157173
Make sure Visual Studio will build the app for `x64`, `x86` or `ARM64`, then hit `F5` to start running the app. After that, click on the `Call` button to place a call to the callee defined.
158174

159-
Keep in mind that the first time the app runs, the system will prompt user for granting access to the microphone.
175+
Keep in mind that the first time the app runs, the system will prompt user for granting access to the microphone.

0 commit comments

Comments
 (0)