diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-09-04 10:06:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-04 10:06:15 -0400 |
| commit | 559a7fc336a022c92f63a8d77b6eb3c2f915c290 (patch) | |
| tree | ad94c00c469516594a0738f2b3e18af615742f5d /MediaBrowser.Model/Entities/MediaStream.cs | |
| parent | 945be64ad6dc97e1668b2656b1acc46699ca08e3 (diff) | |
| parent | 4cb0a57e4645aba8e5e65c7d086091b9161c6c09 (diff) | |
Merge pull request #3442 from nyanmisaka/tonemap
Tonemapping function relying on OpenCL filter and NVENC HEVC decoder
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaStream.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index f9ec0d238..2d37618c2 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -36,6 +36,18 @@ namespace MediaBrowser.Model.Entities public string Language { get; set; } /// <summary> + /// Gets or sets the color range. + /// </summary> + /// <value>The color range.</value> + public string ColorRange { get; set; } + + /// <summary> + /// Gets or sets the color space. + /// </summary> + /// <value>The color space.</value> + public string ColorSpace { get; set; } + + /// <summary> /// Gets or sets the color transfer. /// </summary> /// <value>The color transfer.</value> @@ -48,12 +60,6 @@ namespace MediaBrowser.Model.Entities public string ColorPrimaries { get; set; } /// <summary> - /// Gets or sets the color space. - /// </summary> - /// <value>The color space.</value> - public string ColorSpace { get; set; } - - /// <summary> /// Gets or sets the comment. /// </summary> /// <value>The comment.</value> |
