aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorgnattu <gnattu@users.noreply.github.com>2024-07-30 23:50:22 +0800
committerGitHub <noreply@github.com>2024-07-30 09:50:22 -0600
commit0a1a109b2e9503213debdc8445910cb4c93ae382 (patch)
tree580940d87a79c48ae7edec2b35cf4ce3618e2923 /MediaBrowser.Model/Entities
parentf7ab17d24da65875fa7e2b53b68caa4171832d9c (diff)
Add RFC7845 downmix algorithm (#12300)
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/DownMixStereoAlgorithms.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/DownMixStereoAlgorithms.cs b/MediaBrowser.Model/Entities/DownMixStereoAlgorithms.cs
index 385cd6a34..be43ef32d 100644
--- a/MediaBrowser.Model/Entities/DownMixStereoAlgorithms.cs
+++ b/MediaBrowser.Model/Entities/DownMixStereoAlgorithms.cs
@@ -19,5 +19,10 @@ public enum DownMixStereoAlgorithms
/// <summary>
/// Nightmode Dialogue algorithm.
/// </summary>
- NightmodeDialogue = 2
+ NightmodeDialogue = 2,
+
+ /// <summary>
+ /// RFC7845 Section 5.1.1.5 defined algorithm.
+ /// </summary>
+ Rfc7845 = 3
}