MediaFrameSideDataInfo.cs 418 B

12345678910111213141516
  1. using System.Text.Json.Serialization;
  2. namespace MediaBrowser.MediaEncoding.Probing;
  3. /// <summary>
  4. /// Class MediaFrameSideDataInfo.
  5. /// Currently only records the SideDataType for HDR10+ detection.
  6. /// </summary>
  7. public class MediaFrameSideDataInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the SideDataType.
  11. /// </summary>
  12. [JsonPropertyName("side_data_type")]
  13. public string? SideDataType { get; set; }
  14. }