blob: 948027603f4526147567d2439e676aba06822fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
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,
/// <summary>
/// Allow only embedded subs that are text based.
/// </summary>
AllowText,
/// <summary>
/// Allow only embedded subs that are image based.
/// </summary>
AllowImage,
/// <summary>
/// Disable all embedded subs.
/// </summary>
AllowNone,
}
}
|