From 22f050725878661d475b63745656a5b9d57dafe5 Mon Sep 17 00:00:00 2001 From: Dominic DeMarco Date: Fri, 10 Apr 2026 00:21:52 -0700 Subject: [PATCH] Record missing information Fixes tonemapping checks by recording previously missing information when gathering video stream information from videos in a BDMV structure --- MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs | 2 ++ 1 file changed, 2 insertions(+) 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; } }