-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathH265VideoProfile.cs
54 lines (45 loc) · 2.7 KB
/
H265VideoProfile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ComponentModel;
namespace Azure.ResourceManager.Media.Models
{
/// <summary> We currently support Main. Default is Auto. </summary>
public readonly partial struct H265VideoProfile : IEquatable<H265VideoProfile>
{
private readonly string _value;
/// <summary> Initializes a new instance of <see cref="H265VideoProfile"/>. </summary>
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
public H265VideoProfile(string value)
{
_value = value ?? throw new ArgumentNullException(nameof(value));
}
private const string AutoValue = "Auto";
private const string MainValue = "Main";
private const string Main10Value = "Main10";
/// <summary> Tells the encoder to automatically determine the appropriate H.265 profile. </summary>
public static H265VideoProfile Auto { get; } = new H265VideoProfile(AutoValue);
/// <summary> Main profile (https://x265.readthedocs.io/en/default/cli.html?highlight=profile#profile-level-tier). </summary>
public static H265VideoProfile Main { get; } = new H265VideoProfile(MainValue);
/// <summary> Main 10 profile (https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding#Main_10). </summary>
public static H265VideoProfile Main10 { get; } = new H265VideoProfile(Main10Value);
/// <summary> Determines if two <see cref="H265VideoProfile"/> values are the same. </summary>
public static bool operator ==(H265VideoProfile left, H265VideoProfile right) => left.Equals(right);
/// <summary> Determines if two <see cref="H265VideoProfile"/> values are not the same. </summary>
public static bool operator !=(H265VideoProfile left, H265VideoProfile right) => !left.Equals(right);
/// <summary> Converts a string to a <see cref="H265VideoProfile"/>. </summary>
public static implicit operator H265VideoProfile(string value) => new H265VideoProfile(value);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj) => obj is H265VideoProfile other && Equals(other);
/// <inheritdoc />
public bool Equals(H265VideoProfile other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode() => _value?.GetHashCode() ?? 0;
/// <inheritdoc />
public override string ToString() => _value;
}
}