jellyfin/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs

29 lines
510 B
C#
Raw Normal View History

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