Table of Contents

Enum DecklinkDeviceMode

Namespace
VisioForge.Core.Types.Decklink
Assembly
VisioForge.Core.dll

Specifies the driver mode used to access Decklink hardware devices.

public enum DecklinkDeviceMode

Fields

WDM = 0

Use the Decklink WDM (Windows Driver Model) driver for DirectShow compatibility.

WDM mode allows Decklink devices to be used as standard DirectShow capture devices, providing compatibility with a wide range of Windows multimedia applications. This mode may have some limitations compared to direct SDK access, such as reduced control over advanced features or slightly higher latency. However, it provides excellent compatibility with existing DirectShow-based applications and workflows.

VisioForgeWrapper = 1

Use the VisioForge wrapper for direct access to the Decklink Desktop SDK.

This mode provides direct access to the Blackmagic Decklink SDK through a managed wrapper, offering full control over all device features and optimal performance. It supports advanced capabilities like format auto-detection, multiple stream support, and low-latency operation. This is the recommended mode for new applications that need maximum control and performance from Decklink hardware.

Remarks

Decklink devices can be accessed through different driver interfaces, each with its own advantages and limitations. The choice of mode affects compatibility, features, and performance.