namespace MediaBrowser.Model.Entities;
/// 
/// An enum representing an algorithm to downmix surround sound to stereo.
/// 
public enum DownMixStereoAlgorithms
{
    /// 
    /// No special algorithm.
    /// 
    None = 0,
    /// 
    /// Algorithm by Dave_750.
    /// Sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
    /// 
    Dave750 = 1,
    /// 
    /// Nightmode Dialogue algorithm.
    /// Sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
    /// 
    NightmodeDialogue = 2,
    /// 
    /// RFC7845 Section 5.1.1.5 defined algorithm.
    /// 
    Rfc7845 = 3,
    /// 
    /// AC-4 standard algorithm with its default gain values.
    /// Defined in ETSI TS 103 190 Section 6.2.17.
    /// 
    Ac4 = 4
}