aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/MediaFrameSideDataInfo.cs
blob: 3f7dd9a69dc62fd6aca381b503071667ac6c5f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Text.Json.Serialization;

namespace MediaBrowser.MediaEncoding.Probing;

/// <summary>
/// Class MediaFrameSideDataInfo.
/// Currently only records the SideDataType for HDR10+ detection.
/// </summary>
public class MediaFrameSideDataInfo
{
    /// <summary>
    /// Gets or sets the SideDataType.
    /// </summary>
    [JsonPropertyName("side_data_type")]
    public string? SideDataType { get; set; }
}