diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-04-11 10:13:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-11 10:13:34 +0200 |
| commit | 45700f6f7d1343c10a2aa104a8548f14daecd73e (patch) | |
| tree | a2e3f94c07b19198ea87b99e5413ce42e43da96e | |
| parent | 99f2129d91329902a9f763eb6afa951613db9d2c (diff) | |
| parent | 22f050725878661d475b63745656a5b9d57dafe5 (diff) | |
Merge pull request #16609 from ddemarco5/master
Fix HDR tonemapping for BDMV content
| -rw-r--r-- | MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs index bde23e842f..a89f059060 100644 --- a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs +++ b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs @@ -366,6 +366,8 @@ namespace MediaBrowser.Providers.MediaInfo blurayVideoStream.ColorSpace = ffmpegVideoStream.ColorSpace; blurayVideoStream.ColorTransfer = ffmpegVideoStream.ColorTransfer; blurayVideoStream.ColorPrimaries = ffmpegVideoStream.ColorPrimaries; + blurayVideoStream.BitDepth = ffmpegVideoStream.BitDepth; + blurayVideoStream.PixelFormat = ffmpegVideoStream.PixelFormat; } } |
