decklink: Update Blackmagic SDK to 10.8.0
Updated to help support the newest cards, features, and options. Closes jp9000/obs-studio#627
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -55,13 +55,13 @@ library DeckLinkAPI
|
||||
|
||||
// Enumeration Mapping
|
||||
|
||||
cpp_quote("typedef unsigned long BMDFrameFlags;")
|
||||
cpp_quote("typedef unsigned long BMDVideoInputFlags;")
|
||||
cpp_quote("typedef unsigned long BMDVideoInputFormatChangedEvents;")
|
||||
cpp_quote("typedef unsigned long BMDDetectedVideoInputFormatFlags;")
|
||||
cpp_quote("typedef unsigned long BMDDeckLinkCapturePassthroughMode;")
|
||||
cpp_quote("typedef unsigned long BMDAnalogVideoFlags;")
|
||||
cpp_quote("typedef unsigned long BMDDeviceBusyState;")
|
||||
cpp_quote("typedef unsigned int BMDFrameFlags;")
|
||||
cpp_quote("typedef unsigned int BMDVideoInputFlags;")
|
||||
cpp_quote("typedef unsigned int BMDVideoInputFormatChangedEvents;")
|
||||
cpp_quote("typedef unsigned int BMDDetectedVideoInputFormatFlags;")
|
||||
cpp_quote("typedef unsigned int BMDDeckLinkCapturePassthroughMode;")
|
||||
cpp_quote("typedef unsigned int BMDAnalogVideoFlags;")
|
||||
cpp_quote("typedef unsigned int BMDDeviceBusyState;")
|
||||
cpp_quote("#if 0")
|
||||
typedef enum _BMDFrameFlags BMDFrameFlags;
|
||||
typedef enum _BMDVideoInputFlags BMDVideoInputFlags;
|
||||
@@ -82,11 +82,19 @@ typedef [v1_enum] enum _BMDVideoOutputFlags {
|
||||
bmdVideoOutputDualStream3D = 1 << 4
|
||||
} BMDVideoOutputFlags;
|
||||
|
||||
/* Enum BMDPacketType - Type of packet */
|
||||
|
||||
typedef [v1_enum] enum _BMDPacketType {
|
||||
bmdPacketTypeStreamInterruptedMarker = /* 'sint' */ 0x73696E74, // A packet of this type marks the time when a video stream was interrupted, for example by a disconnected cable
|
||||
bmdPacketTypeStreamData = /* 'sdat' */ 0x73646174 // Regular stream data
|
||||
} BMDPacketType;
|
||||
|
||||
/* Enum BMDFrameFlags - Frame flags */
|
||||
|
||||
[v1_enum] enum _BMDFrameFlags {
|
||||
bmdFrameFlagDefault = 0,
|
||||
bmdFrameFlagFlipVertical = 1 << 0,
|
||||
bmdFrameContainsHDRMetadata = 1 << 1,
|
||||
|
||||
/* Flags that are applicable only to instances of IDeckLinkVideoInputFrame */
|
||||
|
||||
@@ -120,6 +128,7 @@ typedef [v1_enum] enum _BMDVideoOutputFlags {
|
||||
/* Enum BMDDeckLinkCapturePassthroughMode - Enumerates whether the video output is electrically connected to the video input or if the clean switching mode is enabled */
|
||||
|
||||
[v1_enum] enum _BMDDeckLinkCapturePassthroughMode {
|
||||
bmdDeckLinkCapturePassthroughModeDisabled = /* 'pdis' */ 0x70646973,
|
||||
bmdDeckLinkCapturePassthroughModeDirect = /* 'pdir' */ 0x70646972,
|
||||
bmdDeckLinkCapturePassthroughModeCleanSwitch = /* 'pcln' */ 0x70636C6E
|
||||
};
|
||||
@@ -140,6 +149,12 @@ typedef [v1_enum] enum _BMDReferenceStatus {
|
||||
bmdReferenceLocked = 1 << 1
|
||||
} BMDReferenceStatus;
|
||||
|
||||
/* Enum BMDAudioFormat - Audio Format */
|
||||
|
||||
typedef [v1_enum] enum _BMDAudioFormat {
|
||||
bmdAudioFormatPCM = /* 'lpcm' */ 0x6C70636D // Linear signed PCM samples
|
||||
} BMDAudioFormat;
|
||||
|
||||
/* Enum BMDAudioSampleRate - Audio sample rates supported for output/input */
|
||||
|
||||
typedef [v1_enum] enum _BMDAudioSampleRate {
|
||||
@@ -241,10 +256,67 @@ typedef [v1_enum] enum _BMDVideo3DPackingFormat {
|
||||
|
||||
typedef [v1_enum] enum _BMDIdleVideoOutputOperation {
|
||||
bmdIdleVideoOutputBlack = /* 'blac' */ 0x626C6163,
|
||||
bmdIdleVideoOutputLastFrame = /* 'lafa' */ 0x6C616661,
|
||||
bmdIdleVideoOutputDesktop = /* 'desk' */ 0x6465736B
|
||||
bmdIdleVideoOutputLastFrame = /* 'lafa' */ 0x6C616661
|
||||
} BMDIdleVideoOutputOperation;
|
||||
|
||||
/* Enum BMDVideoEncoderFrameCodingMode - Video frame coding mode */
|
||||
|
||||
typedef [v1_enum] enum _BMDVideoEncoderFrameCodingMode {
|
||||
bmdVideoEncoderFrameCodingModeInter = /* 'inte' */ 0x696E7465,
|
||||
bmdVideoEncoderFrameCodingModeIntra = /* 'intr' */ 0x696E7472
|
||||
} BMDVideoEncoderFrameCodingMode;
|
||||
|
||||
/* Enum BMDDNxHRLevel - DNxHR Levels */
|
||||
|
||||
typedef [v1_enum] enum _BMDDNxHRLevel {
|
||||
bmdDNxHRLevelSQ = /* 'dnsq' */ 0x646E7371,
|
||||
bmdDNxHRLevelLB = /* 'dnlb' */ 0x646E6C62,
|
||||
bmdDNxHRLevelHQ = /* 'dnhq' */ 0x646E6871,
|
||||
bmdDNxHRLevelHQX = /* 'dhqx' */ 0x64687178,
|
||||
bmdDNxHRLevel444 = /* 'd444' */ 0x64343434
|
||||
} BMDDNxHRLevel;
|
||||
|
||||
/* Enum BMDLinkConfiguration - Video link configuration */
|
||||
|
||||
typedef [v1_enum] enum _BMDLinkConfiguration {
|
||||
bmdLinkConfigurationSingleLink = /* 'lcsl' */ 0x6C63736C,
|
||||
bmdLinkConfigurationDualLink = /* 'lcdl' */ 0x6C63646C,
|
||||
bmdLinkConfigurationQuadLink = /* 'lcql' */ 0x6C63716C
|
||||
} BMDLinkConfiguration;
|
||||
|
||||
/* Enum BMDDeviceInterface - Device interface type */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeviceInterface {
|
||||
bmdDeviceInterfacePCI = /* 'pci ' */ 0x70636920,
|
||||
bmdDeviceInterfaceUSB = /* 'usb ' */ 0x75736220,
|
||||
bmdDeviceInterfaceThunderbolt = /* 'thun' */ 0x7468756E
|
||||
} BMDDeviceInterface;
|
||||
|
||||
/* Enum BMDDeckLinkFrameMetadataID - DeckLink Frame Metadata ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkFrameMetadataID {
|
||||
bmdDeckLinkFrameMetadataHDRElectroOpticalTransferFunc = /* 'eotf' */ 0x656F7466, // EOTF in range 0-7 as per CEA 861.3
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesRedX = /* 'hdrx' */ 0x68647278, // Red display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesRedY = /* 'hdry' */ 0x68647279, // Red display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesGreenX = /* 'hdgx' */ 0x68646778, // Green display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesGreenY = /* 'hdgy' */ 0x68646779, // Green display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesBlueX = /* 'hdbx' */ 0x68646278, // Blue display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRDisplayPrimariesBlueY = /* 'hdby' */ 0x68646279, // Blue display primaries in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRWhitePointX = /* 'hdwx' */ 0x68647778, // White point in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRWhitePointY = /* 'hdwy' */ 0x68647779, // White point in range 0.0 - 1.0
|
||||
bmdDeckLinkFrameMetadataHDRMaxDisplayMasteringLuminance = /* 'hdml' */ 0x68646D6C, // Max display mastering luminance in range 1 cd/m2 - 65535 cd/m2
|
||||
bmdDeckLinkFrameMetadataHDRMinDisplayMasteringLuminance = /* 'hmil' */ 0x686D696C, // Min display mastering luminance in range 0.0001 cd/m2 - 6.5535 cd/m2
|
||||
bmdDeckLinkFrameMetadataHDRMaximumContentLightLevel = /* 'mcll' */ 0x6D636C6C, // Maximum Content Light Level in range 1 cd/m2 - 65535 cd/m2
|
||||
bmdDeckLinkFrameMetadataHDRMaximumFrameAverageLightLevel = /* 'fall' */ 0x66616C6C // Maximum Frame Average Light Level in range 1 cd/m2 - 65535 cd/m2
|
||||
} BMDDeckLinkFrameMetadataID;
|
||||
|
||||
/* Enum BMDDuplexMode - Duplex for configurable ports */
|
||||
|
||||
typedef [v1_enum] enum _BMDDuplexMode {
|
||||
bmdDuplexModeFull = /* 'fdup' */ 0x66647570,
|
||||
bmdDuplexModeHalf = /* 'hdup' */ 0x68647570
|
||||
} BMDDuplexMode;
|
||||
|
||||
/* Enum BMDDeckLinkAttributeID - DeckLink Attribute ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkAttributeID {
|
||||
@@ -261,10 +333,16 @@ typedef [v1_enum] enum _BMDDeckLinkAttributeID {
|
||||
BMDDeckLinkCanOnlyAdjustOverallVideoOutputGain = /* 'ovog' */ 0x6F766F67,
|
||||
BMDDeckLinkHasVideoInputAntiAliasingFilter = /* 'aafl' */ 0x6161666C,
|
||||
BMDDeckLinkHasBypass = /* 'byps' */ 0x62797073,
|
||||
BMDDeckLinkSupportsDesktopDisplay = /* 'extd' */ 0x65787464,
|
||||
BMDDeckLinkSupportsClockTimingAdjustment = /* 'ctad' */ 0x63746164,
|
||||
BMDDeckLinkSupportsFullDuplex = /* 'fdup' */ 0x66647570,
|
||||
BMDDeckLinkSupportsFullFrameReferenceInputTimingOffset = /* 'frin' */ 0x6672696E,
|
||||
BMDDeckLinkSupportsSMPTELevelAOutput = /* 'lvla' */ 0x6C766C61,
|
||||
BMDDeckLinkSupportsDualLinkSDI = /* 'sdls' */ 0x73646C73,
|
||||
BMDDeckLinkSupportsQuadLinkSDI = /* 'sqls' */ 0x73716C73,
|
||||
BMDDeckLinkSupportsIdleOutput = /* 'idou' */ 0x69646F75,
|
||||
BMDDeckLinkHasLTCTimecodeInput = /* 'hltc' */ 0x686C7463,
|
||||
BMDDeckLinkSupportsDuplexModeConfiguration = /* 'dupx' */ 0x64757078,
|
||||
BMDDeckLinkSupportsHDRMetadata = /* 'hdrm' */ 0x6864726D,
|
||||
|
||||
/* Integers */
|
||||
|
||||
@@ -273,13 +351,20 @@ typedef [v1_enum] enum _BMDDeckLinkAttributeID {
|
||||
BMDDeckLinkNumberOfSubDevices = /* 'nsbd' */ 0x6E736264,
|
||||
BMDDeckLinkSubDeviceIndex = /* 'subi' */ 0x73756269,
|
||||
BMDDeckLinkPersistentID = /* 'peid' */ 0x70656964,
|
||||
BMDDeckLinkDeviceGroupID = /* 'dgid' */ 0x64676964,
|
||||
BMDDeckLinkTopologicalID = /* 'toid' */ 0x746F6964,
|
||||
BMDDeckLinkVideoOutputConnections = /* 'vocn' */ 0x766F636E,
|
||||
BMDDeckLinkVideoInputConnections = /* 'vicn' */ 0x7669636E,
|
||||
BMDDeckLinkAudioOutputConnections = /* 'aocn' */ 0x616F636E,
|
||||
BMDDeckLinkAudioInputConnections = /* 'aicn' */ 0x6169636E,
|
||||
BMDDeckLinkDeviceBusyState = /* 'dbst' */ 0x64627374,
|
||||
BMDDeckLinkVideoIOSupport = /* 'vios' */ 0x76696F73, // Returns a BMDVideoIOSupport bit field
|
||||
BMDDeckLinkDeckControlConnections = /* 'dccn' */ 0x6463636E,
|
||||
BMDDeckLinkDeviceInterface = /* 'dbus' */ 0x64627573, // Returns a BMDDeviceInterface
|
||||
BMDDeckLinkAudioInputRCAChannelCount = /* 'airc' */ 0x61697263,
|
||||
BMDDeckLinkAudioInputXLRChannelCount = /* 'aixc' */ 0x61697863,
|
||||
BMDDeckLinkAudioOutputRCAChannelCount = /* 'aorc' */ 0x616F7263,
|
||||
BMDDeckLinkAudioOutputXLRChannelCount = /* 'aoxc' */ 0x616F7863,
|
||||
BMDDeckLinkPairedDevicePersistentID = /* 'ppid' */ 0x70706964,
|
||||
|
||||
/* Floats */
|
||||
|
||||
@@ -287,10 +372,16 @@ typedef [v1_enum] enum _BMDDeckLinkAttributeID {
|
||||
BMDDeckLinkVideoInputGainMaximum = /* 'vigx' */ 0x76696778,
|
||||
BMDDeckLinkVideoOutputGainMinimum = /* 'vogm' */ 0x766F676D,
|
||||
BMDDeckLinkVideoOutputGainMaximum = /* 'vogx' */ 0x766F6778,
|
||||
BMDDeckLinkMicrophoneInputGainMinimum = /* 'migm' */ 0x6D69676D,
|
||||
BMDDeckLinkMicrophoneInputGainMaximum = /* 'migx' */ 0x6D696778,
|
||||
|
||||
/* Strings */
|
||||
|
||||
BMDDeckLinkSerialPortDeviceName = /* 'slpn' */ 0x736C706E
|
||||
BMDDeckLinkSerialPortDeviceName = /* 'slpn' */ 0x736C706E,
|
||||
BMDDeckLinkVendorName = /* 'vndr' */ 0x766E6472,
|
||||
BMDDeckLinkDisplayName = /* 'dspn' */ 0x6473706E,
|
||||
BMDDeckLinkModelName = /* 'mdln' */ 0x6D646C6E,
|
||||
BMDDeckLinkDeviceHandle = /* 'devh' */ 0x64657668
|
||||
} BMDDeckLinkAttributeID;
|
||||
|
||||
/* Enum BMDDeckLinkAPIInformationID - DeckLinkAPI information ID */
|
||||
@@ -299,6 +390,49 @@ typedef [v1_enum] enum _BMDDeckLinkAPIInformationID {
|
||||
BMDDeckLinkAPIVersion = /* 'vers' */ 0x76657273
|
||||
} BMDDeckLinkAPIInformationID;
|
||||
|
||||
/* Enum BMDDeckLinkStatusID - DeckLink Status ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkStatusID {
|
||||
|
||||
/* Integers */
|
||||
|
||||
bmdDeckLinkStatusDetectedVideoInputMode = /* 'dvim' */ 0x6476696D,
|
||||
bmdDeckLinkStatusDetectedVideoInputFlags = /* 'dvif' */ 0x64766966,
|
||||
bmdDeckLinkStatusCurrentVideoInputMode = /* 'cvim' */ 0x6376696D,
|
||||
bmdDeckLinkStatusCurrentVideoInputPixelFormat = /* 'cvip' */ 0x63766970,
|
||||
bmdDeckLinkStatusCurrentVideoInputFlags = /* 'cvif' */ 0x63766966,
|
||||
bmdDeckLinkStatusCurrentVideoOutputMode = /* 'cvom' */ 0x63766F6D,
|
||||
bmdDeckLinkStatusCurrentVideoOutputFlags = /* 'cvof' */ 0x63766F66,
|
||||
bmdDeckLinkStatusPCIExpressLinkWidth = /* 'pwid' */ 0x70776964,
|
||||
bmdDeckLinkStatusPCIExpressLinkSpeed = /* 'plnk' */ 0x706C6E6B,
|
||||
bmdDeckLinkStatusLastVideoOutputPixelFormat = /* 'opix' */ 0x6F706978,
|
||||
bmdDeckLinkStatusReferenceSignalMode = /* 'refm' */ 0x7265666D,
|
||||
bmdDeckLinkStatusReferenceSignalFlags = /* 'reff' */ 0x72656666,
|
||||
bmdDeckLinkStatusDuplexMode = /* 'dupx' */ 0x64757078,
|
||||
bmdDeckLinkStatusBusy = /* 'busy' */ 0x62757379,
|
||||
|
||||
/* Flags */
|
||||
|
||||
bmdDeckLinkStatusVideoInputSignalLocked = /* 'visl' */ 0x7669736C,
|
||||
bmdDeckLinkStatusReferenceSignalLocked = /* 'refl' */ 0x7265666C
|
||||
} BMDDeckLinkStatusID;
|
||||
|
||||
/* Enum BMDDeckLinkVideoStatusFlags - */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkVideoStatusFlags {
|
||||
bmdDeckLinkVideoStatusPsF = 1 << 0,
|
||||
bmdDeckLinkVideoStatusDualStream3D = 1 << 1
|
||||
} BMDDeckLinkVideoStatusFlags;
|
||||
|
||||
/* Enum BMDDuplexStatus - Duplex status of the device */
|
||||
|
||||
typedef [v1_enum] enum _BMDDuplexStatus {
|
||||
bmdDuplexStatusFullDuplex = /* 'fdup' */ 0x66647570,
|
||||
bmdDuplexStatusHalfDuplex = /* 'hdup' */ 0x68647570,
|
||||
bmdDuplexStatusSimplex = /* 'splx' */ 0x73706C78,
|
||||
bmdDuplexStatusInactive = /* 'inac' */ 0x696E6163
|
||||
} BMDDuplexStatus;
|
||||
|
||||
/* Enum BMDDeviceBusyState - Current device busy state */
|
||||
|
||||
[v1_enum] enum _BMDDeviceBusyState {
|
||||
@@ -327,24 +461,32 @@ typedef [v1_enum] enum _BMD3DPreviewFormat {
|
||||
/* Enum BMDNotifications - Events that can be subscribed through IDeckLinkNotification */
|
||||
|
||||
typedef [v1_enum] enum _BMDNotifications {
|
||||
bmdPreferencesChanged = /* 'pref' */ 0x70726566
|
||||
bmdPreferencesChanged = /* 'pref' */ 0x70726566,
|
||||
bmdStatusChanged = /* 'stat' */ 0x73746174
|
||||
} BMDNotifications;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkVideoOutputCallback;
|
||||
interface IDeckLinkInputCallback;
|
||||
interface IDeckLinkEncoderInputCallback;
|
||||
interface IDeckLinkMemoryAllocator;
|
||||
interface IDeckLinkAudioOutputCallback;
|
||||
interface IDeckLinkIterator;
|
||||
interface IDeckLinkAPIInformation;
|
||||
interface IDeckLinkOutput;
|
||||
interface IDeckLinkInput;
|
||||
interface IDeckLinkEncoderInput;
|
||||
interface IDeckLinkVideoFrame;
|
||||
interface IDeckLinkMutableVideoFrame;
|
||||
interface IDeckLinkVideoFrame3DExtensions;
|
||||
interface IDeckLinkVideoFrameMetadataExtensions;
|
||||
interface IDeckLinkVideoInputFrame;
|
||||
interface IDeckLinkVideoFrameAncillary;
|
||||
interface IDeckLinkEncoderPacket;
|
||||
interface IDeckLinkEncoderVideoPacket;
|
||||
interface IDeckLinkEncoderAudioPacket;
|
||||
interface IDeckLinkH265NALPacket;
|
||||
interface IDeckLinkAudioInputPacket;
|
||||
interface IDeckLinkScreenPreviewCallback;
|
||||
interface IDeckLinkGLScreenPreviewHelper;
|
||||
@@ -352,6 +494,7 @@ interface IDeckLinkDX9ScreenPreviewHelper;
|
||||
interface IDeckLinkNotificationCallback;
|
||||
interface IDeckLinkNotification;
|
||||
interface IDeckLinkAttributes;
|
||||
interface IDeckLinkStatus;
|
||||
interface IDeckLinkKeyer;
|
||||
interface IDeckLinkVideoConversion;
|
||||
interface IDeckLinkDeviceNotificationCallback;
|
||||
@@ -381,6 +524,19 @@ interface IDeckLinkDiscovery;
|
||||
HRESULT VideoInputFrameArrived([in] IDeckLinkVideoInputFrame* videoFrame, [in] IDeckLinkAudioInputPacket* audioPacket);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderInputCallback - Frame arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(ACF13E61-F4A0-4974-A6A7-59AFF6268B31),
|
||||
helpstring("Frame arrival callback.")
|
||||
] interface IDeckLinkEncoderInputCallback : IUnknown
|
||||
{
|
||||
HRESULT VideoInputSignalChanged([in] BMDVideoInputFormatChangedEvents notificationEvents, [in] IDeckLinkDisplayMode *newDisplayMode, [in] BMDDetectedVideoInputFormatFlags detectedSignalFlags);
|
||||
HRESULT VideoPacketArrived([in] IDeckLinkEncoderVideoPacket* videoPacket);
|
||||
HRESULT AudioPacketArrived([in] IDeckLinkEncoderAudioPacket* audioPacket);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkMemoryAllocator - Memory allocator for video frames. */
|
||||
|
||||
[
|
||||
@@ -390,7 +546,7 @@ interface IDeckLinkDiscovery;
|
||||
helpstring("Memory allocator for video frames.")
|
||||
] interface IDeckLinkMemoryAllocator : IUnknown
|
||||
{
|
||||
HRESULT AllocateBuffer([in] unsigned long bufferSize, [out] void **allocatedBuffer);
|
||||
HRESULT AllocateBuffer([in] unsigned int bufferSize, [out] void **allocatedBuffer);
|
||||
HRESULT ReleaseBuffer([in] void *buffer);
|
||||
|
||||
HRESULT Commit(void);
|
||||
@@ -454,26 +610,26 @@ interface IDeckLinkDiscovery;
|
||||
HRESULT DisableVideoOutput(void);
|
||||
|
||||
HRESULT SetVideoOutputFrameMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
HRESULT CreateVideoFrame([in] long width, [in] long height, [in] long rowBytes, [in] BMDPixelFormat pixelFormat, [in] BMDFrameFlags flags, [out] IDeckLinkMutableVideoFrame **outFrame);
|
||||
HRESULT CreateVideoFrame([in] int width, [in] int height, [in] int rowBytes, [in] BMDPixelFormat pixelFormat, [in] BMDFrameFlags flags, [out] IDeckLinkMutableVideoFrame **outFrame);
|
||||
HRESULT CreateAncillaryData([in] BMDPixelFormat pixelFormat, [out] IDeckLinkVideoFrameAncillary **outBuffer);
|
||||
|
||||
HRESULT DisplayVideoFrameSync([in] IDeckLinkVideoFrame *theFrame);
|
||||
HRESULT ScheduleVideoFrame([in] IDeckLinkVideoFrame *theFrame, [in] BMDTimeValue displayTime, [in] BMDTimeValue displayDuration, [in] BMDTimeScale timeScale);
|
||||
HRESULT SetScheduledFrameCompletionCallback([in] IDeckLinkVideoOutputCallback *theCallback);
|
||||
HRESULT GetBufferedVideoFrameCount([out] unsigned long *bufferedFrameCount);
|
||||
HRESULT GetBufferedVideoFrameCount([out] unsigned int *bufferedFrameCount);
|
||||
|
||||
/* Audio Output */
|
||||
|
||||
HRESULT EnableAudioOutput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned long channelCount, [in] BMDAudioOutputStreamType streamType);
|
||||
HRESULT EnableAudioOutput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned int channelCount, [in] BMDAudioOutputStreamType streamType);
|
||||
HRESULT DisableAudioOutput(void);
|
||||
|
||||
HRESULT WriteAudioSamplesSync([in] void *buffer, [in] unsigned long sampleFrameCount, [out] unsigned long *sampleFramesWritten);
|
||||
HRESULT WriteAudioSamplesSync([in] void *buffer, [in] unsigned int sampleFrameCount, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT BeginAudioPreroll(void);
|
||||
HRESULT EndAudioPreroll(void);
|
||||
HRESULT ScheduleAudioSamples([in] void *buffer, [in] unsigned long sampleFrameCount, [in] BMDTimeValue streamTime, [in] BMDTimeScale timeScale, [out] unsigned long *sampleFramesWritten);
|
||||
HRESULT ScheduleAudioSamples([in] void *buffer, [in] unsigned int sampleFrameCount, [in] BMDTimeValue streamTime, [in] BMDTimeScale timeScale, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT GetBufferedAudioSampleFrameCount([out] unsigned long *bufferedSampleFrameCount);
|
||||
HRESULT GetBufferedAudioSampleFrameCount([out] unsigned int *bufferedSampleFrameCount);
|
||||
HRESULT FlushBufferedAudioSamples(void);
|
||||
|
||||
HRESULT SetAudioCallback([in] IDeckLinkAudioOutputCallback *theCallback);
|
||||
@@ -509,14 +665,14 @@ interface IDeckLinkDiscovery;
|
||||
|
||||
HRESULT EnableVideoInput([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput(void);
|
||||
HRESULT GetAvailableVideoFrameCount([out] unsigned long *availableFrameCount);
|
||||
HRESULT GetAvailableVideoFrameCount([out] unsigned int *availableFrameCount);
|
||||
HRESULT SetVideoInputFrameMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
|
||||
/* Audio Input */
|
||||
|
||||
HRESULT EnableAudioInput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned long channelCount);
|
||||
HRESULT EnableAudioInput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned int channelCount);
|
||||
HRESULT DisableAudioInput(void);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned long *availableSampleFrameCount);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned int *availableSampleFrameCount);
|
||||
|
||||
/* Input Control */
|
||||
|
||||
@@ -531,6 +687,43 @@ interface IDeckLinkDiscovery;
|
||||
HRESULT GetHardwareReferenceClock([in] BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderInput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(270587DA-6B7D-42E7-A1F0-6D853F581185),
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkEncoderInput : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoInputFlags flags, [out] BMDDisplayModeSupport *result, [out] IDeckLinkDisplayMode **resultDisplayMode);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator **iterator);
|
||||
|
||||
/* Video Input */
|
||||
|
||||
HRESULT EnableVideoInput([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput(void);
|
||||
HRESULT GetAvailablePacketsCount([out] unsigned int *availablePacketsCount);
|
||||
HRESULT SetMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
|
||||
/* Audio Input */
|
||||
|
||||
HRESULT EnableAudioInput([in] BMDAudioFormat audioFormat, [in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned int channelCount);
|
||||
HRESULT DisableAudioInput(void);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned int *availableSampleFrameCount);
|
||||
|
||||
/* Input Control */
|
||||
|
||||
HRESULT StartStreams(void);
|
||||
HRESULT StopStreams(void);
|
||||
HRESULT PauseStreams(void);
|
||||
HRESULT FlushStreams(void);
|
||||
HRESULT SetCallback([in] IDeckLinkEncoderInputCallback *theCallback);
|
||||
|
||||
/* Hardware Timing */
|
||||
|
||||
HRESULT GetHardwareReferenceClock([in] BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkVideoFrame - Interface to encapsulate a video frame; can be caller-implemented. */
|
||||
|
||||
[
|
||||
@@ -581,6 +774,21 @@ interface IDeckLinkDiscovery;
|
||||
HRESULT GetFrameForRightEye([out] IDeckLinkVideoFrame* *rightEyeFrame);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkVideoFrameMetadataExtensions - Optional interface implemented on IDeckLinkVideoFrame to support frame metadata such as HDMI HDR information */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(D5973DC9-6432-46D0-8F0B-2496F8A1238F),
|
||||
local,
|
||||
helpstring("Optional interface implemented on IDeckLinkVideoFrame to support frame metadata such as HDMI HDR information")
|
||||
] interface IDeckLinkVideoFrameMetadataExtensions : IUnknown
|
||||
{
|
||||
HRESULT GetInt([in] BMDDeckLinkFrameMetadataID metadataID, [out] LONGLONG *value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkFrameMetadataID metadataID, [out] double *value);
|
||||
HRESULT GetFlag([in] BMDDeckLinkFrameMetadataID metadataID, [out] BOOL* value);
|
||||
HRESULT GetString([in] BMDDeckLinkFrameMetadataID metadataID, [out] BSTR *value);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
||||
|
||||
[
|
||||
@@ -604,11 +812,67 @@ interface IDeckLinkDiscovery;
|
||||
] interface IDeckLinkVideoFrameAncillary : IUnknown
|
||||
{
|
||||
|
||||
HRESULT GetBufferForVerticalBlankingLine([in] unsigned long lineNumber, [out] void **buffer);
|
||||
HRESULT GetBufferForVerticalBlankingLine([in] unsigned int lineNumber, [out] void **buffer);
|
||||
BMDPixelFormat GetPixelFormat(void);
|
||||
BMDDisplayMode GetDisplayMode(void);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderPacket - Interface to encapsulate an encoded packet. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(B693F36C-316E-4AF1-B6C2-F389A4BCA620),
|
||||
local,
|
||||
helpstring("Interface to encapsulate an encoded packet.")
|
||||
] interface IDeckLinkEncoderPacket : IUnknown
|
||||
{
|
||||
HRESULT GetBytes([out] void **buffer);
|
||||
long GetSize(void);
|
||||
HRESULT GetStreamTime([out] BMDTimeValue *frameTime, [in] BMDTimeScale timeScale);
|
||||
BMDPacketType GetPacketType(void);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderVideoPacket - Provided by the IDeckLinkEncoderInput video packet arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(4E7FD944-E8C7-4EAC-B8C0-7B77F80F5AE0),
|
||||
local,
|
||||
helpstring("Provided by the IDeckLinkEncoderInput video packet arrival callback.")
|
||||
] interface IDeckLinkEncoderVideoPacket : IDeckLinkEncoderPacket
|
||||
{
|
||||
BMDPixelFormat GetPixelFormat(void);
|
||||
HRESULT GetHardwareReferenceTimestamp([in] BMDTimeScale timeScale, [out] BMDTimeValue *frameTime, [out] BMDTimeValue *frameDuration);
|
||||
|
||||
HRESULT GetTimecode([in] BMDTimecodeFormat format, [out] IDeckLinkTimecode **timecode);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderAudioPacket - Provided by the IDeckLinkEncoderInput audio packet arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(49E8EDC8-693B-4E14-8EF6-12C658F5A07A),
|
||||
local,
|
||||
helpstring("Provided by the IDeckLinkEncoderInput audio packet arrival callback.")
|
||||
] interface IDeckLinkEncoderAudioPacket : IDeckLinkEncoderPacket
|
||||
{
|
||||
BMDAudioFormat GetAudioFormat(void);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkH265NALPacket - Obtained through QueryInterface() on an IDeckLinkEncoderVideoPacket object */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(639C8E0B-68D5-4BDE-A6D4-95F3AEAFF2E7),
|
||||
local,
|
||||
helpstring("Obtained through QueryInterface() on an IDeckLinkEncoderVideoPacket object")
|
||||
] interface IDeckLinkH265NALPacket : IDeckLinkEncoderVideoPacket
|
||||
{
|
||||
HRESULT GetUnitType([out] unsigned char *unitType);
|
||||
HRESULT GetBytesNoPrefix([out] void **buffer);
|
||||
long GetSizeNoPrefix(void);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkAudioInputPacket - Provided by the IDeckLinkInput callback. */
|
||||
|
||||
[
|
||||
@@ -708,6 +972,22 @@ interface IDeckLinkDiscovery;
|
||||
HRESULT GetString([in] BMDDeckLinkAttributeID cfgID, [out] BSTR *value);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkStatus - DeckLink Status interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(5F558200-4028-49BC-BEAC-DB3FA4A96E46),
|
||||
local,
|
||||
helpstring("DeckLink Status interface")
|
||||
] interface IDeckLinkStatus : IUnknown
|
||||
{
|
||||
HRESULT GetFlag([in] BMDDeckLinkStatusID statusID, [out] BOOL *value);
|
||||
HRESULT GetInt([in] BMDDeckLinkStatusID statusID, [out] LONGLONG *value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkStatusID statusID, [out] double *value);
|
||||
HRESULT GetString([in] BMDDeckLinkStatusID statusID, [out] BSTR *value);
|
||||
HRESULT GetBytes([in] BMDDeckLinkStatusID statusID, [out] void *buffer, [in, out] unsigned int *bufferSize);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkKeyer - DeckLink Keyer interface */
|
||||
|
||||
[
|
||||
@@ -719,8 +999,8 @@ interface IDeckLinkDiscovery;
|
||||
{
|
||||
HRESULT Enable([in] BOOL isExternal);
|
||||
HRESULT SetLevel([in] unsigned char level);
|
||||
HRESULT RampUp([in] unsigned long numberOfFrames);
|
||||
HRESULT RampDown([in] unsigned long numberOfFrames);
|
||||
HRESULT RampUp([in] unsigned int numberOfFrames);
|
||||
HRESULT RampDown([in] unsigned int numberOfFrames);
|
||||
HRESULT Disable(void);
|
||||
};
|
||||
|
||||
@@ -762,6 +1042,8 @@ interface IDeckLinkDiscovery;
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
[
|
||||
uuid(1F2E109A-8F4F-49E4-9203-135595CB6FA5),
|
||||
helpstring("CDeckLinkIterator Class")
|
||||
@@ -810,4 +1092,18 @@ interface IDeckLinkDiscovery;
|
||||
[default] interface IDeckLinkDiscovery;
|
||||
};
|
||||
|
||||
|
||||
// import deprecated interfaces
|
||||
#include "DeckLinkAPI_v10_6.idl"
|
||||
#include "DeckLinkAPI_v10_5.idl"
|
||||
#include "DeckLinkAPI_v10_4.idl"
|
||||
#include "DeckLinkAPI_v10_2.idl"
|
||||
#include "DeckLinkAPI_v9_9.idl"
|
||||
#include "DeckLinkAPI_v9_2.idl"
|
||||
#include "DeckLinkAPI_v8_1.idl"
|
||||
#include "DeckLinkAPI_v8_0.idl"
|
||||
#include "DeckLinkAPI_v7_9.idl"
|
||||
#include "DeckLinkAPI_v7_6.idl"
|
||||
#include "DeckLinkAPI_v7_3.idl"
|
||||
#include "DeckLinkAPI_v7_1.idl"
|
||||
};
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -59,6 +59,7 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigHDMI3DPackingFormat = /* '3dpf' */ 0x33647066,
|
||||
bmdDeckLinkConfigBypass = /* 'byps' */ 0x62797073,
|
||||
bmdDeckLinkConfigClockTimingAdjustment = /* 'ctad' */ 0x63746164,
|
||||
bmdDeckLinkConfigDuplexMode = /* 'dupx' */ 0x64757078,
|
||||
|
||||
/* Audio Input/Output Flags */
|
||||
|
||||
@@ -69,9 +70,10 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigFieldFlickerRemoval = /* 'fdfr' */ 0x66646672,
|
||||
bmdDeckLinkConfigHD1080p24ToHD1080i5994Conversion = /* 'to59' */ 0x746F3539,
|
||||
bmdDeckLinkConfig444SDIVideoOutput = /* '444o' */ 0x3434346F,
|
||||
bmdDeckLinkConfigSingleLinkVideoOutput = /* 'sglo' */ 0x73676C6F,
|
||||
bmdDeckLinkConfigBlackVideoOutputDuringCapture = /* 'bvoc' */ 0x62766F63,
|
||||
bmdDeckLinkConfigLowLatencyVideoOutput = /* 'llvo' */ 0x6C6C766F,
|
||||
bmdDeckLinkConfigDownConversionOnAllAnalogOutput = /* 'caao' */ 0x6361616F,
|
||||
bmdDeckLinkConfigSMPTELevelAOutput = /* 'smta' */ 0x736D7461,
|
||||
|
||||
/* Video Output Integers */
|
||||
|
||||
@@ -82,6 +84,7 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigVideoOutputIdleOperation = /* 'voio' */ 0x766F696F,
|
||||
bmdDeckLinkConfigDefaultVideoOutputMode = /* 'dvom' */ 0x64766F6D,
|
||||
bmdDeckLinkConfigDefaultVideoOutputModeFlags = /* 'dvof' */ 0x64766F66,
|
||||
bmdDeckLinkConfigSDIOutputLinkConfiguration = /* 'solc' */ 0x736F6C63,
|
||||
|
||||
/* Video Output Floats */
|
||||
|
||||
@@ -97,6 +100,7 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
|
||||
bmdDeckLinkConfigVideoInputScanning = /* 'visc' */ 0x76697363, // Applicable to H264 Pro Recorder only
|
||||
bmdDeckLinkConfigUseDedicatedLTCInput = /* 'dltc' */ 0x646C7463, // Use timecode from LTC input instead of SDI stream
|
||||
bmdDeckLinkConfigSDIInput3DPayloadOverride = /* '3dds' */ 0x33646473,
|
||||
|
||||
/* Video Input Integers */
|
||||
|
||||
@@ -119,6 +123,10 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigVideoInputSVideoLumaGain = /* 'islg' */ 0x69736C67,
|
||||
bmdDeckLinkConfigVideoInputSVideoChromaGain = /* 'iscg' */ 0x69736367,
|
||||
|
||||
/* Audio Input Flags */
|
||||
|
||||
bmdDeckLinkConfigMicrophonePhantomPower = /* 'mphp' */ 0x6D706870,
|
||||
|
||||
/* Audio Input Integers */
|
||||
|
||||
bmdDeckLinkConfigAudioInputConnection = /* 'aicn' */ 0x6169636E,
|
||||
@@ -130,6 +138,7 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigAnalogAudioInputScaleChannel3 = /* 'ais3' */ 0x61697333,
|
||||
bmdDeckLinkConfigAnalogAudioInputScaleChannel4 = /* 'ais4' */ 0x61697334,
|
||||
bmdDeckLinkConfigDigitalAudioInputScale = /* 'dais' */ 0x64616973,
|
||||
bmdDeckLinkConfigMicrophoneInputGain = /* 'micg' */ 0x6D696367,
|
||||
|
||||
/* Audio Output Integers */
|
||||
|
||||
@@ -141,18 +150,60 @@ typedef [v1_enum] enum _BMDDeckLinkConfigurationID {
|
||||
bmdDeckLinkConfigAnalogAudioOutputScaleChannel2 = /* 'aos2' */ 0x616F7332,
|
||||
bmdDeckLinkConfigAnalogAudioOutputScaleChannel3 = /* 'aos3' */ 0x616F7333,
|
||||
bmdDeckLinkConfigAnalogAudioOutputScaleChannel4 = /* 'aos4' */ 0x616F7334,
|
||||
bmdDeckLinkConfigDigitalAudioOutputScale = /* 'daos' */ 0x64616F73
|
||||
bmdDeckLinkConfigDigitalAudioOutputScale = /* 'daos' */ 0x64616F73,
|
||||
bmdDeckLinkConfigHeadphoneVolume = /* 'hvol' */ 0x68766F6C,
|
||||
|
||||
/* Device Information Strings */
|
||||
|
||||
bmdDeckLinkConfigDeviceInformationLabel = /* 'dila' */ 0x64696C61,
|
||||
bmdDeckLinkConfigDeviceInformationSerialNumber = /* 'disn' */ 0x6469736E,
|
||||
bmdDeckLinkConfigDeviceInformationCompany = /* 'dico' */ 0x6469636F,
|
||||
bmdDeckLinkConfigDeviceInformationPhone = /* 'diph' */ 0x64697068,
|
||||
bmdDeckLinkConfigDeviceInformationEmail = /* 'diem' */ 0x6469656D,
|
||||
bmdDeckLinkConfigDeviceInformationDate = /* 'dida' */ 0x64696461,
|
||||
|
||||
/* Deck Control Integers */
|
||||
|
||||
bmdDeckLinkConfigDeckControlConnection = /* 'dcco' */ 0x6463636F
|
||||
} BMDDeckLinkConfigurationID;
|
||||
|
||||
/* Enum BMDDeckLinkEncoderConfigurationID - DeckLink Encoder Configuration ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkEncoderConfigurationID {
|
||||
|
||||
/* Video Encoder Integers */
|
||||
|
||||
bmdDeckLinkEncoderConfigPreferredBitDepth = /* 'epbr' */ 0x65706272,
|
||||
bmdDeckLinkEncoderConfigFrameCodingMode = /* 'efcm' */ 0x6566636D,
|
||||
|
||||
/* HEVC/H.265 Encoder Integers */
|
||||
|
||||
bmdDeckLinkEncoderConfigH265TargetBitrate = /* 'htbr' */ 0x68746272,
|
||||
|
||||
/* DNxHR/DNxHD Compression ID */
|
||||
|
||||
bmdDeckLinkEncoderConfigDNxHRCompressionID = /* 'dcid' */ 0x64636964,
|
||||
|
||||
/* DNxHR/DNxHD Level */
|
||||
|
||||
bmdDeckLinkEncoderConfigDNxHRLevel = /* 'dlev' */ 0x646C6576,
|
||||
|
||||
/* Encoded Sample Decriptions */
|
||||
|
||||
bmdDeckLinkEncoderConfigMPEG4SampleDescription = /* 'stsE' */ 0x73747345, // Full MPEG4 sample description (aka SampleEntry of an 'stsd' atom-box). Useful for MediaFoundation, QuickTime, MKV and more
|
||||
bmdDeckLinkEncoderConfigMPEG4CodecSpecificDesc = /* 'esds' */ 0x65736473 // Sample description extensions only (atom stream, each with size and fourCC header). Useful for AVFoundation, VideoToolbox, MKV and more
|
||||
} BMDDeckLinkEncoderConfigurationID;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkConfiguration;
|
||||
interface IDeckLinkEncoderConfiguration;
|
||||
|
||||
/* Interface IDeckLinkConfiguration - DeckLink Configuration interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(1E69FCF6-4203-4936-8076-2A9F4CFD50CB),
|
||||
uuid(CB71734A-FE37-4E8D-8E13-802133A1C3F2),
|
||||
local,
|
||||
helpstring("DeckLink Configuration interface")
|
||||
] interface IDeckLinkConfiguration : IUnknown
|
||||
@@ -168,4 +219,28 @@ interface IDeckLinkConfiguration;
|
||||
HRESULT WriteConfigurationToPreferences(void);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkEncoderConfiguration - DeckLink Encoder Configuration interface. Obtained from IDeckLinkEncoderInput */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(138050E5-C60A-4552-BF3F-0F358049327E),
|
||||
local,
|
||||
helpstring("DeckLink Encoder Configuration interface. Obtained from IDeckLinkEncoderInput")
|
||||
] interface IDeckLinkEncoderConfiguration : IUnknown
|
||||
{
|
||||
HRESULT SetFlag([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] BOOL value);
|
||||
HRESULT GetFlag([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] BOOL *value);
|
||||
HRESULT SetInt([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] LONGLONG value);
|
||||
HRESULT GetInt([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] LONGLONG *value);
|
||||
HRESULT SetFloat([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] double value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] double *value);
|
||||
HRESULT SetString([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] BSTR value);
|
||||
HRESULT GetString([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] BSTR *value);
|
||||
HRESULT GetBytes([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] void *buffer /* optional */, [in, out] unsigned int *bufferSize);
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -39,8 +39,8 @@
|
||||
|
||||
// Enumeration Mapping
|
||||
|
||||
cpp_quote("typedef unsigned long BMDDeckControlStatusFlags;")
|
||||
cpp_quote("typedef unsigned long BMDDeckControlExportModeOpsFlags;")
|
||||
cpp_quote("typedef unsigned int BMDDeckControlStatusFlags;")
|
||||
cpp_quote("typedef unsigned int BMDDeckControlExportModeOpsFlags;")
|
||||
cpp_quote("#if 0")
|
||||
typedef enum _BMDDeckControlStatusFlags BMDDeckControlStatusFlags;
|
||||
typedef enum _BMDDeckControlExportModeOpsFlags BMDDeckControlExportModeOpsFlags;
|
||||
@@ -153,7 +153,7 @@ interface IDeckLinkDeckControl;
|
||||
HRESULT TimecodeUpdate([in] BMDTimecodeBCD currentTimecode);
|
||||
HRESULT VTRControlStateChanged([in] BMDDeckControlVTRControlState newState, [in] BMDDeckControlError error);
|
||||
HRESULT DeckControlEventReceived([in] BMDDeckControlEvent event, [in] BMDDeckControlError error);
|
||||
HRESULT DeckControlStatusChanged([in] BMDDeckControlStatusFlags flags, [in] unsigned long mask);
|
||||
HRESULT DeckControlStatusChanged([in] BMDDeckControlStatusFlags flags, [in] unsigned int mask);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkDeckControl - Deck Control main interface */
|
||||
@@ -168,7 +168,7 @@ interface IDeckLinkDeckControl;
|
||||
HRESULT Close([in] BOOL standbyOn);
|
||||
HRESULT GetCurrentState([out] BMDDeckControlMode *mode, [out] BMDDeckControlVTRControlState *vtrControlState, [out] BMDDeckControlStatusFlags *flags);
|
||||
HRESULT SetStandby([in] BOOL standbyOn);
|
||||
HRESULT SendCommand([in] unsigned char *inBuffer, [in] unsigned long inBufferSize, [out] unsigned char *outBuffer, [out] unsigned long *outDataSize, [in] unsigned long outBufferSize, [out] BMDDeckControlError *error);
|
||||
HRESULT SendCommand([in] unsigned char *inBuffer, [in] unsigned int inBufferSize, [out] unsigned char *outBuffer, [out] unsigned int *outDataSize, [in] unsigned int outBufferSize, [out] BMDDeckControlError *error);
|
||||
HRESULT Play([out] BMDDeckControlError *error);
|
||||
HRESULT Stop([out] BMDDeckControlError *error);
|
||||
HRESULT TogglePlayStop([out] BMDDeckControlError *error);
|
||||
@@ -183,13 +183,13 @@ interface IDeckLinkDeckControl;
|
||||
HRESULT GetTimecodeString([out] BSTR *currentTimeCode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecode([out] IDeckLinkTimecode **currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecodeBCD([out] BMDTimecodeBCD *currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT SetPreroll([in] unsigned long prerollSeconds);
|
||||
HRESULT GetPreroll([out] unsigned long *prerollSeconds);
|
||||
HRESULT SetExportOffset([in] long exportOffsetFields);
|
||||
HRESULT GetExportOffset([out] long *exportOffsetFields);
|
||||
HRESULT GetManualExportOffset([out] long *deckManualExportOffsetFields);
|
||||
HRESULT SetCaptureOffset([in] long captureOffsetFields);
|
||||
HRESULT GetCaptureOffset([out] long *captureOffsetFields);
|
||||
HRESULT SetPreroll([in] unsigned int prerollSeconds);
|
||||
HRESULT GetPreroll([out] unsigned int *prerollSeconds);
|
||||
HRESULT SetExportOffset([in] int exportOffsetFields);
|
||||
HRESULT GetExportOffset([out] int *exportOffsetFields);
|
||||
HRESULT GetManualExportOffset([out] int *deckManualExportOffsetFields);
|
||||
HRESULT SetCaptureOffset([in] int captureOffsetFields);
|
||||
HRESULT GetCaptureOffset([out] int *captureOffsetFields);
|
||||
HRESULT StartExport([in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [in] BMDDeckControlExportModeOpsFlags exportModeOps, [out] BMDDeckControlError *error);
|
||||
HRESULT StartCapture([in] BOOL useVITC, [in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetDeviceID([out] unsigned short *deviceId, [out] BMDDeckControlError *error);
|
||||
@@ -200,3 +200,7 @@ interface IDeckLinkDeckControl;
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -59,3 +59,7 @@ interface IDeckLink;
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
// Enumeration Mapping
|
||||
|
||||
cpp_quote("typedef unsigned long BMDDisplayModeFlags;")
|
||||
cpp_quote("typedef unsigned int BMDDisplayModeFlags;")
|
||||
cpp_quote("#if 0")
|
||||
typedef enum _BMDDisplayModeFlags BMDDisplayModeFlags;
|
||||
cpp_quote("#endif")
|
||||
@@ -131,7 +131,12 @@ typedef [v1_enum] enum _BMDPixelFormat {
|
||||
bmdFormat12BitRGB = /* 'R12B' */ 0x52313242, // Big-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
|
||||
bmdFormat12BitRGBLE = /* 'R12L' */ 0x5231324C, // Little-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
|
||||
bmdFormat10BitRGBXLE = /* 'R10l' */ 0x5231306C, // Little-endian 10-bit RGB with SMPTE video levels (64-940)
|
||||
bmdFormat10BitRGBX = /* 'R10b' */ 0x52313062 // Big-endian 10-bit RGB with SMPTE video levels (64-940)
|
||||
bmdFormat10BitRGBX = /* 'R10b' */ 0x52313062, // Big-endian 10-bit RGB with SMPTE video levels (64-940)
|
||||
bmdFormatH265 = /* 'hev1' */ 0x68657631, // High Efficiency Video Coding (HEVC/h.265)
|
||||
|
||||
/* AVID DNxHR */
|
||||
|
||||
bmdFormatDNxHR = /* 'AVdh' */ 0x41566468
|
||||
} BMDPixelFormat;
|
||||
|
||||
/* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
|
||||
@@ -176,3 +181,7 @@ interface IDeckLinkDisplayMode;
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -237,8 +237,8 @@ interface IBMDStreamingH264NALParser;
|
||||
helpstring("Represents a mutable encoded video mode.")
|
||||
] interface IBMDStreamingMutableVideoEncodingMode : IBMDStreamingVideoEncodingMode
|
||||
{
|
||||
HRESULT SetSourceRect([in] unsigned long posX, [in] unsigned long posY, [in] unsigned long width, [in] unsigned long height);
|
||||
HRESULT SetDestSize([in] unsigned long width, [in] unsigned long height);
|
||||
HRESULT SetSourceRect([in] unsigned int posX, [in] unsigned int posY, [in] unsigned int width, [in] unsigned int height);
|
||||
HRESULT SetDestSize([in] unsigned int width, [in] unsigned int height);
|
||||
HRESULT SetFlag([in] BMDStreamingEncodingModePropertyID cfgID, [in] BOOL value);
|
||||
HRESULT SetInt([in] BMDStreamingEncodingModePropertyID cfgID, [in] LONGLONG value);
|
||||
HRESULT SetFloat([in] BMDStreamingEncodingModePropertyID cfgID, [in] double value);
|
||||
@@ -298,7 +298,7 @@ interface IBMDStreamingH264NALParser;
|
||||
HRESULT GetBytes([out] void** buffer);
|
||||
HRESULT GetBytesWithSizePrefix([out] void** buffer); // Contains a 32-bit unsigned big endian size prefix
|
||||
HRESULT GetDisplayTime([in] ULONGLONG requestedTimeScale, [out] ULONGLONG* displayTime);
|
||||
HRESULT GetPacketIndex([out] unsigned long* packetIndex); // Deprecated
|
||||
HRESULT GetPacketIndex([out] unsigned int* packetIndex); // Deprecated
|
||||
};
|
||||
|
||||
/* Interface IBMDStreamingAudioPacket - Represents a chunk of audio data */
|
||||
@@ -313,7 +313,7 @@ interface IBMDStreamingH264NALParser;
|
||||
long GetPayloadSize(void);
|
||||
HRESULT GetBytes([out] void** buffer);
|
||||
HRESULT GetPlayTime([in] ULONGLONG requestedTimeScale, [out] ULONGLONG* playTime);
|
||||
HRESULT GetPacketIndex([out] unsigned long* packetIndex); // Deprecated
|
||||
HRESULT GetPacketIndex([out] unsigned int* packetIndex); // Deprecated
|
||||
};
|
||||
|
||||
/* Interface IBMDStreamingMPEG2TSPacket - Represent an MPEG2 Transport Stream packet */
|
||||
@@ -338,11 +338,13 @@ interface IBMDStreamingH264NALParser;
|
||||
{
|
||||
HRESULT IsNALSequenceParameterSet([in] IBMDStreamingH264NALPacket* nal);
|
||||
HRESULT IsNALPictureParameterSet([in] IBMDStreamingH264NALPacket* nal);
|
||||
HRESULT GetProfileAndLevelFromSPS([in] IBMDStreamingH264NALPacket* nal, [out] unsigned long* profileIdc, [out] unsigned long* profileCompatability, [out] unsigned long* levelIdc);
|
||||
HRESULT GetProfileAndLevelFromSPS([in] IBMDStreamingH264NALPacket* nal, [out] unsigned int* profileIdc, [out] unsigned int* profileCompatability, [out] unsigned int* levelIdc);
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
[
|
||||
uuid(0CAA31F6-8A26-40B0-86A4-BF58DCCA710C),
|
||||
helpstring("CBMDStreamingDiscovery Class")
|
||||
@@ -358,3 +360,5 @@ interface IBMDStreamingH264NALParser;
|
||||
{
|
||||
[default] interface IBMDStreamingH264NALParser;
|
||||
};
|
||||
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
@@ -38,12 +38,12 @@
|
||||
|
||||
typedef LONGLONG BMDTimeValue;
|
||||
typedef LONGLONG BMDTimeScale;
|
||||
typedef unsigned long BMDTimecodeBCD;
|
||||
typedef unsigned long BMDTimecodeUserBits;
|
||||
typedef unsigned int BMDTimecodeBCD;
|
||||
typedef unsigned int BMDTimecodeUserBits;
|
||||
|
||||
// Enumeration Mapping
|
||||
|
||||
cpp_quote("typedef unsigned long BMDTimecodeFlags;")
|
||||
cpp_quote("typedef unsigned int BMDTimecodeFlags;")
|
||||
cpp_quote("#if 0")
|
||||
typedef enum _BMDTimecodeFlags BMDTimecodeFlags;
|
||||
cpp_quote("#endif")
|
||||
@@ -74,9 +74,18 @@ typedef [v1_enum] enum _BMDAudioConnection {
|
||||
bmdAudioConnectionAESEBU = 1 << 1,
|
||||
bmdAudioConnectionAnalog = 1 << 2,
|
||||
bmdAudioConnectionAnalogXLR = 1 << 3,
|
||||
bmdAudioConnectionAnalogRCA = 1 << 4
|
||||
bmdAudioConnectionAnalogRCA = 1 << 4,
|
||||
bmdAudioConnectionMicrophone = 1 << 5,
|
||||
bmdAudioConnectionHeadphones = 1 << 6
|
||||
} BMDAudioConnection;
|
||||
|
||||
/* Enum BMDDeckControlConnection - Deck control connections */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckControlConnection {
|
||||
bmdDeckControlConnectionRS422Remote1 = 1 << 0,
|
||||
bmdDeckControlConnectionRS422Remote2 = 1 << 1
|
||||
} BMDDeckControlConnection;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkTimecode;
|
||||
@@ -97,3 +106,7 @@ interface IDeckLinkTimecode;
|
||||
};
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
|
||||
|
@@ -30,7 +30,8 @@
|
||||
#ifndef __DeckLink_API_Version_h__
|
||||
#define __DeckLink_API_Version_h__
|
||||
|
||||
#define BLACKMAGIC_DECKLINK_API_VERSION 0x0a030100
|
||||
#define BLACKMAGIC_DECKLINK_API_VERSION_STRING "10.3.1"
|
||||
#define BLACKMAGIC_DECKLINK_API_VERSION 0x0a080000
|
||||
#define BLACKMAGIC_DECKLINK_API_VERSION_STRING "10.8"
|
||||
|
||||
#endif // __DeckLink_API_Version_h__
|
||||
|
||||
|
73
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_2.idl
Normal file
73
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_2.idl
Normal file
@@ -0,0 +1,73 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2014 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v10_2.idl */
|
||||
|
||||
// Enumeration Mapping
|
||||
|
||||
/* Enum BMDDeckLinkConfigurationID - DeckLink Configuration ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkConfigurationID_v10_2 {
|
||||
|
||||
/* Video output flags */
|
||||
|
||||
bmdDeckLinkConfig3GBpsVideoOutput_v10_2 = /* '3gbs' */ 0x33676273
|
||||
|
||||
} BMDDeckLinkConfigurationID_v10_2;
|
||||
|
||||
/* Enum BMDAudioConnection_v10_2 - Audio connection types */
|
||||
|
||||
typedef [v1_enum] enum _BMDAudioConnection_v10_2 {
|
||||
bmdAudioConnectionEmbedded_v10_2 = /* 'embd' */ 0x656D6264,
|
||||
bmdAudioConnectionAESEBU_v10_2 = /* 'aes ' */ 0x61657320,
|
||||
bmdAudioConnectionAnalog_v10_2 = /* 'anlg' */ 0x616E6C67,
|
||||
bmdAudioConnectionAnalogXLR_v10_2 = /* 'axlr' */ 0x61786C72,
|
||||
bmdAudioConnectionAnalogRCA_v10_2 = /* 'arca' */ 0x61726361
|
||||
} BMDAudioConnection_v10_2;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkConfiguration_v10_2;
|
||||
|
||||
/* Interface IDeckLinkConfiguration_v10_2 - DeckLink Configuration interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(C679A35B-610C-4D09-B748-1D0478100FC0),
|
||||
local,
|
||||
helpstring("DeckLink Configuration interface")
|
||||
] interface IDeckLinkConfiguration_v10_2 : IUnknown
|
||||
{
|
||||
HRESULT SetFlag([in] BMDDeckLinkConfigurationID cfgID, [in] BOOL value);
|
||||
HRESULT GetFlag([in] BMDDeckLinkConfigurationID cfgID, [out] BOOL *value);
|
||||
HRESULT SetInt([in] BMDDeckLinkConfigurationID cfgID, [in] LONGLONG value);
|
||||
HRESULT GetInt([in] BMDDeckLinkConfigurationID cfgID, [out] LONGLONG *value);
|
||||
HRESULT SetFloat([in] BMDDeckLinkConfigurationID cfgID, [in] double value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkConfigurationID cfgID, [out] double *value);
|
||||
HRESULT SetString([in] BMDDeckLinkConfigurationID cfgID, [in] BSTR value);
|
||||
HRESULT GetString([in] BMDDeckLinkConfigurationID cfgID, [out] BSTR *value);
|
||||
HRESULT WriteConfigurationToPreferences(void);
|
||||
};
|
61
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_4.idl
Normal file
61
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_4.idl
Normal file
@@ -0,0 +1,61 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2015 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v10_4.idl */
|
||||
|
||||
/* Enum BMDDeckLinkConfigurationID - DeckLink Configuration ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkConfigurationID_v10_4 {
|
||||
|
||||
/* Video output flags */
|
||||
|
||||
bmdDeckLinkConfigSingleLinkVideoOutput_v10_4 = /* 'sglo' */ 0x73676C6F,
|
||||
|
||||
} BMDDeckLinkConfigurationID_v10_4;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkConfiguration_v10_4;
|
||||
|
||||
/* Interface IDeckLinkConfiguration_v10_4 - DeckLink Configuration interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(1E69FCF6-4203-4936-8076-2A9F4CFD50CB),
|
||||
local,
|
||||
helpstring("DeckLink Configuration interface")
|
||||
] interface IDeckLinkConfiguration_v10_4 : IUnknown
|
||||
{
|
||||
HRESULT SetFlag([in] BMDDeckLinkConfigurationID cfgID, [in] BOOL value);
|
||||
HRESULT GetFlag([in] BMDDeckLinkConfigurationID cfgID, [out] BOOL *value);
|
||||
HRESULT SetInt([in] BMDDeckLinkConfigurationID cfgID, [in] LONGLONG value);
|
||||
HRESULT GetInt([in] BMDDeckLinkConfigurationID cfgID, [out] LONGLONG *value);
|
||||
HRESULT SetFloat([in] BMDDeckLinkConfigurationID cfgID, [in] double value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkConfigurationID cfgID, [out] double *value);
|
||||
HRESULT SetString([in] BMDDeckLinkConfigurationID cfgID, [in] BSTR value);
|
||||
HRESULT GetString([in] BMDDeckLinkConfigurationID cfgID, [out] BSTR *value);
|
||||
HRESULT WriteConfigurationToPreferences(void);
|
||||
};
|
61
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_5.idl
Normal file
61
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_5.idl
Normal file
@@ -0,0 +1,61 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2015 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v10_5.idl */
|
||||
|
||||
/* Enum BMDDeckLinkConfigurationID - DeckLink Configuration ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkAttributeID_v10_5 {
|
||||
|
||||
/* Integers */
|
||||
|
||||
BMDDeckLinkDeviceBusyState_v10_5 = /* 'dbst' */ 0x64627374,
|
||||
|
||||
} BMDDeckLinkAttributeID_v10_5;
|
||||
|
||||
// Forward Declarations
|
||||
|
||||
interface IDeckLinkEncoderConfiguration_v10_5;
|
||||
|
||||
/* Interface IDeckLinkEncoderConfiguration_v10_5 - DeckLink Encoder Configuration interface. Obtained from IDeckLinkEncoderInput */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(67455668-0848-45DF-8D8E-350A77C9A028),
|
||||
local,
|
||||
helpstring("DeckLink Encoder Configuration interface. Obtained from IDeckLinkEncoderInput")
|
||||
] interface IDeckLinkEncoderConfiguration_v10_5 : IUnknown
|
||||
{
|
||||
HRESULT SetFlag([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] BOOL value);
|
||||
HRESULT GetFlag([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] BOOL *value);
|
||||
HRESULT SetInt([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] LONGLONG value);
|
||||
HRESULT GetInt([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] LONGLONG *value);
|
||||
HRESULT SetFloat([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] double value);
|
||||
HRESULT GetFloat([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] double *value);
|
||||
HRESULT SetString([in] BMDDeckLinkEncoderConfigurationID cfgID, [in] BSTR value);
|
||||
HRESULT GetString([in] BMDDeckLinkEncoderConfigurationID cfgID, [out] BSTR *value);
|
||||
HRESULT GetDecoderConfigurationInfo([out] void *buffer, [in] long bufferSize, [out] long *returnedSize);
|
||||
};
|
41
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_6.idl
Normal file
41
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v10_6.idl
Normal file
@@ -0,0 +1,41 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2016 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v10_6.idl */
|
||||
|
||||
/* Enum BMDDeckLinkAttributeID - DeckLink Attribute ID */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckLinkAttributeID_v10_6 {
|
||||
|
||||
/* Flags */
|
||||
|
||||
BMDDeckLinkSupportsDesktopDisplay_v10_6 = /* 'extd' */ 0x65787464,
|
||||
|
||||
} BMDDeckLinkAttributeID_v10_6;
|
||||
|
||||
typedef [v1_enum] enum _BMDIdleVideoOutputOperation_v10_6 {
|
||||
bmdIdleVideoOutputDesktop_v10_6 = /* 'desk' */ 0x6465736B
|
||||
} BMDIdleVideoOutputOperation_v10_6;
|
160
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_1.idl
Normal file
160
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_1.idl
Normal file
@@ -0,0 +1,160 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2009 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v7_1.idl */
|
||||
|
||||
interface IDeckLinkDisplayModeIterator_v7_1;
|
||||
interface IDeckLinkDisplayMode_v7_1;
|
||||
interface IDeckLinkVideoFrame_v7_1;
|
||||
interface IDeckLinkVideoInputFrame_v7_1;
|
||||
interface IDeckLinkAudioInputPacket_v7_1;
|
||||
|
||||
[object, uuid(B28131B6-59AC-4857-B5AC-CD75D5883E2F),
|
||||
helpstring("IDeckLinkDisplayModeIterator_v7_1 enumerates over supported input/output display modes.")]
|
||||
interface IDeckLinkDisplayModeIterator_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT Next ([out] IDeckLinkDisplayMode_v7_1** deckLinkDisplayMode);
|
||||
};
|
||||
|
||||
|
||||
[object, uuid(AF0CD6D5-8376-435E-8433-54F9DD530AC3),
|
||||
helpstring("IDeckLinkDisplayMode_v7_1 represents a display mode")]
|
||||
interface IDeckLinkDisplayMode_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT GetName ([out] BSTR* name);
|
||||
BMDDisplayMode GetDisplayMode ();
|
||||
long GetWidth ();
|
||||
long GetHeight ();
|
||||
HRESULT GetFrameRate ([out] BMDTimeValue *frameDuration, [out] BMDTimeScale *timeScale);
|
||||
};
|
||||
|
||||
[object, uuid(EBD01AFA-E4B0-49C6-A01D-EDB9D1B55FD9),
|
||||
helpstring("IDeckLinkVideoOutputCallback. Frame completion callback.")]
|
||||
interface IDeckLinkVideoOutputCallback_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT ScheduledFrameCompleted ([in] IDeckLinkVideoFrame_v7_1* completedFrame, [in] BMDOutputFrameCompletionResult result);
|
||||
};
|
||||
|
||||
[object, uuid(7F94F328-5ED4-4E9F-9729-76A86BDC99CC),
|
||||
helpstring("IDeckLinkInputCallback_v7_1. Frame arrival callback.")]
|
||||
interface IDeckLinkInputCallback_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT VideoInputFrameArrived ([in] IDeckLinkVideoInputFrame_v7_1* videoFrame, [in] IDeckLinkAudioInputPacket_v7_1* audioPacket);
|
||||
};
|
||||
|
||||
|
||||
[object, uuid(AE5B3E9B-4E1E-4535-B6E8-480FF52F6CE5), local,
|
||||
helpstring("IDeckLinkOutput_v7_1. Created by QueryInterface from IDeckLink.")]
|
||||
interface IDeckLinkOutput_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode (BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator ([out] IDeckLinkDisplayModeIterator_v7_1 **iterator);
|
||||
|
||||
// Video output
|
||||
HRESULT EnableVideoOutput (BMDDisplayMode displayMode);
|
||||
HRESULT DisableVideoOutput ();
|
||||
|
||||
HRESULT SetVideoOutputFrameMemoryAllocator ([in] IDeckLinkMemoryAllocator* theAllocator);
|
||||
HRESULT CreateVideoFrame (int width, int height, int rowBytes, BMDPixelFormat pixelFormat, BMDFrameFlags flags, IDeckLinkVideoFrame_v7_1** outFrame);
|
||||
HRESULT CreateVideoFrameFromBuffer (void* buffer, int width, int height, int rowBytes, BMDPixelFormat pixelFormat, BMDFrameFlags flags, IDeckLinkVideoFrame_v7_1** outFrame);
|
||||
|
||||
HRESULT DisplayVideoFrameSync (IDeckLinkVideoFrame_v7_1* theFrame);
|
||||
HRESULT ScheduleVideoFrame (IDeckLinkVideoFrame_v7_1* theFrame, BMDTimeValue displayTime, BMDTimeValue displayDuration, BMDTimeScale timeScale);
|
||||
HRESULT SetScheduledFrameCompletionCallback ([in] IDeckLinkVideoOutputCallback_v7_1* theCallback);
|
||||
|
||||
// Audio output
|
||||
HRESULT EnableAudioOutput (BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount);
|
||||
HRESULT DisableAudioOutput ();
|
||||
|
||||
HRESULT WriteAudioSamplesSync (void* buffer, unsigned int sampleFrameCount, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT BeginAudioPreroll ();
|
||||
HRESULT EndAudioPreroll ();
|
||||
HRESULT ScheduleAudioSamples (void* buffer, unsigned int sampleFrameCount, BMDTimeValue streamTime, BMDTimeScale timeScale, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT GetBufferedAudioSampleFrameCount ( [out] unsigned int *bufferedSampleCount);
|
||||
HRESULT FlushBufferedAudioSamples ();
|
||||
|
||||
HRESULT SetAudioCallback ( [in] IDeckLinkAudioOutputCallback* theCallback);
|
||||
|
||||
// Output control
|
||||
HRESULT StartScheduledPlayback (BMDTimeValue playbackStartTime, BMDTimeScale timeScale, double playbackSpeed);
|
||||
HRESULT StopScheduledPlayback (BMDTimeValue stopPlaybackAtTime, BMDTimeValue *actualStopTime, BMDTimeScale timeScale);
|
||||
HRESULT GetHardwareReferenceClock (BMDTimeScale desiredTimeScale, BMDTimeValue *elapsedTimeSinceSchedulerBegan);
|
||||
};
|
||||
|
||||
[object, uuid(2B54EDEF-5B32-429F-BA11-BB990596EACD),
|
||||
helpstring("IDeckLinkInput_v7_1. Created by QueryInterface from IDeckLink.")]
|
||||
interface IDeckLinkInput_v7_1 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode (BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator ([out] IDeckLinkDisplayModeIterator_v7_1 **iterator);
|
||||
|
||||
// Video input
|
||||
HRESULT EnableVideoInput (BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput ();
|
||||
|
||||
// Audio input
|
||||
HRESULT EnableAudioInput (BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount);
|
||||
HRESULT DisableAudioInput ();
|
||||
HRESULT ReadAudioSamples (void* buffer, unsigned int sampleFrameCount, [out] unsigned int *sampleFramesRead, [out] BMDTimeValue *audioPacketTime, BMDTimeScale timeScale);
|
||||
HRESULT GetBufferedAudioSampleFrameCount ( [out] unsigned int *bufferedSampleCount);
|
||||
|
||||
// Input control
|
||||
HRESULT StartStreams ();
|
||||
HRESULT StopStreams ();
|
||||
HRESULT PauseStreams ();
|
||||
HRESULT SetCallback ([in] IDeckLinkInputCallback_v7_1* theCallback);
|
||||
};
|
||||
|
||||
[object, uuid(333F3A10-8C2D-43CF-B79D-46560FEEA1CE), local,
|
||||
helpstring("IDeckLinkVideoFrame_v7_1. Created by IDeckLinkVideoOutput::CreateVideoFrame.")]
|
||||
interface IDeckLinkVideoFrame_v7_1 : IUnknown
|
||||
{
|
||||
long GetWidth ();
|
||||
long GetHeight ();
|
||||
long GetRowBytes ();
|
||||
BMDPixelFormat GetPixelFormat ();
|
||||
BMDFrameFlags GetFlags ();
|
||||
HRESULT GetBytes (void* *buffer);
|
||||
};
|
||||
|
||||
[object, uuid(C8B41D95-8848-40EE-9B37-6E3417FB114B), local,
|
||||
helpstring("IDeckLinkVideoInputFrame_v7_1. Provided by the IDeckLinkVideoInput frame arrival callback.")]
|
||||
interface IDeckLinkVideoInputFrame_v7_1 : IDeckLinkVideoFrame_v7_1
|
||||
{
|
||||
HRESULT GetFrameTime (BMDTimeValue *frameTime, BMDTimeValue *frameDuration, BMDTimeScale timeScale);
|
||||
};
|
||||
|
||||
[object, uuid(C86DE4F6-A29F-42E3-AB3A-1363E29F0788), local,
|
||||
helpstring("IDeckLinkAudioInputPacket_v7_1. Provided by the IDeckLinkInput callback.")]
|
||||
interface IDeckLinkAudioInputPacket_v7_1 : IUnknown
|
||||
{
|
||||
long GetSampleCount ();
|
||||
HRESULT GetBytes (void* *buffer);
|
||||
HRESULT GetAudioPacketTime (BMDTimeValue *packetTime, BMDTimeScale timeScale);
|
||||
};
|
||||
|
157
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_3.idl
Normal file
157
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_3.idl
Normal file
@@ -0,0 +1,157 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2009 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
|
||||
/* Forward Declarations */
|
||||
|
||||
interface IDeckLinkInputCallback_v7_3;
|
||||
interface IDeckLinkOutput_v7_3;
|
||||
interface IDeckLinkInput_v7_3;
|
||||
interface IDeckLinkVideoInputFrame_v7_3;
|
||||
|
||||
/* End Forward Declarations */
|
||||
|
||||
|
||||
/* Interface IDeckLinkInputCallback - Frame arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(FD6F311D-4D00-444B-9ED4-1F25B5730AD0),
|
||||
helpstring("Frame arrival callback.")
|
||||
] interface IDeckLinkInputCallback_v7_3 : IUnknown
|
||||
{
|
||||
HRESULT VideoInputFormatChanged([in] BMDVideoInputFormatChangedEvents notificationEvents, [in] IDeckLinkDisplayMode_v7_6 *newDisplayMode, [in] BMDDetectedVideoInputFormatFlags detectedSignalFlags);
|
||||
HRESULT VideoInputFrameArrived([in] IDeckLinkVideoInputFrame_v7_3 *videoFrame, [in] IDeckLinkAudioInputPacket *audioPacket);
|
||||
};
|
||||
|
||||
/* End Interface IDeckLinkInputCallback */
|
||||
|
||||
|
||||
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(271C65E3-C323-4344-A30F-D908BCB20AA3),
|
||||
local,
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkOutput_v7_3 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator_v7_6 **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback *previewCallback);
|
||||
|
||||
/* Video Output */
|
||||
|
||||
HRESULT EnableVideoOutput(BMDDisplayMode displayMode, BMDVideoOutputFlags flags);
|
||||
HRESULT DisableVideoOutput(void);
|
||||
|
||||
HRESULT SetVideoOutputFrameMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
HRESULT CreateVideoFrame(int width, int height, int rowBytes, BMDPixelFormat pixelFormat, BMDFrameFlags flags, [out] IDeckLinkMutableVideoFrame_v7_6 **outFrame);
|
||||
HRESULT CreateAncillaryData(BMDPixelFormat pixelFormat, [out] IDeckLinkVideoFrameAncillary **outBuffer);
|
||||
|
||||
HRESULT DisplayVideoFrameSync([in] IDeckLinkVideoFrame_v7_6 *theFrame);
|
||||
HRESULT ScheduleVideoFrame([in] IDeckLinkVideoFrame_v7_6 *theFrame, BMDTimeValue displayTime, BMDTimeValue displayDuration, BMDTimeScale timeScale);
|
||||
HRESULT SetScheduledFrameCompletionCallback([in] IDeckLinkVideoOutputCallback *theCallback);
|
||||
HRESULT GetBufferedVideoFrameCount([out] unsigned int *bufferedFrameCount);
|
||||
|
||||
/* Audio Output */
|
||||
|
||||
HRESULT EnableAudioOutput(BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount, BMDAudioOutputStreamType streamType);
|
||||
HRESULT DisableAudioOutput(void);
|
||||
|
||||
HRESULT WriteAudioSamplesSync([in] void *buffer, unsigned int sampleFrameCount, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT BeginAudioPreroll(void);
|
||||
HRESULT EndAudioPreroll(void);
|
||||
HRESULT ScheduleAudioSamples([in] void *buffer, unsigned int sampleFrameCount, BMDTimeValue streamTime, BMDTimeScale timeScale, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT GetBufferedAudioSampleFrameCount([out] unsigned int *bufferedSampleFrameCount);
|
||||
HRESULT FlushBufferedAudioSamples(void);
|
||||
|
||||
HRESULT SetAudioCallback([in] IDeckLinkAudioOutputCallback *theCallback);
|
||||
|
||||
/* Output Control */
|
||||
|
||||
HRESULT StartScheduledPlayback(BMDTimeValue playbackStartTime, BMDTimeScale timeScale, double playbackSpeed);
|
||||
HRESULT StopScheduledPlayback(BMDTimeValue stopPlaybackAtTime, [out] BMDTimeValue *actualStopTime, BMDTimeScale timeScale);
|
||||
HRESULT IsScheduledPlaybackRunning([out] BOOL *active);
|
||||
HRESULT GetHardwareReferenceClock(BMDTimeScale desiredTimeScale, [out] BMDTimeValue *elapsedTimeSinceSchedulerBegan);
|
||||
};
|
||||
|
||||
/* End Interface IDeckLinkOutput */
|
||||
|
||||
/* Interface IDeckLinkInput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(4973F012-9925-458C-871C-18774CDBBECB),
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkInput_v7_3 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator_v7_6 **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback *previewCallback);
|
||||
|
||||
/* Video Input */
|
||||
|
||||
HRESULT EnableVideoInput(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput(void);
|
||||
HRESULT GetAvailableVideoFrameCount([out] unsigned int *availableFrameCount);
|
||||
|
||||
/* Audio Input */
|
||||
|
||||
HRESULT EnableAudioInput(BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount);
|
||||
HRESULT DisableAudioInput(void);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned int *availableSampleFrameCount);
|
||||
|
||||
/* Input Control */
|
||||
|
||||
HRESULT StartStreams(void);
|
||||
HRESULT StopStreams(void);
|
||||
HRESULT PauseStreams(void);
|
||||
HRESULT FlushStreams(void);
|
||||
HRESULT SetCallback([in] IDeckLinkInputCallback_v7_3 *theCallback);
|
||||
};
|
||||
|
||||
/* End Interface IDeckLinkInput */
|
||||
|
||||
|
||||
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(CF317790-2894-11DE-8C30-0800200C9A66),
|
||||
local,
|
||||
helpstring("Provided by the IDeckLinkVideoInput frame arrival callback.")
|
||||
] interface IDeckLinkVideoInputFrame_v7_3 : IDeckLinkVideoFrame_v7_6
|
||||
{
|
||||
HRESULT GetStreamTime([out] BMDTimeValue *frameTime, [out] BMDTimeValue *frameDuration, BMDTimeScale timeScale);
|
||||
};
|
||||
|
||||
/* End Interface IDeckLinkVideoInputFrame */
|
||||
|
396
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_6.idl
Normal file
396
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_6.idl
Normal file
@@ -0,0 +1,396 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2009 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
|
||||
/* Enum BMDVideoConnection - Video connection types */
|
||||
|
||||
typedef [v1_enum] enum _BMDVideoConnection_v7_6 {
|
||||
bmdVideoConnectionSDI_v7_6 = /* 'sdi ' */ 0x73646920,
|
||||
bmdVideoConnectionHDMI_v7_6 = /* 'hdmi' */ 0x68646D69,
|
||||
bmdVideoConnectionOpticalSDI_v7_6 = /* 'opti' */ 0x6F707469,
|
||||
bmdVideoConnectionComponent_v7_6 = /* 'cpnt' */ 0x63706E74,
|
||||
bmdVideoConnectionComposite_v7_6 = /* 'cmst' */ 0x636D7374,
|
||||
bmdVideoConnectionSVideo_v7_6 = /* 'svid' */ 0x73766964
|
||||
} BMDVideoConnection_v7_6;
|
||||
|
||||
|
||||
|
||||
/* Forward Declarations */
|
||||
|
||||
interface IDeckLinkDisplayModeIterator_v7_6;
|
||||
interface IDeckLinkDisplayMode_v7_6;
|
||||
interface IDeckLinkOutput_v7_6;
|
||||
interface IDeckLinkInput_v7_6;
|
||||
interface IDeckLinkTimecode_v7_6;
|
||||
interface IDeckLinkVideoFrame_v7_6;
|
||||
interface IDeckLinkMutableVideoFrame_v7_6;
|
||||
interface IDeckLinkVideoInputFrame_v7_6;
|
||||
interface IDeckLinkScreenPreviewCallback_v7_6;
|
||||
interface IDeckLinkGLScreenPreviewHelper_v7_6;
|
||||
interface IDeckLinkVideoConversion_v7_6;
|
||||
interface IDeckLinkConfiguration_v7_6;
|
||||
|
||||
|
||||
/* Interface IDeckLinkVideoOutputCallback - Frame completion callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(E763A626-4A3C-49D1-BF13-E7AD3692AE52),
|
||||
helpstring("Frame completion callback.")
|
||||
] interface IDeckLinkVideoOutputCallback_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT ScheduledFrameCompleted([in] IDeckLinkVideoFrame_v7_6 *completedFrame, [in] BMDOutputFrameCompletionResult result);
|
||||
HRESULT ScheduledPlaybackHasStopped(void);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkInputCallback - Frame arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(31D28EE7-88B6-4CB1-897A-CDBF79A26414),
|
||||
helpstring("Frame arrival callback.")
|
||||
] interface IDeckLinkInputCallback_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT VideoInputFormatChanged([in] BMDVideoInputFormatChangedEvents notificationEvents, [in] IDeckLinkDisplayMode_v7_6 *newDisplayMode, [in] BMDDetectedVideoInputFormatFlags detectedSignalFlags);
|
||||
HRESULT VideoInputFrameArrived([in] IDeckLinkVideoInputFrame_v7_6* videoFrame, [in] IDeckLinkAudioInputPacket* audioPacket);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkDisplayModeIterator - enumerates over supported input/output display modes. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(455D741F-1779-4800-86F5-0B5D13D79751),
|
||||
helpstring("enumerates over supported input/output display modes.")
|
||||
] interface IDeckLinkDisplayModeIterator_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT Next([out] IDeckLinkDisplayMode_v7_6 **deckLinkDisplayMode);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkDisplayMode - represents a display mode */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(87451E84-2B7E-439E-A629-4393EA4A8550),
|
||||
helpstring("represents a display mode")
|
||||
] interface IDeckLinkDisplayMode_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT GetName([out] BSTR *name);
|
||||
BMDDisplayMode GetDisplayMode(void);
|
||||
long GetWidth(void);
|
||||
long GetHeight(void);
|
||||
HRESULT GetFrameRate([out] BMDTimeValue *frameDuration, [out] BMDTimeScale *timeScale);
|
||||
BMDFieldDominance GetFieldDominance(void);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(29228142-EB8C-4141-A621-F74026450955),
|
||||
local,
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkOutput_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator_v7_6 **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback_v7_6 *previewCallback);
|
||||
|
||||
/* Video Output */
|
||||
|
||||
HRESULT EnableVideoOutput(BMDDisplayMode displayMode, BMDVideoOutputFlags flags);
|
||||
HRESULT DisableVideoOutput(void);
|
||||
|
||||
HRESULT SetVideoOutputFrameMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
HRESULT CreateVideoFrame(int width, int height, int rowBytes, BMDPixelFormat pixelFormat, BMDFrameFlags flags, [out] IDeckLinkMutableVideoFrame_v7_6 **outFrame);
|
||||
HRESULT CreateAncillaryData(BMDPixelFormat pixelFormat, [out] IDeckLinkVideoFrameAncillary **outBuffer);
|
||||
|
||||
HRESULT DisplayVideoFrameSync([in] IDeckLinkVideoFrame_v7_6 *theFrame);
|
||||
HRESULT ScheduleVideoFrame([in] IDeckLinkVideoFrame_v7_6 *theFrame, BMDTimeValue displayTime, BMDTimeValue displayDuration, BMDTimeScale timeScale);
|
||||
HRESULT SetScheduledFrameCompletionCallback([in] IDeckLinkVideoOutputCallback_v7_6 *theCallback);
|
||||
HRESULT GetBufferedVideoFrameCount([out] unsigned int *bufferedFrameCount);
|
||||
|
||||
/* Audio Output */
|
||||
|
||||
HRESULT EnableAudioOutput(BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount, BMDAudioOutputStreamType streamType);
|
||||
HRESULT DisableAudioOutput(void);
|
||||
|
||||
HRESULT WriteAudioSamplesSync([in] void *buffer, unsigned int sampleFrameCount, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT BeginAudioPreroll(void);
|
||||
HRESULT EndAudioPreroll(void);
|
||||
HRESULT ScheduleAudioSamples([in] void *buffer, unsigned int sampleFrameCount, BMDTimeValue streamTime, BMDTimeScale timeScale, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT GetBufferedAudioSampleFrameCount([out] unsigned int *bufferedSampleFrameCount);
|
||||
HRESULT FlushBufferedAudioSamples(void);
|
||||
|
||||
HRESULT SetAudioCallback([in] IDeckLinkAudioOutputCallback *theCallback);
|
||||
|
||||
/* Output Control */
|
||||
|
||||
HRESULT StartScheduledPlayback(BMDTimeValue playbackStartTime, BMDTimeScale timeScale, double playbackSpeed);
|
||||
HRESULT StopScheduledPlayback(BMDTimeValue stopPlaybackAtTime, [out] BMDTimeValue *actualStopTime, BMDTimeScale timeScale);
|
||||
HRESULT IsScheduledPlaybackRunning([out] BOOL *active);
|
||||
HRESULT GetScheduledStreamTime(BMDTimeScale desiredTimeScale, [out] BMDTimeValue *streamTime, [out] double *playbackSpeed);
|
||||
|
||||
/* Hardware Timing */
|
||||
|
||||
HRESULT GetHardwareReferenceClock(BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkInput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(300C135A-9F43-48E2-9906-6D7911D93CF1),
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkInput_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, [out] BMDDisplayModeSupport *result);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator_v7_6 **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback_v7_6 *previewCallback);
|
||||
|
||||
/* Video Input */
|
||||
|
||||
HRESULT EnableVideoInput(BMDDisplayMode displayMode, BMDPixelFormat pixelFormat, BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput(void);
|
||||
HRESULT GetAvailableVideoFrameCount([out] unsigned int *availableFrameCount);
|
||||
|
||||
/* Audio Input */
|
||||
|
||||
HRESULT EnableAudioInput(BMDAudioSampleRate sampleRate, BMDAudioSampleType sampleType, unsigned int channelCount);
|
||||
HRESULT DisableAudioInput(void);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned int *availableSampleFrameCount);
|
||||
|
||||
/* Input Control */
|
||||
|
||||
HRESULT StartStreams(void);
|
||||
HRESULT StopStreams(void);
|
||||
HRESULT PauseStreams(void);
|
||||
HRESULT FlushStreams(void);
|
||||
HRESULT SetCallback([in] IDeckLinkInputCallback_v7_6 *theCallback);
|
||||
|
||||
/* Hardware Timing */
|
||||
|
||||
HRESULT GetHardwareReferenceClock(BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkTimecode_v7_6 - Used for video frame timecode representation. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(EFB9BCA6-A521-44F7-BD69-2332F24D9EE6),
|
||||
helpstring("Used for video frame timecode representation.")
|
||||
] interface IDeckLinkTimecode_v7_6 : IUnknown
|
||||
{
|
||||
BMDTimecodeBCD GetBCD(void);
|
||||
HRESULT GetComponents([out] unsigned char *hours, [out] unsigned char *minutes, [out] unsigned char *seconds, [out] unsigned char *frames);
|
||||
HRESULT GetString([out] BSTR *timecode);
|
||||
BMDTimecodeFlags GetFlags(void);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkVideoFrame - Interface to encapsulate a video frame; can be caller-implemented. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(A8D8238E-6B18-4196-99E1-5AF717B83D32),
|
||||
local,
|
||||
helpstring("Interface to encapsulate a video frame; can be caller-implemented.")
|
||||
] interface IDeckLinkVideoFrame_v7_6 : IUnknown
|
||||
{
|
||||
long GetWidth(void);
|
||||
long GetHeight(void);
|
||||
long GetRowBytes(void);
|
||||
BMDPixelFormat GetPixelFormat(void);
|
||||
BMDFrameFlags GetFlags(void);
|
||||
HRESULT GetBytes([out] void **buffer);
|
||||
|
||||
HRESULT GetTimecode(BMDTimecodeFormat format, [out] IDeckLinkTimecode_v7_6 **timecode);
|
||||
HRESULT GetAncillaryData([out] IDeckLinkVideoFrameAncillary **ancillary);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkMutableVideoFrame - Created by IDeckLinkOutput::CreateVideoFrame. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(46FCEE00-B4E6-43D0-91C0-023A7FCEB34F),
|
||||
local,
|
||||
helpstring("Created by IDeckLinkOutput::CreateVideoFrame.")
|
||||
] interface IDeckLinkMutableVideoFrame_v7_6 : IDeckLinkVideoFrame_v7_6
|
||||
{
|
||||
HRESULT SetFlags(BMDFrameFlags newFlags);
|
||||
|
||||
HRESULT SetTimecode(BMDTimecodeFormat format, [in] IDeckLinkTimecode_v7_6 *timecode);
|
||||
HRESULT SetTimecodeFromComponents(BMDTimecodeFormat format, unsigned char hours, unsigned char minutes, unsigned char seconds, unsigned char frames, BMDTimecodeFlags flags);
|
||||
HRESULT SetAncillaryData([in] IDeckLinkVideoFrameAncillary *ancillary);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(9A74FA41-AE9F-47AC-8CF4-01F42DD59965),
|
||||
local,
|
||||
helpstring("Provided by the IDeckLinkVideoInput frame arrival callback.")
|
||||
] interface IDeckLinkVideoInputFrame_v7_6 : IDeckLinkVideoFrame_v7_6
|
||||
{
|
||||
HRESULT GetStreamTime([out] BMDTimeValue *frameTime, [out] BMDTimeValue *frameDuration, BMDTimeScale timeScale);
|
||||
HRESULT GetHardwareReferenceTimestamp(BMDTimeScale timeScale, [out] BMDTimeValue *frameTime, [out] BMDTimeValue *frameDuration);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkScreenPreviewCallback - Screen preview callback */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(373F499D-4B4D-4518-AD22-6354E5A5825E),
|
||||
local,
|
||||
helpstring("Screen preview callback")
|
||||
] interface IDeckLinkScreenPreviewCallback_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT DrawFrame([in] IDeckLinkVideoFrame_v7_6 *theFrame);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkGLScreenPreviewHelper - Created with CoCreateInstance(). */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(BA575CD9-A15E-497B-B2C2-F9AFE7BE4EBA),
|
||||
local,
|
||||
helpstring("Created with CoCreateInstance().")
|
||||
] interface IDeckLinkGLScreenPreviewHelper_v7_6 : IUnknown
|
||||
{
|
||||
|
||||
/* Methods must be called with OpenGL context set */
|
||||
|
||||
HRESULT InitializeGL(void);
|
||||
HRESULT PaintGL(void);
|
||||
HRESULT SetFrame([in] IDeckLinkVideoFrame_v7_6 *theFrame);
|
||||
};
|
||||
|
||||
|
||||
/* Interface IDeckLinkVideoConversion - Created with CoCreateInstance(). */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(3EB504C9-F97D-40FE-A158-D407D48CB53B),
|
||||
local,
|
||||
helpstring("Created with CoCreateInstance().")
|
||||
] interface IDeckLinkVideoConversion_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT ConvertFrame([in] IDeckLinkVideoFrame_v7_6* srcFrame, [in] IDeckLinkVideoFrame_v7_6* dstFrame);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkConfiguration_v7_6 - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(B8EAD569-B764-47F0-A73F-AE40DF6CBF10),
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkConfiguration_v7_6 : IUnknown
|
||||
{
|
||||
HRESULT GetConfigurationValidator([out] IDeckLinkConfiguration_v7_6 **configObject);
|
||||
HRESULT WriteConfigurationToPreferences(void);
|
||||
|
||||
/* Video Output Configuration */
|
||||
|
||||
HRESULT SetVideoOutputFormat([in] BMDVideoConnection_v7_6 videoOutputConnection);
|
||||
HRESULT IsVideoOutputActive([in] BMDVideoConnection_v7_6 videoOutputConnection, [out] BOOL *active);
|
||||
|
||||
HRESULT SetAnalogVideoOutputFlags([in] BMDAnalogVideoFlags analogVideoFlags);
|
||||
HRESULT GetAnalogVideoOutputFlags([out] BMDAnalogVideoFlags *analogVideoFlags);
|
||||
|
||||
HRESULT EnableFieldFlickerRemovalWhenPaused([in] BOOL enable);
|
||||
HRESULT IsEnabledFieldFlickerRemovalWhenPaused([out] BOOL *enabled);
|
||||
|
||||
HRESULT Set444And3GBpsVideoOutput([in] BOOL enable444VideoOutput, [in] BOOL enable3GbsOutput);
|
||||
HRESULT Get444And3GBpsVideoOutput([out] BOOL *is444VideoOutputEnabled, [out] BOOL *threeGbsOutputEnabled);
|
||||
|
||||
HRESULT SetVideoOutputConversionMode([in] BMDVideoOutputConversionMode conversionMode);
|
||||
HRESULT GetVideoOutputConversionMode([out] BMDVideoOutputConversionMode *conversionMode);
|
||||
|
||||
HRESULT Set_HD1080p24_to_HD1080i5994_Conversion([in] BOOL enable);
|
||||
HRESULT Get_HD1080p24_to_HD1080i5994_Conversion([out] BOOL *enabled);
|
||||
|
||||
/* Video Input Configuration */
|
||||
|
||||
HRESULT SetVideoInputFormat([in] BMDVideoConnection_v7_6 videoInputFormat);
|
||||
HRESULT GetVideoInputFormat([out] BMDVideoConnection_v7_6 *videoInputFormat);
|
||||
|
||||
HRESULT SetAnalogVideoInputFlags([in] BMDAnalogVideoFlags analogVideoFlags);
|
||||
HRESULT GetAnalogVideoInputFlags([out] BMDAnalogVideoFlags *analogVideoFlags);
|
||||
|
||||
HRESULT SetVideoInputConversionMode([in] BMDVideoInputConversionMode conversionMode);
|
||||
HRESULT GetVideoInputConversionMode([out] BMDVideoInputConversionMode *conversionMode);
|
||||
|
||||
HRESULT SetBlackVideoOutputDuringCapture([in] BOOL blackOutInCapture);
|
||||
HRESULT GetBlackVideoOutputDuringCapture([out] BOOL *blackOutInCapture);
|
||||
|
||||
HRESULT Set32PulldownSequenceInitialTimecodeFrame([in] unsigned int aFrameTimecode);
|
||||
HRESULT Get32PulldownSequenceInitialTimecodeFrame([out] unsigned int *aFrameTimecode);
|
||||
|
||||
HRESULT SetVancSourceLineMapping([in] unsigned int activeLine1VANCsource, [in] unsigned int activeLine2VANCsource, [in] unsigned int activeLine3VANCsource);
|
||||
HRESULT GetVancSourceLineMapping([out] unsigned int *activeLine1VANCsource, [out] unsigned int *activeLine2VANCsource, [out] unsigned int *activeLine3VANCsource);
|
||||
|
||||
/* Audio Input Configuration */
|
||||
|
||||
HRESULT SetAudioInputFormat([in] BMDAudioConnection_v10_2 audioInputFormat);
|
||||
HRESULT GetAudioInputFormat([out] BMDAudioConnection_v10_2 *audioInputFormat);
|
||||
};
|
||||
|
||||
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
[
|
||||
uuid(D398CEE7-4434-4CA3-9BA6-5AE34556B905),
|
||||
helpstring("CDeckLinkGLScreenPreviewHelper Class (DeckLink API v7.6)")
|
||||
] coclass CDeckLinkGLScreenPreviewHelper_v7_6
|
||||
{
|
||||
[default] interface IDeckLinkGLScreenPreviewHelper_v7_6;
|
||||
};
|
||||
|
||||
[
|
||||
uuid(FFA84F77-73BE-4FB7-B03E-B5E44B9F759B),
|
||||
helpstring("CDeckLinkVideoConversion Class (DeckLink API v7.6)")
|
||||
] coclass CDeckLinkVideoConversion_v7_6
|
||||
{
|
||||
[default] interface IDeckLinkVideoConversion_v7_6;
|
||||
};
|
||||
|
69
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_9.idl
Normal file
69
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v7_9.idl
Normal file
@@ -0,0 +1,69 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2010 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v7_9.idl */
|
||||
|
||||
/* Interface IDeckLinkDeckControl_v7_9 - Deck Control main interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(A4D81043-0619-42B7-8ED6-602D29041DF7),
|
||||
helpstring("Deck Control main interface")
|
||||
] interface IDeckLinkDeckControl_v7_9 : IUnknown
|
||||
{
|
||||
HRESULT Open([in] BMDTimeScale timeScale, [in] BMDTimeValue timeValue, [in] BOOL timecodeIsDropFrame, [out] BMDDeckControlError *error);
|
||||
HRESULT Close([in] BOOL standbyOn);
|
||||
HRESULT GetCurrentState([out] BMDDeckControlMode *mode, [out] BMDDeckControlVTRControlState *vtrControlState, [out] BMDDeckControlStatusFlags *flags);
|
||||
HRESULT SetStandby([in] BOOL standbyOn);
|
||||
HRESULT Play([out] BMDDeckControlError *error);
|
||||
HRESULT Stop([out] BMDDeckControlError *error);
|
||||
HRESULT TogglePlayStop([out] BMDDeckControlError *error);
|
||||
HRESULT Eject([out] BMDDeckControlError *error);
|
||||
HRESULT GoToTimecode([in] BMDTimecodeBCD timecode, [out] BMDDeckControlError *error);
|
||||
HRESULT FastForward([in] BOOL viewTape, [out] BMDDeckControlError *error);
|
||||
HRESULT Rewind([in] BOOL viewTape, [out] BMDDeckControlError *error);
|
||||
HRESULT StepForward([out] BMDDeckControlError *error);
|
||||
HRESULT StepBack([out] BMDDeckControlError *error);
|
||||
HRESULT Jog([in] double rate, [out] BMDDeckControlError *error);
|
||||
HRESULT Shuttle([in] double rate, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecodeString([out] BSTR *currentTimeCode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecode([out] IDeckLinkTimecode **currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecodeBCD([out] BMDTimecodeBCD *currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT SetPreroll([in] unsigned int prerollSeconds);
|
||||
HRESULT GetPreroll([out] unsigned int *prerollSeconds);
|
||||
HRESULT SetExportOffset([in] int exportOffsetFields);
|
||||
HRESULT GetExportOffset([out] int *exportOffsetFields);
|
||||
HRESULT GetManualExportOffset([out] int *deckManualExportOffsetFields);
|
||||
HRESULT SetCaptureOffset([in] int captureOffsetFields);
|
||||
HRESULT GetCaptureOffset([out] int *captureOffsetFields);
|
||||
HRESULT StartExport([in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [in] BMDDeckControlExportModeOpsFlags exportModeOps, [out] BMDDeckControlError *error);
|
||||
HRESULT StartCapture([in] BOOL useVITC, [in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetDeviceID([out] unsigned short *deviceId, [out] BMDDeckControlError *error);
|
||||
HRESULT Abort(void);
|
||||
HRESULT CrashRecordStart([out] BMDDeckControlError *error);
|
||||
HRESULT CrashRecordStop([out] BMDDeckControlError *error);
|
||||
HRESULT SetCallback([in] IDeckLinkDeckControlStatusCallback *callback);
|
||||
};
|
62
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v8_0.idl
Normal file
62
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v8_0.idl
Normal file
@@ -0,0 +1,62 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2011 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v8_0.idl */
|
||||
|
||||
/* Interface IDeckLink_v8_0 - represents a DeckLink device */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(62BFF75D-6569-4E55-8D4D-66AA03829ABC),
|
||||
helpstring("represents a DeckLink device")
|
||||
] interface IDeckLink_v8_0 : IUnknown
|
||||
{
|
||||
HRESULT GetModelName([out] BSTR *modelName);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkIterator_v8_0 - enumerates installed DeckLink hardware */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(74E936FC-CC28-4A67-81A0-1E94E52D4E69),
|
||||
helpstring("enumerates installed DeckLink hardware")
|
||||
] interface IDeckLinkIterator_v8_0 : IUnknown
|
||||
{
|
||||
HRESULT Next([out] IDeckLink_v8_0 **deckLinkInstance);
|
||||
};
|
||||
|
||||
|
||||
/* Coclasses */
|
||||
|
||||
importlib("stdole2.tlb");
|
||||
|
||||
[
|
||||
uuid(D9EDA3B3-2887-41FA-B724-017CF1EB1D37),
|
||||
helpstring("CDeckLinkIterator Class (DeckLink API v8.0)")
|
||||
] coclass CDeckLinkIterator_v8_0
|
||||
{
|
||||
[default] interface IDeckLinkIterator_v8_0;
|
||||
};
|
101
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v8_1.idl
Normal file
101
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v8_1.idl
Normal file
@@ -0,0 +1,101 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2011 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
/* DeckLinkAPI_v8_1.idl */
|
||||
|
||||
/* Enum BMDDeckControlVTRControlState_v8_1 - VTR Control state */
|
||||
|
||||
typedef [v1_enum] enum _BMDDeckControlVTRControlState_v8_1 {
|
||||
bmdDeckControlNotInVTRControlMode_v8_1 = /* 'nvcm' */ 0x6E76636D,
|
||||
bmdDeckControlVTRControlPlaying_v8_1 = /* 'vtrp' */ 0x76747270,
|
||||
bmdDeckControlVTRControlRecording_v8_1 = /* 'vtrr' */ 0x76747272,
|
||||
bmdDeckControlVTRControlStill_v8_1 = /* 'vtra' */ 0x76747261,
|
||||
bmdDeckControlVTRControlSeeking_v8_1 = /* 'vtrs' */ 0x76747273,
|
||||
bmdDeckControlVTRControlStopped_v8_1 = /* 'vtro' */ 0x7674726F
|
||||
} BMDDeckControlVTRControlState_v8_1;
|
||||
|
||||
|
||||
interface IDeckLinkDeckControlStatusCallback;
|
||||
interface IDeckLinkDeckControl;
|
||||
|
||||
/* Interface IDeckLinkDeckControlStatusCallback_v8_1 - Deck control state change callback. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(E5F693C1-4283-4716-B18F-C1431521955B),
|
||||
helpstring("Deck control state change callback.")
|
||||
] interface IDeckLinkDeckControlStatusCallback_v8_1 : IUnknown
|
||||
{
|
||||
HRESULT TimecodeUpdate([in] BMDTimecodeBCD currentTimecode);
|
||||
HRESULT VTRControlStateChanged([in] BMDDeckControlVTRControlState_v8_1 newState, [in] BMDDeckControlError error);
|
||||
HRESULT DeckControlEventReceived([in] BMDDeckControlEvent event, [in] BMDDeckControlError error);
|
||||
HRESULT DeckControlStatusChanged([in] BMDDeckControlStatusFlags flags, [in] unsigned int mask);
|
||||
};
|
||||
|
||||
/* Interface IDeckLinkDeckControl - Deck Control main interface */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(522A9E39-0F3C-4742-94EE-D80DE335DA1D),
|
||||
helpstring("Deck Control main interface")
|
||||
] interface IDeckLinkDeckControl_v8_1 : IUnknown
|
||||
{
|
||||
HRESULT Open([in] BMDTimeScale timeScale, [in] BMDTimeValue timeValue, [in] BOOL timecodeIsDropFrame, [out] BMDDeckControlError *error);
|
||||
HRESULT Close([in] BOOL standbyOn);
|
||||
HRESULT GetCurrentState([out] BMDDeckControlMode *mode, [out] BMDDeckControlVTRControlState_v8_1 *vtrControlState, [out] BMDDeckControlStatusFlags *flags);
|
||||
HRESULT SetStandby([in] BOOL standbyOn);
|
||||
HRESULT SendCommand([in] unsigned char *inBuffer, [in] unsigned int inBufferSize, [out] unsigned char *outBuffer, [out] unsigned int *outDataSize, [in] unsigned int outBufferSize, [out] BMDDeckControlError *error);
|
||||
HRESULT Play([out] BMDDeckControlError *error);
|
||||
HRESULT Stop([out] BMDDeckControlError *error);
|
||||
HRESULT TogglePlayStop([out] BMDDeckControlError *error);
|
||||
HRESULT Eject([out] BMDDeckControlError *error);
|
||||
HRESULT GoToTimecode([in] BMDTimecodeBCD timecode, [out] BMDDeckControlError *error);
|
||||
HRESULT FastForward([in] BOOL viewTape, [out] BMDDeckControlError *error);
|
||||
HRESULT Rewind([in] BOOL viewTape, [out] BMDDeckControlError *error);
|
||||
HRESULT StepForward([out] BMDDeckControlError *error);
|
||||
HRESULT StepBack([out] BMDDeckControlError *error);
|
||||
HRESULT Jog([in] double rate, [out] BMDDeckControlError *error);
|
||||
HRESULT Shuttle([in] double rate, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecodeString([out] BSTR *currentTimeCode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecode([out] IDeckLinkTimecode **currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetTimecodeBCD([out] BMDTimecodeBCD *currentTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT SetPreroll([in] unsigned int prerollSeconds);
|
||||
HRESULT GetPreroll([out] unsigned int *prerollSeconds);
|
||||
HRESULT SetExportOffset([in] int exportOffsetFields);
|
||||
HRESULT GetExportOffset([out] int *exportOffsetFields);
|
||||
HRESULT GetManualExportOffset([out] int *deckManualExportOffsetFields);
|
||||
HRESULT SetCaptureOffset([in] int captureOffsetFields);
|
||||
HRESULT GetCaptureOffset([out] int *captureOffsetFields);
|
||||
HRESULT StartExport([in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [in] BMDDeckControlExportModeOpsFlags exportModeOps, [out] BMDDeckControlError *error);
|
||||
HRESULT StartCapture([in] BOOL useVITC, [in] BMDTimecodeBCD inTimecode, [in] BMDTimecodeBCD outTimecode, [out] BMDDeckControlError *error);
|
||||
HRESULT GetDeviceID([out] unsigned short *deviceId, [out] BMDDeckControlError *error);
|
||||
HRESULT Abort(void);
|
||||
HRESULT CrashRecordStart([out] BMDDeckControlError *error);
|
||||
HRESULT CrashRecordStop([out] BMDDeckControlError *error);
|
||||
HRESULT SetCallback([in] IDeckLinkDeckControlStatusCallback_v8_1 *callback);
|
||||
};
|
||||
|
||||
|
68
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v9_2.idl
Normal file
68
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v9_2.idl
Normal file
@@ -0,0 +1,68 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2012 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
|
||||
/* DeckLinkAPI_v9_2.idl */
|
||||
|
||||
|
||||
/* Interface IDeckLinkInput_v9_2 - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(6D40EF78-28B9-4E21-990D-95BB7750A04F),
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkInput_v9_2 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoInputFlags flags, [out] BMDDisplayModeSupport *result, [out] IDeckLinkDisplayMode **resultDisplayMode);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback *previewCallback);
|
||||
|
||||
/* Video Input */
|
||||
|
||||
HRESULT EnableVideoInput([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoInputFlags flags);
|
||||
HRESULT DisableVideoInput(void);
|
||||
HRESULT GetAvailableVideoFrameCount([out] unsigned int *availableFrameCount);
|
||||
|
||||
/* Audio Input */
|
||||
|
||||
HRESULT EnableAudioInput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned int channelCount);
|
||||
HRESULT DisableAudioInput(void);
|
||||
HRESULT GetAvailableAudioSampleFrameCount([out] unsigned int *availableSampleFrameCount);
|
||||
|
||||
/* Input Control */
|
||||
|
||||
HRESULT StartStreams(void);
|
||||
HRESULT StopStreams(void);
|
||||
HRESULT PauseStreams(void);
|
||||
HRESULT FlushStreams(void);
|
||||
HRESULT SetCallback([in] IDeckLinkInputCallback *theCallback);
|
||||
|
||||
/* Hardware Timing */
|
||||
|
||||
HRESULT GetHardwareReferenceClock([in] BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
87
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v9_9.idl
Normal file
87
plugins/decklink/win/decklink-sdk/DeckLinkAPI_v9_9.idl
Normal file
@@ -0,0 +1,87 @@
|
||||
/* -LICENSE-START-
|
||||
** Copyright (c) 2012 Blackmagic Design
|
||||
**
|
||||
** Permission is hereby granted, free of charge, to any person or organization
|
||||
** obtaining a copy of the software and accompanying documentation covered by
|
||||
** this license (the "Software") to use, reproduce, display, distribute,
|
||||
** 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
|
||||
** SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
** FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
** ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
** DEALINGS IN THE SOFTWARE.
|
||||
** -LICENSE-END-
|
||||
*/
|
||||
|
||||
/* DeckLinkAPI_v9_9.idl */
|
||||
|
||||
|
||||
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(A3EF0963-0862-44ED-92A9-EE89ABF431C7),
|
||||
local,
|
||||
helpstring("Created by QueryInterface from IDeckLink.")
|
||||
] interface IDeckLinkOutput_v9_9 : IUnknown
|
||||
{
|
||||
HRESULT DoesSupportVideoMode([in] BMDDisplayMode displayMode, [in] BMDPixelFormat pixelFormat, [in] BMDVideoOutputFlags flags, [out] BMDDisplayModeSupport *result, [out] IDeckLinkDisplayMode **resultDisplayMode);
|
||||
HRESULT GetDisplayModeIterator([out] IDeckLinkDisplayModeIterator **iterator);
|
||||
|
||||
HRESULT SetScreenPreviewCallback([in] IDeckLinkScreenPreviewCallback *previewCallback);
|
||||
|
||||
/* Video Output */
|
||||
|
||||
HRESULT EnableVideoOutput([in] BMDDisplayMode displayMode, [in] BMDVideoOutputFlags flags);
|
||||
HRESULT DisableVideoOutput(void);
|
||||
|
||||
HRESULT SetVideoOutputFrameMemoryAllocator([in] IDeckLinkMemoryAllocator *theAllocator);
|
||||
HRESULT CreateVideoFrame([in] int width, [in] int height, [in] int rowBytes, [in] BMDPixelFormat pixelFormat, [in] BMDFrameFlags flags, [out] IDeckLinkMutableVideoFrame **outFrame);
|
||||
HRESULT CreateAncillaryData([in] BMDPixelFormat pixelFormat, [out] IDeckLinkVideoFrameAncillary **outBuffer);
|
||||
|
||||
HRESULT DisplayVideoFrameSync([in] IDeckLinkVideoFrame *theFrame);
|
||||
HRESULT ScheduleVideoFrame([in] IDeckLinkVideoFrame *theFrame, [in] BMDTimeValue displayTime, [in] BMDTimeValue displayDuration, [in] BMDTimeScale timeScale);
|
||||
HRESULT SetScheduledFrameCompletionCallback([in] IDeckLinkVideoOutputCallback *theCallback);
|
||||
HRESULT GetBufferedVideoFrameCount([out] unsigned int *bufferedFrameCount);
|
||||
|
||||
/* Audio Output */
|
||||
|
||||
HRESULT EnableAudioOutput([in] BMDAudioSampleRate sampleRate, [in] BMDAudioSampleType sampleType, [in] unsigned int channelCount, [in] BMDAudioOutputStreamType streamType);
|
||||
HRESULT DisableAudioOutput(void);
|
||||
|
||||
HRESULT WriteAudioSamplesSync([in] void *buffer, [in] unsigned int sampleFrameCount, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT BeginAudioPreroll(void);
|
||||
HRESULT EndAudioPreroll(void);
|
||||
HRESULT ScheduleAudioSamples([in] void *buffer, [in] unsigned int sampleFrameCount, [in] BMDTimeValue streamTime, [in] BMDTimeScale timeScale, [out] unsigned int *sampleFramesWritten);
|
||||
|
||||
HRESULT GetBufferedAudioSampleFrameCount([out] unsigned int *bufferedSampleFrameCount);
|
||||
HRESULT FlushBufferedAudioSamples(void);
|
||||
|
||||
HRESULT SetAudioCallback([in] IDeckLinkAudioOutputCallback *theCallback);
|
||||
|
||||
/* Output Control */
|
||||
|
||||
HRESULT StartScheduledPlayback([in] BMDTimeValue playbackStartTime, [in] BMDTimeScale timeScale, [in] double playbackSpeed);
|
||||
HRESULT StopScheduledPlayback([in] BMDTimeValue stopPlaybackAtTime, [out] BMDTimeValue *actualStopTime, [in] BMDTimeScale timeScale);
|
||||
HRESULT IsScheduledPlaybackRunning([out] BOOL *active);
|
||||
HRESULT GetScheduledStreamTime([in] BMDTimeScale desiredTimeScale, [out] BMDTimeValue *streamTime, [out] double *playbackSpeed);
|
||||
HRESULT GetReferenceStatus([out] BMDReferenceStatus *referenceStatus);
|
||||
|
||||
/* Hardware Timing */
|
||||
|
||||
HRESULT GetHardwareReferenceClock([in] BMDTimeScale desiredTimeScale, [out] BMDTimeValue *hardwareTime, [out] BMDTimeValue *timeInFrame, [out] BMDTimeValue *ticksPerFrame);
|
||||
};
|
||||
|
Reference in New Issue
Block a user