aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2022-06-26 20:55:36 -0400
committerJoshua Boniface <joshua@boniface.me>2022-06-29 01:26:15 -0400
commitfe32b5e33353e6154e067c5fb196a36cdecc0cea (patch)
tree89adb4b3b4af1ee94afa5d7a1732ce07731d8d7d /MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
parente61c80fed7201124809ac21a1b26facf1daddf90 (diff)
Merge pull request #7964 from jellyfin/dovi-side-data
(cherry picked from commit 39d185c7b19ed2da1ae46566152fb1cf182266cd) Signed-off-by: Joshua Boniface <joshua@boniface.me>
Diffstat (limited to 'MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
index c9c8c34c2e..eab8f79bb3 100644
--- a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
+++ b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs
@@ -310,5 +310,12 @@ namespace MediaBrowser.MediaEncoding.Probing
/// <value>The color primaries.</value>
[JsonPropertyName("color_primaries")]
public string ColorPrimaries { get; set; }
+
+ /// <summary>
+ /// Gets or sets the side_data_list.
+ /// </summary>
+ /// <value>The side_data_list.</value>
+ [JsonPropertyName("side_data_list")]
+ public IReadOnlyList<MediaStreamInfoSideData> SideDataList { get; set; }
}
}