mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			671 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			671 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Configuration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// An enum representing the options to disable embedded subs.
 | 
						|
    /// </summary>
 | 
						|
    public enum EmbeddedSubtitleOptions
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Allow all embedded subs.
 | 
						|
        /// </summary>
 | 
						|
        AllowAll = 0,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Allow only embedded subs that are text based.
 | 
						|
        /// </summary>
 | 
						|
        AllowText = 1,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Allow only embedded subs that are image based.
 | 
						|
        /// </summary>
 | 
						|
        AllowImage = 2,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Disable all embedded subs.
 | 
						|
        /// </summary>
 | 
						|
        AllowNone = 3,
 | 
						|
    }
 | 
						|
}
 |