mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -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
|
|
}
|