mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 14:28:46 +01:00
Use enums for encoding options (#12561)
This commit is contained in:
19
MediaBrowser.Model/Entities/DeinterlaceMethod.cs
Normal file
19
MediaBrowser.Model/Entities/DeinterlaceMethod.cs
Normal file
@@ -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