diff options
| author | MrTimscampi <julien.machiels@protonmail.com> | 2020-05-16 17:35:34 +0200 |
|---|---|---|
| committer | MrTimscampi <julien.machiels@protonmail.com> | 2020-05-16 17:35:34 +0200 |
| commit | 9314434bbf79250f1e545b459c545f57d5acc67c (patch) | |
| tree | 503f6084481a5d022bf478d7e2347dec11fda8a1 | |
| parent | 2e18142bb32554cf162827ab1ca7a8040107baea (diff) | |
Fix suggestions
| -rw-r--r-- | MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs index d7b0e0e64..a2ea0766a 100644 --- a/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs +++ b/MediaBrowser.MediaEncoding/Probing/MediaStreamInfo.cs @@ -287,9 +287,9 @@ namespace MediaBrowser.MediaEncoding.Probing public string ColorTransfer { get; set; } /// <summary> - /// Gets or sets the color transfer. + /// Gets or sets the color primaries. /// </summary> - /// <value>The color transfer.</value> + /// <value>The color primaries.</value> [JsonPropertyName("color_primaries")] public string ColorPrimaries { get; set; } } diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index dd17623bd..d340f9ef7 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -92,7 +92,7 @@ namespace MediaBrowser.Model.Entities var colorTransfer = ColorTransfer; if (string.Equals(colorTransfer, "smpte2084", StringComparison.OrdinalIgnoreCase) - || string.Equals(colorTransfer, "arib-std-b67", StringComparison.OrdinalIgnoreCase)) + || string.Equals(colorTransfer, "arib-std-b67", StringComparison.OrdinalIgnoreCase)) { return "HDR"; } |
