diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-05-20 22:46:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-20 22:46:40 +0200 |
| commit | a7b7ff000bdff1f089dc9d68347058fe8314f509 (patch) | |
| tree | c1d9f36e3fc4bb6679f9793374370e3de553fc25 /MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs | |
| parent | ee7a95e088520f835a4d179c7c5faec5eaa8f9ff (diff) | |
| parent | e8790bfa963284863dc1126a83df72309ec30561 (diff) | |
Merge branch 'master' into tmdb-person-language
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 |
