diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-05-18 21:21:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 21:21:26 +0200 |
| commit | 8d2e5ef8c632a09109e946f87aa37fb34c0d6605 (patch) | |
| tree | 9546fd5184f4c44354f4ba9f75d68fb0cc9157e4 /MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs | |
| parent | 19e9bef256129f10e701d98567826f46d30a12fb (diff) | |
| parent | b6dda30a33e7ea3465629e041be74b3e9022d810 (diff) | |
Merge pull request #6042 from crobibero/mbc-warn-2
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs b/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs new file mode 100644 index 000000000..66b628371 --- /dev/null +++ b/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs @@ -0,0 +1,23 @@ +namespace MediaBrowser.Controller.MediaEncoding +{ + /// <summary> + /// Enum TranscodingJobType. + /// </summary> + public enum TranscodingJobType + { + /// <summary> + /// The progressive. + /// </summary> + Progressive, + + /// <summary> + /// The HLS. + /// </summary> + Hls, + + /// <summary> + /// The dash. + /// </summary> + Dash + } +}
\ No newline at end of file |
