aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs')
-rw-r--r--MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
new file mode 100644
index 000000000..42f07dbff
--- /dev/null
+++ b/MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs
@@ -0,0 +1,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 = 0,
+
+ /// <summary>
+ /// Allow only embedded subs that are text based.
+ /// </summary>
+ AllowText = 1,
+
+ /// <summary>
+ /// Allow only embedded subs that are image based.
+ /// </summary>
+ AllowImage = 2,
+
+ /// <summary>
+ /// Disable all embedded subs.
+ /// </summary>
+ AllowNone = 3,
+ }
+
+}