aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/DeinterlaceMethod.cs
blob: d05aac43394351d4594e47fbe779d3c4f8c905a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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
}