aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/MediaStreamInfoSideData.cs
blob: 0b5dd1d1b5436c09ce37708d1d6142d532a69e1d (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System.Text.Json.Serialization;

namespace MediaBrowser.MediaEncoding.Probing
{
    /// <summary>
    /// Class MediaStreamInfoSideData.
    /// </summary>
    public class MediaStreamInfoSideData
    {
        /// <summary>
        /// Gets or sets the SideDataType.
        /// </summary>
        /// <value>The SideDataType.</value>
        [JsonPropertyName("side_data_type")]
        public string? SideDataType { get; set; }

        /// <summary>
        /// Gets or sets the DvVersionMajor.
        /// </summary>
        /// <value>The DvVersionMajor.</value>
        [JsonPropertyName("dv_version_major")]
        public int? DvVersionMajor { get; set; }

        /// <summary>
        /// Gets or sets the DvVersionMinor.
        /// </summary>
        /// <value>The DvVersionMinor.</value>
        [JsonPropertyName("dv_version_minor")]
        public int? DvVersionMinor { get; set; }

        /// <summary>
        /// Gets or sets the DvProfile.
        /// </summary>
        /// <value>The DvProfile.</value>
        [JsonPropertyName("dv_profile")]
        public int? DvProfile { get; set; }

        /// <summary>
        /// Gets or sets the DvLevel.
        /// </summary>
        /// <value>The DvLevel.</value>
        [JsonPropertyName("dv_level")]
        public int? DvLevel { get; set; }

        /// <summary>
        /// Gets or sets the RpuPresentFlag.
        /// </summary>
        /// <value>The RpuPresentFlag.</value>
        [JsonPropertyName("rpu_present_flag")]
        public int? RpuPresentFlag { get; set; }

        /// <summary>
        /// Gets or sets the ElPresentFlag.
        /// </summary>
        /// <value>The ElPresentFlag.</value>
        [JsonPropertyName("el_present_flag")]
        public int? ElPresentFlag { get; set; }

        /// <summary>
        /// Gets or sets the BlPresentFlag.
        /// </summary>
        /// <value>The BlPresentFlag.</value>
        [JsonPropertyName("bl_present_flag")]
        public int? BlPresentFlag { get; set; }

        /// <summary>
        /// Gets or sets the DvBlSignalCompatibilityId.
        /// </summary>
        /// <value>The DvBlSignalCompatibilityId.</value>
        [JsonPropertyName("dv_bl_signal_compatibility_id")]
        public int? DvBlSignalCompatibilityId { get; set; }

        /// <summary>
        /// Gets or sets the Rotation in degrees.
        /// </summary>
        /// <value>The Rotation.</value>
        [JsonPropertyName("rotation")]
        public int? Rotation { get; set; }
    }
}