jellyfin/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs

29 lines
510 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
#pragma warning disable SA1600
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Dlna
{
public enum SubtitleDeliveryMethod
{
/// <summary>
/// The encode
/// </summary>
Encode = 0,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
/// The embed
/// </summary>
Embed = 1,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
/// The external
/// </summary>
External = 2,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
/// The HLS
/// </summary>
Hls = 3
}
}