97a02f5803
I think some people need to change their IDE configuration ;)
24 lines
425 B
C#
24 lines
425 B
C#
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
|
|
}
|
|
}
|