|
@@ -7,14 +7,14 @@
|
|
|
** execute, and transmit the Software, and to prepare derivative works of the
|
|
|
** Software, and to permit third-parties to whom the Software is furnished to
|
|
|
** do so, all subject to the following:
|
|
|
-**
|
|
|
+**
|
|
|
** The copyright notices in the Software and this entire statement, including
|
|
|
** the above license grant, this restriction and the following disclaimer,
|
|
|
** must be included in all copies of the Software, in whole or in part, and
|
|
|
** all derivative works of the Software, unless such copies or derivative
|
|
|
** works are solely in the form of machine-executable object code generated by
|
|
|
** a source language processor.
|
|
|
-**
|
|
|
+**
|
|
|
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
** FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
@@ -37,6 +37,10 @@
|
|
|
#endif
|
|
|
#endif
|
|
|
|
|
|
+#ifndef BMD_PUBLIC
|
|
|
+ #define BMD_PUBLIC
|
|
|
+#endif
|
|
|
+
|
|
|
/* DeckLink API */
|
|
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
@@ -73,6 +77,9 @@ BMD_CONST REFIID IID_IDeckLinkMutableVideoFrame = /* 69E2639F-
|
|
|
BMD_CONST REFIID IID_IDeckLinkVideoFrame3DExtensions = /* DA0F7E4A-EDC7-48A8-9CDD-2DB51C729CD7 */ {0xDA,0x0F,0x7E,0x4A,0xED,0xC7,0x48,0xA8,0x9C,0xDD,0x2D,0xB5,0x1C,0x72,0x9C,0xD7};
|
|
|
BMD_CONST REFIID IID_IDeckLinkVideoFrameMetadataExtensions = /* D5973DC9-6432-46D0-8F0B-2496F8A1238F */ {0xD5,0x97,0x3D,0xC9,0x64,0x32,0x46,0xD0,0x8F,0x0B,0x24,0x96,0xF8,0xA1,0x23,0x8F};
|
|
|
BMD_CONST REFIID IID_IDeckLinkVideoInputFrame = /* 05CFE374-537C-4094-9A57-680525118F44 */ {0x05,0xCF,0xE3,0x74,0x53,0x7C,0x40,0x94,0x9A,0x57,0x68,0x05,0x25,0x11,0x8F,0x44};
|
|
|
+BMD_CONST REFIID IID_IDeckLinkAncillaryPacket = /* CC5BBF7E-029C-4D3B-9158-6000EF5E3670 */ {0xCC,0x5B,0xBF,0x7E,0x02,0x9C,0x4D,0x3B,0x91,0x58,0x60,0x00,0xEF,0x5E,0x36,0x70};
|
|
|
+BMD_CONST REFIID IID_IDeckLinkAncillaryPacketIterator = /* 3FC8994B-88FB-4C17-968F-9AAB69D964A7 */ {0x3F,0xC8,0x99,0x4B,0x88,0xFB,0x4C,0x17,0x96,0x8F,0x9A,0xAB,0x69,0xD9,0x64,0xA7};
|
|
|
+BMD_CONST REFIID IID_IDeckLinkVideoFrameAncillaryPackets = /* 6C186C0F-459E-41D8-AEE2-4812D81AEE68 */ {0x6C,0x18,0x6C,0x0F,0x45,0x9E,0x41,0xD8,0xAE,0xE2,0x48,0x12,0xD8,0x1A,0xEE,0x68};
|
|
|
BMD_CONST REFIID IID_IDeckLinkVideoFrameAncillary = /* 732E723C-D1A4-4E29-9E8E-4A88797A0004 */ {0x73,0x2E,0x72,0x3C,0xD1,0xA4,0x4E,0x29,0x9E,0x8E,0x4A,0x88,0x79,0x7A,0x00,0x04};
|
|
|
BMD_CONST REFIID IID_IDeckLinkEncoderPacket = /* B693F36C-316E-4AF1-B6C2-F389A4BCA620 */ {0xB6,0x93,0xF3,0x6C,0x31,0x6E,0x4A,0xF1,0xB6,0xC2,0xF3,0x89,0xA4,0xBC,0xA6,0x20};
|
|
|
BMD_CONST REFIID IID_IDeckLinkEncoderVideoPacket = /* 4E7FD944-E8C7-4EAC-B8C0-7B77F80F5AE0 */ {0x4E,0x7F,0xD9,0x44,0xE8,0xC7,0x4E,0xAC,0xB8,0xC0,0x7B,0x77,0xF8,0x0F,0x5A,0xE0};
|
|
@@ -117,9 +124,11 @@ enum _BMDFrameFlags {
|
|
|
bmdFrameFlagDefault = 0,
|
|
|
bmdFrameFlagFlipVertical = 1 << 0,
|
|
|
bmdFrameContainsHDRMetadata = 1 << 1,
|
|
|
+ bmdFrameContainsCintelMetadata = 1 << 2,
|
|
|
|
|
|
/* Flags that are applicable only to instances of IDeckLinkVideoInputFrame */
|
|
|
|
|
|
+ bmdFrameCapturedAsPsF = 1 << 30,
|
|
|
bmdFrameHasNoInputSource = 1 << 31
|
|
|
};
|
|
|
|
|
@@ -163,10 +172,10 @@ enum _BMDDeckLinkCapturePassthroughMode {
|
|
|
|
|
|
typedef uint32_t BMDOutputFrameCompletionResult;
|
|
|
enum _BMDOutputFrameCompletionResult {
|
|
|
- bmdOutputFrameCompleted,
|
|
|
- bmdOutputFrameDisplayedLate,
|
|
|
- bmdOutputFrameDropped,
|
|
|
- bmdOutputFrameFlushed
|
|
|
+ bmdOutputFrameCompleted,
|
|
|
+ bmdOutputFrameDisplayedLate,
|
|
|
+ bmdOutputFrameDropped,
|
|
|
+ bmdOutputFrameFlushed
|
|
|
};
|
|
|
|
|
|
/* Enum BMDReferenceStatus - GenLock input status */
|
|
@@ -203,9 +212,9 @@ enum _BMDAudioSampleType {
|
|
|
|
|
|
typedef uint32_t BMDAudioOutputStreamType;
|
|
|
enum _BMDAudioOutputStreamType {
|
|
|
- bmdAudioOutputStreamContinuous,
|
|
|
- bmdAudioOutputStreamContinuousDontResample,
|
|
|
- bmdAudioOutputStreamTimestamped
|
|
|
+ bmdAudioOutputStreamContinuous,
|
|
|
+ bmdAudioOutputStreamContinuousDontResample,
|
|
|
+ bmdAudioOutputStreamTimestamped
|
|
|
};
|
|
|
|
|
|
/* Enum BMDDisplayModeSupport - Output mode supported flags */
|
|
@@ -213,8 +222,17 @@ enum _BMDAudioOutputStreamType {
|
|
|
typedef uint32_t BMDDisplayModeSupport;
|
|
|
enum _BMDDisplayModeSupport {
|
|
|
bmdDisplayModeNotSupported = 0,
|
|
|
- bmdDisplayModeSupported,
|
|
|
- bmdDisplayModeSupportedWithConversion
|
|
|
+ bmdDisplayModeSupported,
|
|
|
+ bmdDisplayModeSupportedWithConversion
|
|
|
+};
|
|
|
+
|
|
|
+/* Enum BMDAncillaryPacketFormat - Ancillary packet format */
|
|
|
+
|
|
|
+typedef uint32_t BMDAncillaryPacketFormat;
|
|
|
+enum _BMDAncillaryPacketFormat {
|
|
|
+ bmdAncillaryPacketFormatUInt8 = 'ui08',
|
|
|
+ bmdAncillaryPacketFormatUInt16 = 'ui16',
|
|
|
+ bmdAncillaryPacketFormatYCbCr10 = 'v210'
|
|
|
};
|
|
|
|
|
|
/* Enum BMDTimecodeFormat - Timecode formats for frame metadata */
|
|
@@ -341,6 +359,37 @@ enum _BMDDeviceInterface {
|
|
|
typedef uint32_t BMDDeckLinkFrameMetadataID;
|
|
|
enum _BMDDeckLinkFrameMetadataID {
|
|
|
bmdDeckLinkFrameMetadataHDRElectroOpticalTransferFunc = 'eotf', // EOTF in range 0-7 as per CEA 861.3
|
|
|
+ bmdDeckLinkFrameMetadataCintelFilmType = 'cfty', // Current film type
|
|
|
+ bmdDeckLinkFrameMetadataCintelFilmGauge = 'cfga', // Current film gauge
|
|
|
+ bmdDeckLinkFrameMetadataCintelOffsetDetectedHorizontal = 'odfh', // Horizontal offset (pixels) detected in image
|
|
|
+ bmdDeckLinkFrameMetadataCintelOffsetDetectedVertical = 'odfv', // Vertical offset (pixels) detected in image
|
|
|
+ bmdDeckLinkFrameMetadataCintelKeykodeLow = 'ckkl', // Raw keykode value - low 64 bits
|
|
|
+ bmdDeckLinkFrameMetadataCintelKeykodeHigh = 'ckkh', // Raw keykode value - high 64 bits
|
|
|
+ bmdDeckLinkFrameMetadataCintelTile1Size = 'ct1s', // Size in bytes of compressed raw tile 1
|
|
|
+ bmdDeckLinkFrameMetadataCintelTile2Size = 'ct2s', // Size in bytes of compressed raw tile 2
|
|
|
+ bmdDeckLinkFrameMetadataCintelTile3Size = 'ct3s', // Size in bytes of compressed raw tile 3
|
|
|
+ bmdDeckLinkFrameMetadataCintelTile4Size = 'ct4s', // Size in bytes of compressed raw tile 4
|
|
|
+ bmdDeckLinkFrameMetadataCintelImageWidth = 'IWPx', // Width in pixels of image
|
|
|
+ bmdDeckLinkFrameMetadataCintelImageHeight = 'IHPx', // Height in pixels of image
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingRedInRed = 'mrir', // Red in red linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingGreenInRed = 'mgir', // Green in red linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingBlueInRed = 'mbir', // Blue in red linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingRedInGreen = 'mrig', // Red in green linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingGreenInGreen = 'mgig', // Green in green linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingBlueInGreen = 'mbig', // Blue in green linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingRedInBlue = 'mrib', // Red in blue linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingGreenInBlue = 'mgib', // Green in blue linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLinearMaskingBlueInBlue = 'mbib', // Blue in blue linear masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingRedInRed = 'mlrr', // Red in red log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingGreenInRed = 'mlgr', // Green in red log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingBlueInRed = 'mlbr', // Blue in red log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingRedInGreen = 'mlrg', // Red in green log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingGreenInGreen = 'mlgg', // Green in green log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingBlueInGreen = 'mlbg', // Blue in green log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingRedInBlue = 'mlrb', // Red in blue log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingGreenInBlue = 'mlgb', // Green in blue log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelLogMaskingBlueInBlue = 'mlbb', // Blue in blue log masking parameter
|
|
|
+ bmdDeckLinkFrameMetadataCintelFilmFrameRate = 'cffr', // Film frame rate
|
|
|
bmdDeckLinkFrameMetadataHDRDisplayPrimariesRedX = 'hdrx', // Red display primaries in range 0.0 - 1.0
|
|
|
bmdDeckLinkFrameMetadataHDRDisplayPrimariesRedY = 'hdry', // Red display primaries in range 0.0 - 1.0
|
|
|
bmdDeckLinkFrameMetadataHDRDisplayPrimariesGreenX = 'hdgx', // Green display primaries in range 0.0 - 1.0
|
|
@@ -352,7 +401,15 @@ enum _BMDDeckLinkFrameMetadataID {
|
|
|
bmdDeckLinkFrameMetadataHDRMaxDisplayMasteringLuminance = 'hdml', // Max display mastering luminance in range 1 cd/m2 - 65535 cd/m2
|
|
|
bmdDeckLinkFrameMetadataHDRMinDisplayMasteringLuminance = 'hmil', // Min display mastering luminance in range 0.0001 cd/m2 - 6.5535 cd/m2
|
|
|
bmdDeckLinkFrameMetadataHDRMaximumContentLightLevel = 'mcll', // Maximum Content Light Level in range 1 cd/m2 - 65535 cd/m2
|
|
|
- bmdDeckLinkFrameMetadataHDRMaximumFrameAverageLightLevel = 'fall' // Maximum Frame Average Light Level in range 1 cd/m2 - 65535 cd/m2
|
|
|
+ bmdDeckLinkFrameMetadataHDRMaximumFrameAverageLightLevel = 'fall', // Maximum Frame Average Light Level in range 1 cd/m2 - 65535 cd/m2
|
|
|
+ bmdDeckLinkFrameMetadataCintelOffsetToApplyHorizontal = 'otah', // Horizontal offset (pixels) to be applied to image
|
|
|
+ bmdDeckLinkFrameMetadataCintelOffsetToApplyVertical = 'otav', // Vertical offset (pixels) to be applied to image
|
|
|
+ bmdDeckLinkFrameMetadataCintelGainRed = 'LfRd', // Red gain parameter to apply after log
|
|
|
+ bmdDeckLinkFrameMetadataCintelGainGreen = 'LfGr', // Green gain parameter to apply after log
|
|
|
+ bmdDeckLinkFrameMetadataCintelGainBlue = 'LfBl', // Blue gain parameter to apply after log
|
|
|
+ bmdDeckLinkFrameMetadataCintelLiftRed = 'GnRd', // Red lift parameter to apply after log and gain
|
|
|
+ bmdDeckLinkFrameMetadataCintelLiftGreen = 'GnGr', // Green lift parameter to apply after log and gain
|
|
|
+ bmdDeckLinkFrameMetadataCintelLiftBlue = 'GnBl' // Blue lift parameter to apply after log and gain
|
|
|
};
|
|
|
|
|
|
/* Enum BMDDuplexMode - Duplex for configurable ports */
|
|
@@ -394,18 +451,19 @@ enum _BMDDeckLinkAttributeID {
|
|
|
/* Integers */
|
|
|
|
|
|
BMDDeckLinkMaximumAudioChannels = 'mach',
|
|
|
- BMDDeckLinkMaximumAnalogAudioChannels = 'aach',
|
|
|
+ BMDDeckLinkMaximumAnalogAudioInputChannels = 'iach',
|
|
|
+ BMDDeckLinkMaximumAnalogAudioOutputChannels = 'aach',
|
|
|
BMDDeckLinkNumberOfSubDevices = 'nsbd',
|
|
|
BMDDeckLinkSubDeviceIndex = 'subi',
|
|
|
BMDDeckLinkPersistentID = 'peid',
|
|
|
BMDDeckLinkDeviceGroupID = 'dgid',
|
|
|
BMDDeckLinkTopologicalID = 'toid',
|
|
|
- BMDDeckLinkVideoOutputConnections = 'vocn',
|
|
|
- BMDDeckLinkVideoInputConnections = 'vicn',
|
|
|
- BMDDeckLinkAudioOutputConnections = 'aocn',
|
|
|
- BMDDeckLinkAudioInputConnections = 'aicn',
|
|
|
+ BMDDeckLinkVideoOutputConnections = 'vocn', // Returns a BMDVideoConnection bit field
|
|
|
+ BMDDeckLinkVideoInputConnections = 'vicn', // Returns a BMDVideoConnection bit field
|
|
|
+ BMDDeckLinkAudioOutputConnections = 'aocn', // Returns a BMDAudioConnection bit field
|
|
|
+ BMDDeckLinkAudioInputConnections = 'aicn', // Returns a BMDAudioConnection bit field
|
|
|
BMDDeckLinkVideoIOSupport = 'vios', // Returns a BMDVideoIOSupport bit field
|
|
|
- BMDDeckLinkDeckControlConnections = 'dccn',
|
|
|
+ BMDDeckLinkDeckControlConnections = 'dccn', // Returns a BMDDeckControlConnection bit field
|
|
|
BMDDeckLinkDeviceInterface = 'dbus', // Returns a BMDDeviceInterface
|
|
|
BMDDeckLinkAudioInputRCAChannelCount = 'airc',
|
|
|
BMDDeckLinkAudioInputXLRChannelCount = 'aixc',
|
|
@@ -459,11 +517,14 @@ enum _BMDDeckLinkStatusID {
|
|
|
bmdDeckLinkStatusReferenceSignalFlags = 'reff',
|
|
|
bmdDeckLinkStatusDuplexMode = 'dupx',
|
|
|
bmdDeckLinkStatusBusy = 'busy',
|
|
|
+ bmdDeckLinkStatusInterchangeablePanelType = 'icpt',
|
|
|
+ bmdDeckLinkStatusDeviceTemperature = 'dtmp',
|
|
|
|
|
|
/* Flags */
|
|
|
|
|
|
bmdDeckLinkStatusVideoInputSignalLocked = 'visl',
|
|
|
- bmdDeckLinkStatusReferenceSignalLocked = 'refl'
|
|
|
+ bmdDeckLinkStatusReferenceSignalLocked = 'refl',
|
|
|
+ bmdDeckLinkStatusReceivedEDID = 'edid'
|
|
|
};
|
|
|
|
|
|
/* Enum BMDDeckLinkVideoStatusFlags - */
|
|
@@ -484,6 +545,14 @@ enum _BMDDuplexStatus {
|
|
|
bmdDuplexStatusInactive = 'inac'
|
|
|
};
|
|
|
|
|
|
+/* Enum BMDPanelType - The type of interchangeable panel */
|
|
|
+
|
|
|
+typedef uint32_t BMDPanelType;
|
|
|
+enum _BMDPanelType {
|
|
|
+ bmdPanelNotDetected = 'npnl',
|
|
|
+ bmdPanelTeranexMiniSmartPanel = 'tmsm'
|
|
|
+};
|
|
|
+
|
|
|
/* Enum BMDDeviceBusyState - Current device busy state */
|
|
|
|
|
|
typedef uint32_t BMDDeviceBusyState;
|
|
@@ -539,6 +608,9 @@ class IDeckLinkMutableVideoFrame;
|
|
|
class IDeckLinkVideoFrame3DExtensions;
|
|
|
class IDeckLinkVideoFrameMetadataExtensions;
|
|
|
class IDeckLinkVideoInputFrame;
|
|
|
+class IDeckLinkAncillaryPacket;
|
|
|
+class IDeckLinkAncillaryPacketIterator;
|
|
|
+class IDeckLinkVideoFrameAncillaryPackets;
|
|
|
class IDeckLinkVideoFrameAncillary;
|
|
|
class IDeckLinkEncoderPacket;
|
|
|
class IDeckLinkEncoderVideoPacket;
|
|
@@ -559,7 +631,7 @@ class IDeckLinkDiscovery;
|
|
|
|
|
|
/* Interface IDeckLinkVideoOutputCallback - Frame completion callback. */
|
|
|
|
|
|
-class IDeckLinkVideoOutputCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoOutputCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT ScheduledFrameCompleted (/* in */ IDeckLinkVideoFrame *completedFrame, /* in */ BMDOutputFrameCompletionResult result) = 0;
|
|
@@ -571,7 +643,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkInputCallback - Frame arrival callback. */
|
|
|
|
|
|
-class IDeckLinkInputCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkInputCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT VideoInputFormatChanged (/* in */ BMDVideoInputFormatChangedEvents notificationEvents, /* in */ IDeckLinkDisplayMode *newDisplayMode, /* in */ BMDDetectedVideoInputFormatFlags detectedSignalFlags) = 0;
|
|
@@ -583,7 +655,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkEncoderInputCallback - Frame arrival callback. */
|
|
|
|
|
|
-class IDeckLinkEncoderInputCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkEncoderInputCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT VideoInputSignalChanged (/* in */ BMDVideoInputFormatChangedEvents notificationEvents, /* in */ IDeckLinkDisplayMode *newDisplayMode, /* in */ BMDDetectedVideoInputFormatFlags detectedSignalFlags) = 0;
|
|
@@ -596,7 +668,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkMemoryAllocator - Memory allocator for video frames. */
|
|
|
|
|
|
-class IDeckLinkMemoryAllocator : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkMemoryAllocator : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT AllocateBuffer (/* in */ uint32_t bufferSize, /* out */ void **allocatedBuffer) = 0;
|
|
@@ -608,7 +680,7 @@ public:
|
|
|
|
|
|
/* Interface IDeckLinkAudioOutputCallback - Optional callback to allow audio samples to be pulled as required. */
|
|
|
|
|
|
-class IDeckLinkAudioOutputCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkAudioOutputCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT RenderAudioSamples (/* in */ bool preroll) = 0;
|
|
@@ -616,7 +688,7 @@ public:
|
|
|
|
|
|
/* Interface IDeckLinkIterator - enumerates installed DeckLink hardware */
|
|
|
|
|
|
-class IDeckLinkIterator : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkIterator : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT Next (/* out */ IDeckLink **deckLinkInstance) = 0;
|
|
@@ -624,7 +696,7 @@ public:
|
|
|
|
|
|
/* Interface IDeckLinkAPIInformation - DeckLinkAPI attribute interface */
|
|
|
|
|
|
-class IDeckLinkAPIInformation : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkAPIInformation : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetFlag (/* in */ BMDDeckLinkAPIInformationID cfgID, /* out */ bool *value) = 0;
|
|
@@ -638,7 +710,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
|
|
|
|
|
-class IDeckLinkOutput : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkOutput : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT DoesSupportVideoMode (/* in */ BMDDisplayMode displayMode, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDVideoOutputFlags flags, /* out */ BMDDisplayModeSupport *result, /* out */ IDeckLinkDisplayMode **resultDisplayMode) = 0;
|
|
@@ -653,7 +725,7 @@ public:
|
|
|
|
|
|
virtual HRESULT SetVideoOutputFrameMemoryAllocator (/* in */ IDeckLinkMemoryAllocator *theAllocator) = 0;
|
|
|
virtual HRESULT CreateVideoFrame (/* in */ int32_t width, /* in */ int32_t height, /* in */ int32_t rowBytes, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDFrameFlags flags, /* out */ IDeckLinkMutableVideoFrame **outFrame) = 0;
|
|
|
- virtual HRESULT CreateAncillaryData (/* in */ BMDPixelFormat pixelFormat, /* out */ IDeckLinkVideoFrameAncillary **outBuffer) = 0;
|
|
|
+ virtual HRESULT CreateAncillaryData (/* in */ BMDPixelFormat pixelFormat, /* out */ IDeckLinkVideoFrameAncillary **outBuffer) = 0; // Use of IDeckLinkVideoFrameAncillaryPackets is preferred
|
|
|
|
|
|
virtual HRESULT DisplayVideoFrameSync (/* in */ IDeckLinkVideoFrame *theFrame) = 0;
|
|
|
virtual HRESULT ScheduleVideoFrame (/* in */ IDeckLinkVideoFrame *theFrame, /* in */ BMDTimeValue displayTime, /* in */ BMDTimeValue displayDuration, /* in */ BMDTimeScale timeScale) = 0;
|
|
@@ -695,7 +767,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkInput - Created by QueryInterface from IDeckLink. */
|
|
|
|
|
|
-class IDeckLinkInput : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkInput : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT DoesSupportVideoMode (/* in */ BMDDisplayMode displayMode, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDVideoInputFlags flags, /* out */ BMDDisplayModeSupport *result, /* out */ IDeckLinkDisplayMode **resultDisplayMode) = 0;
|
|
@@ -734,7 +806,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkEncoderInput - Created by QueryInterface from IDeckLink. */
|
|
|
|
|
|
-class IDeckLinkEncoderInput : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkEncoderInput : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT DoesSupportVideoMode (/* in */ BMDDisplayMode displayMode, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDVideoInputFlags flags, /* out */ BMDDisplayModeSupport *result, /* out */ IDeckLinkDisplayMode **resultDisplayMode) = 0;
|
|
@@ -771,7 +843,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkVideoFrame - Interface to encapsulate a video frame; can be caller-implemented. */
|
|
|
|
|
|
-class IDeckLinkVideoFrame : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoFrame : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual long GetWidth (void) = 0;
|
|
@@ -782,7 +854,7 @@ public:
|
|
|
virtual HRESULT GetBytes (/* out */ void **buffer) = 0;
|
|
|
|
|
|
virtual HRESULT GetTimecode (/* in */ BMDTimecodeFormat format, /* out */ IDeckLinkTimecode **timecode) = 0;
|
|
|
- virtual HRESULT GetAncillaryData (/* out */ IDeckLinkVideoFrameAncillary **ancillary) = 0;
|
|
|
+ virtual HRESULT GetAncillaryData (/* out */ IDeckLinkVideoFrameAncillary **ancillary) = 0; // Use of IDeckLinkVideoFrameAncillaryPackets is preferred
|
|
|
|
|
|
protected:
|
|
|
virtual ~IDeckLinkVideoFrame () {} // call Release method to drop reference count
|
|
@@ -790,7 +862,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkMutableVideoFrame - Created by IDeckLinkOutput::CreateVideoFrame. */
|
|
|
|
|
|
-class IDeckLinkMutableVideoFrame : public IDeckLinkVideoFrame
|
|
|
+class BMD_PUBLIC IDeckLinkMutableVideoFrame : public IDeckLinkVideoFrame
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT SetFlags (/* in */ BMDFrameFlags newFlags) = 0;
|
|
@@ -806,7 +878,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkVideoFrame3DExtensions - Optional interface implemented on IDeckLinkVideoFrame to support 3D frames */
|
|
|
|
|
|
-class IDeckLinkVideoFrame3DExtensions : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoFrame3DExtensions : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual BMDVideo3DPackingFormat Get3DPackingFormat (void) = 0;
|
|
@@ -818,7 +890,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkVideoFrameMetadataExtensions - Optional interface implemented on IDeckLinkVideoFrame to support frame metadata such as HDMI HDR information */
|
|
|
|
|
|
-class IDeckLinkVideoFrameMetadataExtensions : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoFrameMetadataExtensions : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetInt (/* in */ BMDDeckLinkFrameMetadataID metadataID, /* out */ int64_t *value) = 0;
|
|
@@ -832,7 +904,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
|
|
|
|
|
-class IDeckLinkVideoInputFrame : public IDeckLinkVideoFrame
|
|
|
+class BMD_PUBLIC IDeckLinkVideoInputFrame : public IDeckLinkVideoFrame
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetStreamTime (/* out */ BMDTimeValue *frameTime, /* out */ BMDTimeValue *frameDuration, /* in */ BMDTimeScale timeScale) = 0;
|
|
@@ -842,13 +914,56 @@ protected:
|
|
|
virtual ~IDeckLinkVideoInputFrame () {} // call Release method to drop reference count
|
|
|
};
|
|
|
|
|
|
-/* Interface IDeckLinkVideoFrameAncillary - Obtained through QueryInterface() on an IDeckLinkVideoFrame object. */
|
|
|
+/* Interface IDeckLinkAncillaryPacket - On output, user needs to implement this interface */
|
|
|
+
|
|
|
+class BMD_PUBLIC IDeckLinkAncillaryPacket : public IUnknown
|
|
|
+{
|
|
|
+public:
|
|
|
+
|
|
|
+ virtual HRESULT GetBytes (/* in */ BMDAncillaryPacketFormat format /* For output, only one format need be offered */, /* out */ const void **data /* Optional */, /* out */ uint32_t *size /* Optional */) = 0;
|
|
|
+ virtual uint8_t GetDID (void) = 0;
|
|
|
+ virtual uint8_t GetSDID (void) = 0;
|
|
|
+ virtual uint32_t GetLineNumber (void) = 0; // On output, zero is auto
|
|
|
+ virtual uint8_t GetDataStreamIndex (void) = 0; // Usually zero. Can only be 1 if non-SD and the first data stream is completely full
|
|
|
+
|
|
|
+protected:
|
|
|
+ virtual ~IDeckLinkAncillaryPacket () {} // call Release method to drop reference count
|
|
|
+};
|
|
|
+
|
|
|
+/* Interface IDeckLinkAncillaryPacketIterator - Enumerates ancillary packets */
|
|
|
+
|
|
|
+class BMD_PUBLIC IDeckLinkAncillaryPacketIterator : public IUnknown
|
|
|
+{
|
|
|
+public:
|
|
|
+ virtual HRESULT Next (/* out */ IDeckLinkAncillaryPacket **packet) = 0;
|
|
|
+
|
|
|
+protected:
|
|
|
+ virtual ~IDeckLinkAncillaryPacketIterator () {} // call Release method to drop reference count
|
|
|
+};
|
|
|
+
|
|
|
+/* Interface IDeckLinkVideoFrameAncillaryPackets - Obtained through QueryInterface() on an IDeckLinkVideoFrame object. */
|
|
|
+
|
|
|
+class BMD_PUBLIC IDeckLinkVideoFrameAncillaryPackets : public IUnknown
|
|
|
+{
|
|
|
+public:
|
|
|
+
|
|
|
+ virtual HRESULT GetPacketIterator (/* out */ IDeckLinkAncillaryPacketIterator **iterator) = 0;
|
|
|
+ virtual HRESULT GetFirstPacketByID (/* in */ uint8_t DID, /* in */ uint8_t SDID, /* out */ IDeckLinkAncillaryPacket **packet) = 0;
|
|
|
+ virtual HRESULT AttachPacket (/* in */ IDeckLinkAncillaryPacket *packet) = 0; // Implement IDeckLinkAncillaryPacket to output your own
|
|
|
+ virtual HRESULT DetachPacket (/* in */ IDeckLinkAncillaryPacket *packet) = 0;
|
|
|
+ virtual HRESULT DetachAllPackets (void) = 0;
|
|
|
+
|
|
|
+protected:
|
|
|
+ virtual ~IDeckLinkVideoFrameAncillaryPackets () {} // call Release method to drop reference count
|
|
|
+};
|
|
|
+
|
|
|
+/* Interface IDeckLinkVideoFrameAncillary - Use of IDeckLinkVideoFrameAncillaryPackets is preferred. Obtained through QueryInterface() on an IDeckLinkVideoFrame object. */
|
|
|
|
|
|
-class IDeckLinkVideoFrameAncillary : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoFrameAncillary : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
|
|
|
- virtual HRESULT GetBufferForVerticalBlankingLine (/* in */ uint32_t lineNumber, /* out */ void **buffer) = 0;
|
|
|
+ virtual HRESULT GetBufferForVerticalBlankingLine (/* in */ uint32_t lineNumber, /* out */ void **buffer) = 0; // Pixels/rowbytes is same as display mode, except for above HD where it's 1920 pixels for UHD modes and 2048 pixels for DCI modes
|
|
|
virtual BMDPixelFormat GetPixelFormat (void) = 0;
|
|
|
virtual BMDDisplayMode GetDisplayMode (void) = 0;
|
|
|
|
|
@@ -858,7 +973,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkEncoderPacket - Interface to encapsulate an encoded packet. */
|
|
|
|
|
|
-class IDeckLinkEncoderPacket : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkEncoderPacket : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetBytes (/* out */ void **buffer) = 0;
|
|
@@ -872,7 +987,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkEncoderVideoPacket - Provided by the IDeckLinkEncoderInput video packet arrival callback. */
|
|
|
|
|
|
-class IDeckLinkEncoderVideoPacket : public IDeckLinkEncoderPacket
|
|
|
+class BMD_PUBLIC IDeckLinkEncoderVideoPacket : public IDeckLinkEncoderPacket
|
|
|
{
|
|
|
public:
|
|
|
virtual BMDPixelFormat GetPixelFormat (void) = 0;
|
|
@@ -886,7 +1001,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkEncoderAudioPacket - Provided by the IDeckLinkEncoderInput audio packet arrival callback. */
|
|
|
|
|
|
-class IDeckLinkEncoderAudioPacket : public IDeckLinkEncoderPacket
|
|
|
+class BMD_PUBLIC IDeckLinkEncoderAudioPacket : public IDeckLinkEncoderPacket
|
|
|
{
|
|
|
public:
|
|
|
virtual BMDAudioFormat GetAudioFormat (void) = 0;
|
|
@@ -897,7 +1012,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkH265NALPacket - Obtained through QueryInterface() on an IDeckLinkEncoderVideoPacket object */
|
|
|
|
|
|
-class IDeckLinkH265NALPacket : public IDeckLinkEncoderVideoPacket
|
|
|
+class BMD_PUBLIC IDeckLinkH265NALPacket : public IDeckLinkEncoderVideoPacket
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetUnitType (/* out */ uint8_t *unitType) = 0;
|
|
@@ -910,7 +1025,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkAudioInputPacket - Provided by the IDeckLinkInput callback. */
|
|
|
|
|
|
-class IDeckLinkAudioInputPacket : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkAudioInputPacket : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual long GetSampleFrameCount (void) = 0;
|
|
@@ -923,7 +1038,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkScreenPreviewCallback - Screen preview callback */
|
|
|
|
|
|
-class IDeckLinkScreenPreviewCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkScreenPreviewCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT DrawFrame (/* in */ IDeckLinkVideoFrame *theFrame) = 0;
|
|
@@ -934,7 +1049,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkCocoaScreenPreviewCallback - Screen preview callback for Cocoa-based applications */
|
|
|
|
|
|
-class IDeckLinkCocoaScreenPreviewCallback : public IDeckLinkScreenPreviewCallback
|
|
|
+class BMD_PUBLIC IDeckLinkCocoaScreenPreviewCallback : public IDeckLinkScreenPreviewCallback
|
|
|
{
|
|
|
public:
|
|
|
|
|
@@ -944,7 +1059,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkGLScreenPreviewHelper - Created with CoCreateInstance(). */
|
|
|
|
|
|
-class IDeckLinkGLScreenPreviewHelper : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkGLScreenPreviewHelper : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
|
|
@@ -961,7 +1076,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkNotificationCallback - DeckLink Notification Callback Interface */
|
|
|
|
|
|
-class IDeckLinkNotificationCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkNotificationCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT Notify (/* in */ BMDNotifications topic, /* in */ uint64_t param1, /* in */ uint64_t param2) = 0;
|
|
@@ -969,7 +1084,7 @@ public:
|
|
|
|
|
|
/* Interface IDeckLinkNotification - DeckLink Notification interface */
|
|
|
|
|
|
-class IDeckLinkNotification : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkNotification : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT Subscribe (/* in */ BMDNotifications topic, /* in */ IDeckLinkNotificationCallback *theCallback) = 0;
|
|
@@ -978,7 +1093,7 @@ public:
|
|
|
|
|
|
/* Interface IDeckLinkAttributes - DeckLink Attribute interface */
|
|
|
|
|
|
-class IDeckLinkAttributes : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkAttributes : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetFlag (/* in */ BMDDeckLinkAttributeID cfgID, /* out */ bool *value) = 0;
|
|
@@ -992,7 +1107,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkStatus - DeckLink Status interface */
|
|
|
|
|
|
-class IDeckLinkStatus : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkStatus : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT GetFlag (/* in */ BMDDeckLinkStatusID statusID, /* out */ bool *value) = 0;
|
|
@@ -1007,7 +1122,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkKeyer - DeckLink Keyer interface */
|
|
|
|
|
|
-class IDeckLinkKeyer : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkKeyer : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT Enable (/* in */ bool isExternal) = 0;
|
|
@@ -1022,7 +1137,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkVideoConversion - Created with CoCreateInstance(). */
|
|
|
|
|
|
-class IDeckLinkVideoConversion : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkVideoConversion : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT ConvertFrame (/* in */ IDeckLinkVideoFrame* srcFrame, /* in */ IDeckLinkVideoFrame* dstFrame) = 0;
|
|
@@ -1033,7 +1148,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkDeviceNotificationCallback - DeckLink device arrival/removal notification callbacks */
|
|
|
|
|
|
-class IDeckLinkDeviceNotificationCallback : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkDeviceNotificationCallback : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT DeckLinkDeviceArrived (/* in */ IDeckLink* deckLinkDevice) = 0;
|
|
@@ -1045,7 +1160,7 @@ protected:
|
|
|
|
|
|
/* Interface IDeckLinkDiscovery - DeckLink device discovery */
|
|
|
|
|
|
-class IDeckLinkDiscovery : public IUnknown
|
|
|
+class BMD_PUBLIC IDeckLinkDiscovery : public IUnknown
|
|
|
{
|
|
|
public:
|
|
|
virtual HRESULT InstallDeviceNotifications (/* in */ IDeckLinkDeviceNotificationCallback* deviceNotificationCallback) = 0;
|
|
@@ -1059,12 +1174,13 @@ protected:
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
- IDeckLinkIterator* CreateDeckLinkIteratorInstance (void);
|
|
|
- IDeckLinkDiscovery* CreateDeckLinkDiscoveryInstance (void);
|
|
|
- IDeckLinkAPIInformation* CreateDeckLinkAPIInformationInstance (void);
|
|
|
- IDeckLinkGLScreenPreviewHelper* CreateOpenGLScreenPreviewHelper (void);
|
|
|
- IDeckLinkCocoaScreenPreviewCallback* CreateCocoaScreenPreview (void* /* (NSView*) */ parentView);
|
|
|
- IDeckLinkVideoConversion* CreateVideoConversionInstance (void);
|
|
|
+ IDeckLinkIterator* BMD_PUBLIC CreateDeckLinkIteratorInstance (void);
|
|
|
+ IDeckLinkDiscovery* BMD_PUBLIC CreateDeckLinkDiscoveryInstance (void);
|
|
|
+ IDeckLinkAPIInformation* BMD_PUBLIC CreateDeckLinkAPIInformationInstance (void);
|
|
|
+ IDeckLinkGLScreenPreviewHelper* BMD_PUBLIC CreateOpenGLScreenPreviewHelper (void);
|
|
|
+ IDeckLinkCocoaScreenPreviewCallback* BMD_PUBLIC CreateCocoaScreenPreview (void* /* (NSView*) */ parentView);
|
|
|
+ IDeckLinkVideoConversion* BMD_PUBLIC CreateVideoConversionInstance (void);
|
|
|
+ IDeckLinkVideoFrameAncillaryPackets* BMD_PUBLIC CreateVideoFrameAncillaryPacketsInstance (void); // For use when creating a custom IDeckLinkVideoFrame without wrapping IDeckLinkOutput::CreateVideoFrame
|
|
|
|
|
|
}
|
|
|
|