mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
22 lines
1.1 KiB
22 lines
1.1 KiB
namespace ErsatzTV.FFmpeg.Capabilities.Vaapi; |
|
|
|
public class VaapiProfile |
|
{ |
|
public const string Mpeg2Simple = "VAProfileMPEG2Simple"; |
|
public const string Mpeg2Main = "VAProfileMPEG2Main"; |
|
public const string H264ConstrainedBaseline = "VAProfileH264ConstrainedBaseline"; |
|
public const string H264Main = "VAProfileH264Main"; |
|
public const string H264High = "VAProfileH264High"; |
|
public const string H264MultiviewHigh = "VAProfileH264MultiviewHigh"; |
|
public const string H264StereoHigh = "VAProfileH264StereoHigh"; |
|
public const string Vc1Simple = "VAProfileVC1Simple"; |
|
public const string Vc1Main = "VAProfileVC1Main"; |
|
public const string Vc1Advanced = "VAProfileVC1Advanced"; |
|
public const string HevcMain = "VAProfileHEVCMain"; |
|
public const string HevcMain10 = "VAProfileHEVCMain10"; |
|
public const string Vp9Profile0 = "VAProfileVP9Profile0"; |
|
public const string Vp9Profile1 = "VAProfileVP9Profile1"; |
|
public const string Vp9Profile2 = "VAProfileVP9Profile2"; |
|
public const string Vp9Profile3 = "VAProfileVP9Profile3"; |
|
public const string Av1Profile0 = "VAProfileAV1Profile0"; |
|
}
|
|
|