diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-07-17 13:52:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-17 13:52:59 +0200 |
| commit | 8eb0ba60c1dd32378413e4eb8d1a7264f8859331 (patch) | |
| tree | 511d01c520d4f900da4dd90a205aa59fa39d7195 /MediaBrowser.Model/Session/PlayMethod.cs | |
| parent | 2bf15d95df33dde6fac0a9314f41aa2c8ba8bcad (diff) | |
| parent | 5cbafa566dab227214f60924332cb0e4bfa75b32 (diff) | |
Merge pull request #17344 from mbastian77/docs/session-model-xml-docs
Diffstat (limited to 'MediaBrowser.Model/Session/PlayMethod.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/PlayMethod.cs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Session/PlayMethod.cs b/MediaBrowser.Model/Session/PlayMethod.cs index 8067627843..2bd11cc91a 100644 --- a/MediaBrowser.Model/Session/PlayMethod.cs +++ b/MediaBrowser.Model/Session/PlayMethod.cs @@ -1,11 +1,23 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Model.Session { + /// <summary> + /// The play method. + /// </summary> public enum PlayMethod { + /// <summary> + /// The media is transcoded before it is sent to the client. + /// </summary> Transcode = 0, + + /// <summary> + /// The media is remuxed into a compatible container but the streams are not re-encoded. + /// </summary> DirectStream = 1, + + /// <summary> + /// The media is sent to the client as-is. + /// </summary> DirectPlay = 2 } } |
