Add RFC7845 downmix algorithm (#12300)

This commit is contained in:
gnattu
2024-07-30 23:50:22 +08:00
committed by GitHub
parent f7ab17d24d
commit 0a1a109b2e
4 changed files with 83 additions and 21 deletions

View File

@@ -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
}