You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
354 B
20 lines
354 B
#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
|
|
}
|