repo creation with initial code after cloning public repo
This commit is contained in:
@@ -0,0 +1,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
|
||||
}
|
||||
Reference in New Issue
Block a user