-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from haefele/dah/stuff
Add new redirection-properties RedirectCameras and RedirectLocation, and a event to allow RdpClient customization before connection
- Loading branch information
Showing
11 changed files
with
1,267 additions
and
8 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/RoyalApps.Community.Rdp.WinForms/Configuration/AudioQualityMode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace RoyalApps.Community.Rdp.WinForms.Configuration; | ||
|
||
/// <summary> | ||
/// Specifies the audio quality mode. | ||
/// </summary> | ||
public enum AudioQualityMode | ||
{ | ||
/// <summary> | ||
/// Dynamic audio quality. This is the default audio quality setting. The server dynamically adjusts audio output quality in response to network conditions and the client and server capabilities. | ||
/// </summary> | ||
Dynamic = 0, | ||
/// <summary> | ||
/// Medium audio quality. The server uses a fixed but compressed format for audio output. | ||
/// </summary> | ||
Medium = 1, | ||
/// <summary> | ||
/// High audio quality. The server provides audio output in uncompressed PCM format with lower processing overhead for latency. | ||
/// </summary> | ||
High = 2, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/RoyalApps.Community.Rdp.WinForms/Configuration/VideoPlaybackMode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace RoyalApps.Community.Rdp.WinForms.Configuration; | ||
|
||
/// <summary> | ||
/// Specifies the video playback mode, which specifies if video decoding and rendering is redirected to the client. | ||
/// </summary> | ||
public enum VideoPlaybackMode | ||
{ | ||
/// <summary> | ||
/// Decode and render on the server. | ||
/// </summary> | ||
DecodeAndRenderOnServer = 0, | ||
/// <summary> | ||
/// Decode and render on the client. | ||
/// </summary> | ||
DecodeAndRenderOnClient = 1, | ||
} |
Oops, something went wrong.