jellyfin/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs

29 lines
671 B
C#
Raw Normal View History

2022-01-26 11:09:05 -05:00
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// An enum representing the options to disable embedded subs.
/// </summary>
public enum EmbeddedSubtitleOptions
{
/// <summary>
/// Allow all embedded subs.
/// </summary>
AllowAll = 0,
2022-01-26 11:09:05 -05:00
/// <summary>
/// Allow only embedded subs that are text based.
/// </summary>
AllowText = 1,
2022-01-26 11:09:05 -05:00
/// <summary>
/// Allow only embedded subs that are image based.
/// </summary>
AllowImage = 2,
2022-01-26 11:09:05 -05:00
/// <summary>
/// Disable all embedded subs.
/// </summary>
AllowNone = 3,
2022-01-26 11:09:05 -05:00
}
}