mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 18:47:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			354 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable SA1300 // Lowercase required for backwards compat.
 | |
| 
 | |
| namespace MediaBrowser.Model.Entities;
 | |
| 
 | |
| /// <summary>
 | |
| /// Enum containing deinterlace methods.
 | |
| /// </summary>
 | |
| public enum DeinterlaceMethod
 | |
| {
 | |
|     /// <summary>
 | |
|     /// YADIF.
 | |
|     /// </summary>
 | |
|     yadif = 0,
 | |
| 
 | |
|     /// <summary>
 | |
|     /// BWDIF.
 | |
|     /// </summary>
 | |
|     bwdif = 1
 | |
| }
 |