mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-04-03 22:31:56 -04:00
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.
This commit is contained in:
@@ -188,7 +188,7 @@ HRESULT HDRVideoFrame::GetFloat(BMDDeckLinkFrameMetadataID metadataID, double *v
|
||||
break;
|
||||
|
||||
case bmdDeckLinkFrameMetadataHDRMinDisplayMasteringLuminance:
|
||||
*value = 0.00001;
|
||||
*value = 0.0001;
|
||||
break;
|
||||
|
||||
case bmdDeckLinkFrameMetadataHDRMaximumContentLightLevel:
|
||||
|
||||
Reference in New Issue
Block a user