From 000437ff7e2edfa2426e64f7cf08ed34fe03dda4 Mon Sep 17 00:00:00 2001 From: tfo Date: Mon, 5 May 2025 00:34:50 +0200 Subject: [PATCH] decklink: Fix incorrect HDR min mastering luminance value Update value for bmdDeckLinkFrameMetadataHDRMinDisplayMasteringLuminance from 0.00001 to 0.0001 to match the documented minimum in the DeckLink SDK Manual. --- plugins/decklink/OBSVideoFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/decklink/OBSVideoFrame.cpp b/plugins/decklink/OBSVideoFrame.cpp index 614b309c0..607881410 100644 --- a/plugins/decklink/OBSVideoFrame.cpp +++ b/plugins/decklink/OBSVideoFrame.cpp @@ -188,7 +188,7 @@ HRESULT HDRVideoFrame::GetFloat(BMDDeckLinkFrameMetadataID metadataID, double *v break; case bmdDeckLinkFrameMetadataHDRMinDisplayMasteringLuminance: - *value = 0.00001; + *value = 0.0001; break; case bmdDeckLinkFrameMetadataHDRMaximumContentLightLevel: