mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-19 10:23:23 -03:00
17 lines
418 B
C#
17 lines
418 B
C#
|
|
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; }
|
||
|
|
}
|