#pragma warning disable CS1591
namespace MediaBrowser.Model.Dlna
{
    /// 
    /// Delivery method to use during playback of a specific subtitle format.
    /// 
    public enum SubtitleDeliveryMethod
    {
        /// 
        /// Burn the subtitles in the video track.
        /// 
        Encode = 0,
        /// 
        /// Embed the subtitles in the file or stream.
        /// 
        Embed = 1,
        /// 
        /// Serve the subtitles as an external file.
        /// 
        External = 2,
        /// 
        /// Serve the subtitles as a separate HLS stream.
        /// 
        Hls = 3,
        /// 
        /// Drop the subtitle.
        /// 
        Drop = 4
    }
}