aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/TranscodeReason.cs
diff options
context:
space:
mode:
authorgnattu <gnattu@users.noreply.github.com>2024-09-12 23:53:21 +0800
committerGitHub <noreply@github.com>2024-09-12 09:53:21 -0600
commit62712aa12cdc88c524923cb318783b23a8a7a2c5 (patch)
tree9c748127903fb0978f16ac234334305facba2160 /MediaBrowser.Model/Session/TranscodeReason.cs
parent0ff7f28753ed4848b0d5cdbe615787bcf7f3426b (diff)
Add option to always burn in subtitles if transcoding is triggered (#12430)
Diffstat (limited to 'MediaBrowser.Model/Session/TranscodeReason.cs')
-rw-r--r--MediaBrowser.Model/Session/TranscodeReason.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/TranscodeReason.cs b/MediaBrowser.Model/Session/TranscodeReason.cs
index bbdf4536b..39c5ac8fa 100644
--- a/MediaBrowser.Model/Session/TranscodeReason.cs
+++ b/MediaBrowser.Model/Session/TranscodeReason.cs
@@ -18,6 +18,7 @@ namespace MediaBrowser.Model.Session
// Video Constraints
VideoProfileNotSupported = 1 << 6,
VideoRangeTypeNotSupported = 1 << 24,
+ VideoCodecTagNotSupported = 1 << 25,
VideoLevelNotSupported = 1 << 7,
VideoResolutionNotSupported = 1 << 8,
VideoBitDepthNotSupported = 1 << 9,