28 lines
573 B
C#
28 lines
573 B
C#
// <copyright file="TranscodingJobType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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
|
|
}
|
|
}
|