mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
decklink: Update OS X SDK headers to 10.3.1
This commit is contained in:
parent
5d74b4ba42
commit
9a8a944d2f
10 changed files with 307 additions and 109 deletions
|
@ -30,7 +30,7 @@ libgstdecklink_la_SOURCES = \
|
||||||
|
|
||||||
if DECKLINK_OSX
|
if DECKLINK_OSX
|
||||||
libgstdecklink_la_SOURCES += \
|
libgstdecklink_la_SOURCES += \
|
||||||
osx/DeckLinkAPIDispatch-osx.cpp
|
osx/DeckLinkAPIDispatch.cpp
|
||||||
else
|
else
|
||||||
libgstdecklink_la_SOURCES += \
|
libgstdecklink_la_SOURCES += \
|
||||||
linux/DeckLinkAPIDispatch.cpp
|
linux/DeckLinkAPIDispatch.cpp
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,6 +28,15 @@
|
||||||
#ifndef BMD_DECKLINKAPI_H
|
#ifndef BMD_DECKLINKAPI_H
|
||||||
#define BMD_DECKLINKAPI_H
|
#define BMD_DECKLINKAPI_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* DeckLink API */
|
/* DeckLink API */
|
||||||
|
|
||||||
#include <CoreFoundation/CoreFoundation.h>
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
@ -49,26 +58,30 @@
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLinkVideoOutputCallback /* 20AA5225-1958-47CB-820B-80A8D521A6EE */ (REFIID){0x20,0xAA,0x52,0x25,0x19,0x58,0x47,0xCB,0x82,0x0B,0x80,0xA8,0xD5,0x21,0xA6,0xEE}
|
BMD_CONST REFIID IID_IDeckLinkVideoOutputCallback = /* 20AA5225-1958-47CB-820B-80A8D521A6EE */ {0x20,0xAA,0x52,0x25,0x19,0x58,0x47,0xCB,0x82,0x0B,0x80,0xA8,0xD5,0x21,0xA6,0xEE};
|
||||||
#define IID_IDeckLinkInputCallback /* DD04E5EC-7415-42AB-AE4A-E80C4DFC044A */ (REFIID){0xDD,0x04,0xE5,0xEC,0x74,0x15,0x42,0xAB,0xAE,0x4A,0xE8,0x0C,0x4D,0xFC,0x04,0x4A}
|
BMD_CONST REFIID IID_IDeckLinkInputCallback = /* DD04E5EC-7415-42AB-AE4A-E80C4DFC044A */ {0xDD,0x04,0xE5,0xEC,0x74,0x15,0x42,0xAB,0xAE,0x4A,0xE8,0x0C,0x4D,0xFC,0x04,0x4A};
|
||||||
#define IID_IDeckLinkMemoryAllocator /* B36EB6E7-9D29-4AA8-92EF-843B87A289E8 */ (REFIID){0xB3,0x6E,0xB6,0xE7,0x9D,0x29,0x4A,0xA8,0x92,0xEF,0x84,0x3B,0x87,0xA2,0x89,0xE8}
|
BMD_CONST REFIID IID_IDeckLinkMemoryAllocator = /* B36EB6E7-9D29-4AA8-92EF-843B87A289E8 */ {0xB3,0x6E,0xB6,0xE7,0x9D,0x29,0x4A,0xA8,0x92,0xEF,0x84,0x3B,0x87,0xA2,0x89,0xE8};
|
||||||
#define IID_IDeckLinkAudioOutputCallback /* 403C681B-7F46-4A12-B993-2BB127084EE6 */ (REFIID){0x40,0x3C,0x68,0x1B,0x7F,0x46,0x4A,0x12,0xB9,0x93,0x2B,0xB1,0x27,0x08,0x4E,0xE6}
|
BMD_CONST REFIID IID_IDeckLinkAudioOutputCallback = /* 403C681B-7F46-4A12-B993-2BB127084EE6 */ {0x40,0x3C,0x68,0x1B,0x7F,0x46,0x4A,0x12,0xB9,0x93,0x2B,0xB1,0x27,0x08,0x4E,0xE6};
|
||||||
#define IID_IDeckLinkIterator /* 50FB36CD-3063-4B73-BDBB-958087F2D8BA */ (REFIID){0x50,0xFB,0x36,0xCD,0x30,0x63,0x4B,0x73,0xBD,0xBB,0x95,0x80,0x87,0xF2,0xD8,0xBA}
|
BMD_CONST REFIID IID_IDeckLinkIterator = /* 50FB36CD-3063-4B73-BDBB-958087F2D8BA */ {0x50,0xFB,0x36,0xCD,0x30,0x63,0x4B,0x73,0xBD,0xBB,0x95,0x80,0x87,0xF2,0xD8,0xBA};
|
||||||
#define IID_IDeckLinkAPIInformation /* 7BEA3C68-730D-4322-AF34-8A7152B532A4 */ (REFIID){0x7B,0xEA,0x3C,0x68,0x73,0x0D,0x43,0x22,0xAF,0x34,0x8A,0x71,0x52,0xB5,0x32,0xA4}
|
BMD_CONST REFIID IID_IDeckLinkAPIInformation = /* 7BEA3C68-730D-4322-AF34-8A7152B532A4 */ {0x7B,0xEA,0x3C,0x68,0x73,0x0D,0x43,0x22,0xAF,0x34,0x8A,0x71,0x52,0xB5,0x32,0xA4};
|
||||||
#define IID_IDeckLinkOutput /* A3EF0963-0862-44ED-92A9-EE89ABF431C7 */ (REFIID){0xA3,0xEF,0x09,0x63,0x08,0x62,0x44,0xED,0x92,0xA9,0xEE,0x89,0xAB,0xF4,0x31,0xC7}
|
BMD_CONST REFIID IID_IDeckLinkOutput = /* CC5C8A6E-3F2F-4B3A-87EA-FD78AF300564 */ {0xCC,0x5C,0x8A,0x6E,0x3F,0x2F,0x4B,0x3A,0x87,0xEA,0xFD,0x78,0xAF,0x30,0x05,0x64};
|
||||||
#define IID_IDeckLinkInput /* 6D40EF78-28B9-4E21-990D-95BB7750A04F */ (REFIID){0x6D,0x40,0xEF,0x78,0x28,0xB9,0x4E,0x21,0x99,0x0D,0x95,0xBB,0x77,0x50,0xA0,0x4F}
|
BMD_CONST REFIID IID_IDeckLinkInput = /* AF22762B-DFAC-4846-AA79-FA8883560995 */ {0xAF,0x22,0x76,0x2B,0xDF,0xAC,0x48,0x46,0xAA,0x79,0xFA,0x88,0x83,0x56,0x09,0x95};
|
||||||
#define IID_IDeckLinkVideoFrame /* 3F716FE0-F023-4111-BE5D-EF4414C05B17 */ (REFIID){0x3F,0x71,0x6F,0xE0,0xF0,0x23,0x41,0x11,0xBE,0x5D,0xEF,0x44,0x14,0xC0,0x5B,0x17}
|
BMD_CONST REFIID IID_IDeckLinkVideoFrame = /* 3F716FE0-F023-4111-BE5D-EF4414C05B17 */ {0x3F,0x71,0x6F,0xE0,0xF0,0x23,0x41,0x11,0xBE,0x5D,0xEF,0x44,0x14,0xC0,0x5B,0x17};
|
||||||
#define IID_IDeckLinkMutableVideoFrame /* 69E2639F-40DA-4E19-B6F2-20ACE815C390 */ (REFIID){0x69,0xE2,0x63,0x9F,0x40,0xDA,0x4E,0x19,0xB6,0xF2,0x20,0xAC,0xE8,0x15,0xC3,0x90}
|
BMD_CONST REFIID IID_IDeckLinkMutableVideoFrame = /* 69E2639F-40DA-4E19-B6F2-20ACE815C390 */ {0x69,0xE2,0x63,0x9F,0x40,0xDA,0x4E,0x19,0xB6,0xF2,0x20,0xAC,0xE8,0x15,0xC3,0x90};
|
||||||
#define IID_IDeckLinkVideoFrame3DExtensions /* DA0F7E4A-EDC7-48A8-9CDD-2DB51C729CD7 */ (REFIID){0xDA,0x0F,0x7E,0x4A,0xED,0xC7,0x48,0xA8,0x9C,0xDD,0x2D,0xB5,0x1C,0x72,0x9C,0xD7}
|
BMD_CONST REFIID IID_IDeckLinkVideoFrame3DExtensions = /* DA0F7E4A-EDC7-48A8-9CDD-2DB51C729CD7 */ {0xDA,0x0F,0x7E,0x4A,0xED,0xC7,0x48,0xA8,0x9C,0xDD,0x2D,0xB5,0x1C,0x72,0x9C,0xD7};
|
||||||
#define IID_IDeckLinkVideoInputFrame /* 05CFE374-537C-4094-9A57-680525118F44 */ (REFIID){0x05,0xCF,0xE3,0x74,0x53,0x7C,0x40,0x94,0x9A,0x57,0x68,0x05,0x25,0x11,0x8F,0x44}
|
BMD_CONST REFIID IID_IDeckLinkVideoInputFrame = /* 05CFE374-537C-4094-9A57-680525118F44 */ {0x05,0xCF,0xE3,0x74,0x53,0x7C,0x40,0x94,0x9A,0x57,0x68,0x05,0x25,0x11,0x8F,0x44};
|
||||||
#define IID_IDeckLinkVideoFrameAncillary /* 732E723C-D1A4-4E29-9E8E-4A88797A0004 */ (REFIID){0x73,0x2E,0x72,0x3C,0xD1,0xA4,0x4E,0x29,0x9E,0x8E,0x4A,0x88,0x79,0x7A,0x00,0x04}
|
BMD_CONST REFIID IID_IDeckLinkVideoFrameAncillary = /* 732E723C-D1A4-4E29-9E8E-4A88797A0004 */ {0x73,0x2E,0x72,0x3C,0xD1,0xA4,0x4E,0x29,0x9E,0x8E,0x4A,0x88,0x79,0x7A,0x00,0x04};
|
||||||
#define IID_IDeckLinkAudioInputPacket /* E43D5870-2894-11DE-8C30-0800200C9A66 */ (REFIID){0xE4,0x3D,0x58,0x70,0x28,0x94,0x11,0xDE,0x8C,0x30,0x08,0x00,0x20,0x0C,0x9A,0x66}
|
BMD_CONST REFIID IID_IDeckLinkAudioInputPacket = /* E43D5870-2894-11DE-8C30-0800200C9A66 */ {0xE4,0x3D,0x58,0x70,0x28,0x94,0x11,0xDE,0x8C,0x30,0x08,0x00,0x20,0x0C,0x9A,0x66};
|
||||||
#define IID_IDeckLinkScreenPreviewCallback /* B1D3F49A-85FE-4C5D-95C8-0B5D5DCCD438 */ (REFIID){0xB1,0xD3,0xF4,0x9A,0x85,0xFE,0x4C,0x5D,0x95,0xC8,0x0B,0x5D,0x5D,0xCC,0xD4,0x38}
|
BMD_CONST REFIID IID_IDeckLinkScreenPreviewCallback = /* B1D3F49A-85FE-4C5D-95C8-0B5D5DCCD438 */ {0xB1,0xD3,0xF4,0x9A,0x85,0xFE,0x4C,0x5D,0x95,0xC8,0x0B,0x5D,0x5D,0xCC,0xD4,0x38};
|
||||||
#define IID_IDeckLinkCocoaScreenPreviewCallback /* D174152F-8F96-4C07-83A5-DD5F5AF0A2AA */ (REFIID){0xD1,0x74,0x15,0x2F,0x8F,0x96,0x4C,0x07,0x83,0xA5,0xDD,0x5F,0x5A,0xF0,0xA2,0xAA}
|
BMD_CONST REFIID IID_IDeckLinkCocoaScreenPreviewCallback = /* D174152F-8F96-4C07-83A5-DD5F5AF0A2AA */ {0xD1,0x74,0x15,0x2F,0x8F,0x96,0x4C,0x07,0x83,0xA5,0xDD,0x5F,0x5A,0xF0,0xA2,0xAA};
|
||||||
#define IID_IDeckLinkGLScreenPreviewHelper /* 504E2209-CAC7-4C1A-9FB4-C5BB6274D22F */ (REFIID){0x50,0x4E,0x22,0x09,0xCA,0xC7,0x4C,0x1A,0x9F,0xB4,0xC5,0xBB,0x62,0x74,0xD2,0x2F}
|
BMD_CONST REFIID IID_IDeckLinkGLScreenPreviewHelper = /* 504E2209-CAC7-4C1A-9FB4-C5BB6274D22F */ {0x50,0x4E,0x22,0x09,0xCA,0xC7,0x4C,0x1A,0x9F,0xB4,0xC5,0xBB,0x62,0x74,0xD2,0x2F};
|
||||||
#define IID_IDeckLinkAttributes /* ABC11843-D966-44CB-96E2-A1CB5D3135C4 */ (REFIID){0xAB,0xC1,0x18,0x43,0xD9,0x66,0x44,0xCB,0x96,0xE2,0xA1,0xCB,0x5D,0x31,0x35,0xC4}
|
BMD_CONST REFIID IID_IDeckLinkNotificationCallback = /* B002A1EC-070D-4288-8289-BD5D36E5FF0D */ {0xB0,0x02,0xA1,0xEC,0x07,0x0D,0x42,0x88,0x82,0x89,0xBD,0x5D,0x36,0xE5,0xFF,0x0D};
|
||||||
#define IID_IDeckLinkKeyer /* 89AFCAF5-65F8-421E-98F7-96FE5F5BFBA3 */ (REFIID){0x89,0xAF,0xCA,0xF5,0x65,0xF8,0x42,0x1E,0x98,0xF7,0x96,0xFE,0x5F,0x5B,0xFB,0xA3}
|
BMD_CONST REFIID IID_IDeckLinkNotification = /* 0A1FB207-E215-441B-9B19-6FA1575946C5 */ {0x0A,0x1F,0xB2,0x07,0xE2,0x15,0x44,0x1B,0x9B,0x19,0x6F,0xA1,0x57,0x59,0x46,0xC5};
|
||||||
#define IID_IDeckLinkVideoConversion /* 3BBCB8A2-DA2C-42D9-B5D8-88083644E99A */ (REFIID){0x3B,0xBC,0xB8,0xA2,0xDA,0x2C,0x42,0xD9,0xB5,0xD8,0x88,0x08,0x36,0x44,0xE9,0x9A}
|
BMD_CONST REFIID IID_IDeckLinkAttributes = /* ABC11843-D966-44CB-96E2-A1CB5D3135C4 */ {0xAB,0xC1,0x18,0x43,0xD9,0x66,0x44,0xCB,0x96,0xE2,0xA1,0xCB,0x5D,0x31,0x35,0xC4};
|
||||||
|
BMD_CONST REFIID IID_IDeckLinkKeyer = /* 89AFCAF5-65F8-421E-98F7-96FE5F5BFBA3 */ {0x89,0xAF,0xCA,0xF5,0x65,0xF8,0x42,0x1E,0x98,0xF7,0x96,0xFE,0x5F,0x5B,0xFB,0xA3};
|
||||||
|
BMD_CONST REFIID IID_IDeckLinkVideoConversion = /* 3BBCB8A2-DA2C-42D9-B5D8-88083644E99A */ {0x3B,0xBC,0xB8,0xA2,0xDA,0x2C,0x42,0xD9,0xB5,0xD8,0x88,0x08,0x36,0x44,0xE9,0x9A};
|
||||||
|
BMD_CONST REFIID IID_IDeckLinkDeviceNotificationCallback = /* 4997053B-0ADF-4CC8-AC70-7A50C4BE728F */ {0x49,0x97,0x05,0x3B,0x0A,0xDF,0x4C,0xC8,0xAC,0x70,0x7A,0x50,0xC4,0xBE,0x72,0x8F};
|
||||||
|
BMD_CONST REFIID IID_IDeckLinkDiscovery = /* CDBF631C-BC76-45FA-B44D-C55059BC6101 */ {0xCD,0xBF,0x63,0x1C,0xBC,0x76,0x45,0xFA,0xB4,0x4D,0xC5,0x50,0x59,0xBC,0x61,0x01};
|
||||||
|
|
||||||
/* Enum BMDVideoOutputFlags - Flags to control the output of ancillary data along with video. */
|
/* Enum BMDVideoOutputFlags - Flags to control the output of ancillary data along with video. */
|
||||||
|
|
||||||
|
@ -116,7 +129,16 @@ enum _BMDVideoInputFormatChangedEvents {
|
||||||
typedef uint32_t BMDDetectedVideoInputFormatFlags;
|
typedef uint32_t BMDDetectedVideoInputFormatFlags;
|
||||||
enum _BMDDetectedVideoInputFormatFlags {
|
enum _BMDDetectedVideoInputFormatFlags {
|
||||||
bmdDetectedVideoInputYCbCr422 = 1 << 0,
|
bmdDetectedVideoInputYCbCr422 = 1 << 0,
|
||||||
bmdDetectedVideoInputRGB444 = 1 << 1
|
bmdDetectedVideoInputRGB444 = 1 << 1,
|
||||||
|
bmdDetectedVideoInputDualStream3D = 1 << 2
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Enum BMDDeckLinkCapturePassthroughMode - Enumerates whether the video output is electrically connected to the video input or if the clean switching mode is enabled */
|
||||||
|
|
||||||
|
typedef uint32_t BMDDeckLinkCapturePassthroughMode;
|
||||||
|
enum _BMDDeckLinkCapturePassthroughMode {
|
||||||
|
bmdDeckLinkCapturePassthroughModeDirect = 'pdir',
|
||||||
|
bmdDeckLinkCapturePassthroughModeCleanSwitch = 'pcln'
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Enum BMDOutputFrameCompletionResult - Frame Completion Callback */
|
/* Enum BMDOutputFrameCompletionResult - Frame Completion Callback */
|
||||||
|
@ -175,7 +197,7 @@ enum _BMDDisplayModeSupport {
|
||||||
typedef uint32_t BMDTimecodeFormat;
|
typedef uint32_t BMDTimecodeFormat;
|
||||||
enum _BMDTimecodeFormat {
|
enum _BMDTimecodeFormat {
|
||||||
bmdTimecodeRP188VITC1 = 'rpv1', // RP188 timecode where DBB1 equals VITC1 (line 9)
|
bmdTimecodeRP188VITC1 = 'rpv1', // RP188 timecode where DBB1 equals VITC1 (line 9)
|
||||||
bmdTimecodeRP188VITC2 = 'rp12', // RP188 timecode where DBB1 equals VITC2 (line 571)
|
bmdTimecodeRP188VITC2 = 'rp12', // RP188 timecode where DBB1 equals VITC2 (line 9 for progressive or line 571 for interlaced/PsF)
|
||||||
bmdTimecodeRP188LTC = 'rplt', // RP188 timecode where DBB1 equals LTC (line 10)
|
bmdTimecodeRP188LTC = 'rplt', // RP188 timecode where DBB1 equals LTC (line 10)
|
||||||
bmdTimecodeRP188Any = 'rp18', // For capture: return the first valid timecode in {VITC1, LTC ,VITC2} - For playback: set the timecode as VITC1
|
bmdTimecodeRP188Any = 'rp18', // For capture: return the first valid timecode in {VITC1, LTC ,VITC2} - For playback: set the timecode as VITC1
|
||||||
bmdTimecodeVITC = 'vitc',
|
bmdTimecodeVITC = 'vitc',
|
||||||
|
@ -191,15 +213,6 @@ enum _BMDAnalogVideoFlags {
|
||||||
bmdAnalogVideoFlagComponentBetacamLevels = 1 << 1
|
bmdAnalogVideoFlagComponentBetacamLevels = 1 << 1
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Enum BMDAudioConnection - Audio connection types */
|
|
||||||
|
|
||||||
typedef uint32_t BMDAudioConnection;
|
|
||||||
enum _BMDAudioConnection {
|
|
||||||
bmdAudioConnectionEmbedded = 'embd',
|
|
||||||
bmdAudioConnectionAESEBU = 'aes ',
|
|
||||||
bmdAudioConnectionAnalog = 'anlg'
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Enum BMDAudioOutputAnalogAESSwitch - Audio output Analog/AESEBU switch */
|
/* Enum BMDAudioOutputAnalogAESSwitch - Audio output Analog/AESEBU switch */
|
||||||
|
|
||||||
typedef uint32_t BMDAudioOutputAnalogAESSwitch;
|
typedef uint32_t BMDAudioOutputAnalogAESSwitch;
|
||||||
|
@ -280,15 +293,24 @@ enum _BMDDeckLinkAttributeID {
|
||||||
BMDDeckLinkHasVideoInputAntiAliasingFilter = 'aafl',
|
BMDDeckLinkHasVideoInputAntiAliasingFilter = 'aafl',
|
||||||
BMDDeckLinkHasBypass = 'byps',
|
BMDDeckLinkHasBypass = 'byps',
|
||||||
BMDDeckLinkSupportsDesktopDisplay = 'extd',
|
BMDDeckLinkSupportsDesktopDisplay = 'extd',
|
||||||
|
BMDDeckLinkSupportsClockTimingAdjustment = 'ctad',
|
||||||
|
BMDDeckLinkSupportsFullDuplex = 'fdup',
|
||||||
|
BMDDeckLinkSupportsFullFrameReferenceInputTimingOffset = 'frin',
|
||||||
|
|
||||||
/* Integers */
|
/* Integers */
|
||||||
|
|
||||||
BMDDeckLinkMaximumAudioChannels = 'mach',
|
BMDDeckLinkMaximumAudioChannels = 'mach',
|
||||||
|
BMDDeckLinkMaximumAnalogAudioChannels = 'aach',
|
||||||
BMDDeckLinkNumberOfSubDevices = 'nsbd',
|
BMDDeckLinkNumberOfSubDevices = 'nsbd',
|
||||||
BMDDeckLinkSubDeviceIndex = 'subi',
|
BMDDeckLinkSubDeviceIndex = 'subi',
|
||||||
|
BMDDeckLinkPersistentID = 'peid',
|
||||||
|
BMDDeckLinkTopologicalID = 'toid',
|
||||||
BMDDeckLinkVideoOutputConnections = 'vocn',
|
BMDDeckLinkVideoOutputConnections = 'vocn',
|
||||||
BMDDeckLinkVideoInputConnections = 'vicn',
|
BMDDeckLinkVideoInputConnections = 'vicn',
|
||||||
|
BMDDeckLinkAudioOutputConnections = 'aocn',
|
||||||
|
BMDDeckLinkAudioInputConnections = 'aicn',
|
||||||
BMDDeckLinkDeviceBusyState = 'dbst',
|
BMDDeckLinkDeviceBusyState = 'dbst',
|
||||||
|
BMDDeckLinkVideoIOSupport = 'vios', // Returns a BMDVideoIOSupport bit field
|
||||||
|
|
||||||
/* Floats */
|
/* Floats */
|
||||||
|
|
||||||
|
@ -318,6 +340,14 @@ enum _BMDDeviceBusyState {
|
||||||
bmdDeviceSerialPortBusy = 1 << 2
|
bmdDeviceSerialPortBusy = 1 << 2
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Enum BMDVideoIOSupport - Device video input/output support */
|
||||||
|
|
||||||
|
typedef uint32_t BMDVideoIOSupport;
|
||||||
|
enum _BMDVideoIOSupport {
|
||||||
|
bmdDeviceSupportsCapture = 1 << 0,
|
||||||
|
bmdDeviceSupportsPlayback = 1 << 1
|
||||||
|
};
|
||||||
|
|
||||||
/* Enum BMD3DPreviewFormat - Linked Frame preview format */
|
/* Enum BMD3DPreviewFormat - Linked Frame preview format */
|
||||||
|
|
||||||
typedef uint32_t BMD3DPreviewFormat;
|
typedef uint32_t BMD3DPreviewFormat;
|
||||||
|
@ -329,6 +359,13 @@ enum _BMD3DPreviewFormat {
|
||||||
bmd3DPreviewFormatTopBottom = 'topb'
|
bmd3DPreviewFormatTopBottom = 'topb'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Enum BMDNotifications - Events that can be subscribed through IDeckLinkNotification */
|
||||||
|
|
||||||
|
typedef uint32_t BMDNotifications;
|
||||||
|
enum _BMDNotifications {
|
||||||
|
bmdPreferencesChanged = 'pref'
|
||||||
|
};
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
|
|
||||||
// Forward Declarations
|
// Forward Declarations
|
||||||
|
@ -350,9 +387,13 @@ class IDeckLinkAudioInputPacket;
|
||||||
class IDeckLinkScreenPreviewCallback;
|
class IDeckLinkScreenPreviewCallback;
|
||||||
class IDeckLinkCocoaScreenPreviewCallback;
|
class IDeckLinkCocoaScreenPreviewCallback;
|
||||||
class IDeckLinkGLScreenPreviewHelper;
|
class IDeckLinkGLScreenPreviewHelper;
|
||||||
|
class IDeckLinkNotificationCallback;
|
||||||
|
class IDeckLinkNotification;
|
||||||
class IDeckLinkAttributes;
|
class IDeckLinkAttributes;
|
||||||
class IDeckLinkKeyer;
|
class IDeckLinkKeyer;
|
||||||
class IDeckLinkVideoConversion;
|
class IDeckLinkVideoConversion;
|
||||||
|
class IDeckLinkDeviceNotificationCallback;
|
||||||
|
class IDeckLinkDiscovery;
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoOutputCallback - Frame completion callback. */
|
/* Interface IDeckLinkVideoOutputCallback - Frame completion callback. */
|
||||||
|
|
||||||
|
@ -363,7 +404,7 @@ public:
|
||||||
virtual HRESULT ScheduledPlaybackHasStopped (void) = 0;
|
virtual HRESULT ScheduledPlaybackHasStopped (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoOutputCallback () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoOutputCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkInputCallback - Frame arrival callback. */
|
/* Interface IDeckLinkInputCallback - Frame arrival callback. */
|
||||||
|
@ -375,7 +416,7 @@ public:
|
||||||
virtual HRESULT VideoInputFrameArrived (/* in */ IDeckLinkVideoInputFrame* videoFrame, /* in */ IDeckLinkAudioInputPacket* audioPacket) = 0;
|
virtual HRESULT VideoInputFrameArrived (/* in */ IDeckLinkVideoInputFrame* videoFrame, /* in */ IDeckLinkAudioInputPacket* audioPacket) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkInputCallback () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkInputCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkMemoryAllocator - Memory allocator for video frames. */
|
/* Interface IDeckLinkMemoryAllocator - Memory allocator for video frames. */
|
||||||
|
@ -417,7 +458,7 @@ public:
|
||||||
virtual HRESULT GetString (/* in */ BMDDeckLinkAPIInformationID cfgID, /* out */ CFStringRef *value) = 0;
|
virtual HRESULT GetString (/* in */ BMDDeckLinkAPIInformationID cfgID, /* out */ CFStringRef *value) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkAPIInformation () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkAPIInformation () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
/* Interface IDeckLinkOutput - Created by QueryInterface from IDeckLink. */
|
||||||
|
@ -471,9 +512,10 @@ public:
|
||||||
/* Hardware Timing */
|
/* Hardware Timing */
|
||||||
|
|
||||||
virtual HRESULT GetHardwareReferenceClock (/* in */ BMDTimeScale desiredTimeScale, /* out */ BMDTimeValue *hardwareTime, /* out */ BMDTimeValue *timeInFrame, /* out */ BMDTimeValue *ticksPerFrame) = 0;
|
virtual HRESULT GetHardwareReferenceClock (/* in */ BMDTimeScale desiredTimeScale, /* out */ BMDTimeValue *hardwareTime, /* out */ BMDTimeValue *timeInFrame, /* out */ BMDTimeValue *ticksPerFrame) = 0;
|
||||||
|
virtual HRESULT GetFrameCompletionReferenceTimestamp (/* in */ IDeckLinkVideoFrame *theFrame, /* in */ BMDTimeScale desiredTimeScale, /* out */ BMDTimeValue *frameCompletionTimestamp) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkOutput () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkOutput () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkInput - Created by QueryInterface from IDeckLink. */
|
/* Interface IDeckLinkInput - Created by QueryInterface from IDeckLink. */
|
||||||
|
@ -491,6 +533,7 @@ public:
|
||||||
virtual HRESULT EnableVideoInput (/* in */ BMDDisplayMode displayMode, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDVideoInputFlags flags) = 0;
|
virtual HRESULT EnableVideoInput (/* in */ BMDDisplayMode displayMode, /* in */ BMDPixelFormat pixelFormat, /* in */ BMDVideoInputFlags flags) = 0;
|
||||||
virtual HRESULT DisableVideoInput (void) = 0;
|
virtual HRESULT DisableVideoInput (void) = 0;
|
||||||
virtual HRESULT GetAvailableVideoFrameCount (/* out */ uint32_t *availableFrameCount) = 0;
|
virtual HRESULT GetAvailableVideoFrameCount (/* out */ uint32_t *availableFrameCount) = 0;
|
||||||
|
virtual HRESULT SetVideoInputFrameMemoryAllocator (/* in */ IDeckLinkMemoryAllocator *theAllocator) = 0;
|
||||||
|
|
||||||
/* Audio Input */
|
/* Audio Input */
|
||||||
|
|
||||||
|
@ -511,7 +554,7 @@ public:
|
||||||
virtual HRESULT GetHardwareReferenceClock (/* in */ BMDTimeScale desiredTimeScale, /* out */ BMDTimeValue *hardwareTime, /* out */ BMDTimeValue *timeInFrame, /* out */ BMDTimeValue *ticksPerFrame) = 0;
|
virtual HRESULT GetHardwareReferenceClock (/* in */ BMDTimeScale desiredTimeScale, /* out */ BMDTimeValue *hardwareTime, /* out */ BMDTimeValue *timeInFrame, /* out */ BMDTimeValue *ticksPerFrame) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkInput () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkInput () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoFrame - Interface to encapsulate a video frame; can be caller-implemented. */
|
/* Interface IDeckLinkVideoFrame - Interface to encapsulate a video frame; can be caller-implemented. */
|
||||||
|
@ -530,7 +573,7 @@ public:
|
||||||
virtual HRESULT GetAncillaryData (/* out */ IDeckLinkVideoFrameAncillary **ancillary) = 0;
|
virtual HRESULT GetAncillaryData (/* out */ IDeckLinkVideoFrameAncillary **ancillary) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoFrame () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoFrame () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkMutableVideoFrame - Created by IDeckLinkOutput::CreateVideoFrame. */
|
/* Interface IDeckLinkMutableVideoFrame - Created by IDeckLinkOutput::CreateVideoFrame. */
|
||||||
|
@ -546,7 +589,7 @@ public:
|
||||||
virtual HRESULT SetTimecodeUserBits (/* in */ BMDTimecodeFormat format, /* in */ BMDTimecodeUserBits userBits) = 0;
|
virtual HRESULT SetTimecodeUserBits (/* in */ BMDTimecodeFormat format, /* in */ BMDTimecodeUserBits userBits) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkMutableVideoFrame () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkMutableVideoFrame () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoFrame3DExtensions - Optional interface implemented on IDeckLinkVideoFrame to support 3D frames */
|
/* Interface IDeckLinkVideoFrame3DExtensions - Optional interface implemented on IDeckLinkVideoFrame to support 3D frames */
|
||||||
|
@ -558,7 +601,7 @@ public:
|
||||||
virtual HRESULT GetFrameForRightEye (/* out */ IDeckLinkVideoFrame* *rightEyeFrame) = 0;
|
virtual HRESULT GetFrameForRightEye (/* out */ IDeckLinkVideoFrame* *rightEyeFrame) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoFrame3DExtensions () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoFrame3DExtensions () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
/* Interface IDeckLinkVideoInputFrame - Provided by the IDeckLinkVideoInput frame arrival callback. */
|
||||||
|
@ -570,7 +613,7 @@ public:
|
||||||
virtual HRESULT GetHardwareReferenceTimestamp (/* in */ BMDTimeScale timeScale, /* out */ BMDTimeValue *frameTime, /* out */ BMDTimeValue *frameDuration) = 0;
|
virtual HRESULT GetHardwareReferenceTimestamp (/* in */ BMDTimeScale timeScale, /* out */ BMDTimeValue *frameTime, /* out */ BMDTimeValue *frameDuration) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoInputFrame () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoInputFrame () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoFrameAncillary - Obtained through QueryInterface() on an IDeckLinkVideoFrame object. */
|
/* Interface IDeckLinkVideoFrameAncillary - Obtained through QueryInterface() on an IDeckLinkVideoFrame object. */
|
||||||
|
@ -584,7 +627,7 @@ public:
|
||||||
virtual BMDDisplayMode GetDisplayMode (void) = 0;
|
virtual BMDDisplayMode GetDisplayMode (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoFrameAncillary () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoFrameAncillary () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkAudioInputPacket - Provided by the IDeckLinkInput callback. */
|
/* Interface IDeckLinkAudioInputPacket - Provided by the IDeckLinkInput callback. */
|
||||||
|
@ -597,7 +640,7 @@ public:
|
||||||
virtual HRESULT GetPacketTime (/* out */ BMDTimeValue *packetTime, /* in */ BMDTimeScale timeScale) = 0;
|
virtual HRESULT GetPacketTime (/* out */ BMDTimeValue *packetTime, /* in */ BMDTimeScale timeScale) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkAudioInputPacket () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkAudioInputPacket () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkScreenPreviewCallback - Screen preview callback */
|
/* Interface IDeckLinkScreenPreviewCallback - Screen preview callback */
|
||||||
|
@ -608,7 +651,7 @@ public:
|
||||||
virtual HRESULT DrawFrame (/* in */ IDeckLinkVideoFrame *theFrame) = 0;
|
virtual HRESULT DrawFrame (/* in */ IDeckLinkVideoFrame *theFrame) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkScreenPreviewCallback () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkScreenPreviewCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkCocoaScreenPreviewCallback - Screen preview callback for Cocoa-based applications */
|
/* Interface IDeckLinkCocoaScreenPreviewCallback - Screen preview callback for Cocoa-based applications */
|
||||||
|
@ -618,7 +661,7 @@ class IDeckLinkCocoaScreenPreviewCallback : public IDeckLinkScreenPreviewCallbac
|
||||||
public:
|
public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkCocoaScreenPreviewCallback () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkCocoaScreenPreviewCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkGLScreenPreviewHelper - Created with CoCreateInstance(). */
|
/* Interface IDeckLinkGLScreenPreviewHelper - Created with CoCreateInstance(). */
|
||||||
|
@ -635,7 +678,24 @@ public:
|
||||||
virtual HRESULT Set3DPreviewFormat (/* in */ BMD3DPreviewFormat previewFormat) = 0;
|
virtual HRESULT Set3DPreviewFormat (/* in */ BMD3DPreviewFormat previewFormat) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkGLScreenPreviewHelper () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkGLScreenPreviewHelper () {} // call Release method to drop reference count
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Interface IDeckLinkNotificationCallback - DeckLink Notification Callback Interface */
|
||||||
|
|
||||||
|
class IDeckLinkNotificationCallback : public IUnknown
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual HRESULT Notify (/* in */ BMDNotifications topic, /* in */ uint64_t param1, /* in */ uint64_t param2) = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Interface IDeckLinkNotification - DeckLink Notification interface */
|
||||||
|
|
||||||
|
class IDeckLinkNotification : public IUnknown
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual HRESULT Subscribe (/* in */ BMDNotifications topic, /* in */ IDeckLinkNotificationCallback *theCallback) = 0;
|
||||||
|
virtual HRESULT Unsubscribe (/* in */ BMDNotifications topic, /* in */ IDeckLinkNotificationCallback *theCallback) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkAttributes - DeckLink Attribute interface */
|
/* Interface IDeckLinkAttributes - DeckLink Attribute interface */
|
||||||
|
@ -649,7 +709,7 @@ public:
|
||||||
virtual HRESULT GetString (/* in */ BMDDeckLinkAttributeID cfgID, /* out */ CFStringRef *value) = 0;
|
virtual HRESULT GetString (/* in */ BMDDeckLinkAttributeID cfgID, /* out */ CFStringRef *value) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkAttributes () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkAttributes () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkKeyer - DeckLink Keyer interface */
|
/* Interface IDeckLinkKeyer - DeckLink Keyer interface */
|
||||||
|
@ -664,7 +724,7 @@ public:
|
||||||
virtual HRESULT Disable (void) = 0;
|
virtual HRESULT Disable (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkKeyer () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkKeyer () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkVideoConversion - Created with CoCreateInstance(). */
|
/* Interface IDeckLinkVideoConversion - Created with CoCreateInstance(). */
|
||||||
|
@ -675,7 +735,31 @@ public:
|
||||||
virtual HRESULT ConvertFrame (/* in */ IDeckLinkVideoFrame* srcFrame, /* in */ IDeckLinkVideoFrame* dstFrame) = 0;
|
virtual HRESULT ConvertFrame (/* in */ IDeckLinkVideoFrame* srcFrame, /* in */ IDeckLinkVideoFrame* dstFrame) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkVideoConversion () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkVideoConversion () {} // call Release method to drop reference count
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Interface IDeckLinkDeviceNotificationCallback - DeckLink device arrival/removal notification callbacks */
|
||||||
|
|
||||||
|
class IDeckLinkDeviceNotificationCallback : public IUnknown
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual HRESULT DeckLinkDeviceArrived (/* in */ IDeckLink* deckLinkDevice) = 0;
|
||||||
|
virtual HRESULT DeckLinkDeviceRemoved (/* in */ IDeckLink* deckLinkDevice) = 0;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual ~IDeckLinkDeviceNotificationCallback () {} // call Release method to drop reference count
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Interface IDeckLinkDiscovery - DeckLink device discovery */
|
||||||
|
|
||||||
|
class IDeckLinkDiscovery : public IUnknown
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual HRESULT InstallDeviceNotifications (/* in */ IDeckLinkDeviceNotificationCallback* deviceNotificationCallback) = 0;
|
||||||
|
virtual HRESULT UninstallDeviceNotifications (void) = 0;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual ~IDeckLinkDiscovery () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -683,12 +767,13 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
IDeckLinkIterator* CreateDeckLinkIteratorInstance (void);
|
IDeckLinkIterator* CreateDeckLinkIteratorInstance (void);
|
||||||
|
IDeckLinkDiscovery* CreateDeckLinkDiscoveryInstance (void);
|
||||||
IDeckLinkAPIInformation* CreateDeckLinkAPIInformationInstance (void);
|
IDeckLinkAPIInformation* CreateDeckLinkAPIInformationInstance (void);
|
||||||
IDeckLinkGLScreenPreviewHelper* CreateOpenGLScreenPreviewHelper (void);
|
IDeckLinkGLScreenPreviewHelper* CreateOpenGLScreenPreviewHelper (void);
|
||||||
IDeckLinkCocoaScreenPreviewCallback* CreateCocoaScreenPreview (void* /* (NSView*) */ parentView);
|
IDeckLinkCocoaScreenPreviewCallback* CreateCocoaScreenPreview (void* /* (NSView*) */ parentView);
|
||||||
IDeckLinkVideoConversion* CreateVideoConversionInstance (void);
|
IDeckLinkVideoConversion* CreateVideoConversionInstance (void);
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif // defined(__cplusplus)
|
#endif // defined(__cplusplus)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,12 +28,21 @@
|
||||||
#ifndef BMD_DECKLINKAPICONFIGURATION_H
|
#ifndef BMD_DECKLINKAPICONFIGURATION_H
|
||||||
#define BMD_DECKLINKAPICONFIGURATION_H
|
#define BMD_DECKLINKAPICONFIGURATION_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLinkConfiguration /* C679A35B-610C-4D09-B748-1D0478100FC0 */ (REFIID){0xC6,0x79,0xA3,0x5B,0x61,0x0C,0x4D,0x09,0xB7,0x48,0x1D,0x04,0x78,0x10,0x0F,0xC0}
|
BMD_CONST REFIID IID_IDeckLinkConfiguration = /* 1E69FCF6-4203-4936-8076-2A9F4CFD50CB */ {0x1E,0x69,0xFC,0xF6,0x42,0x03,0x49,0x36,0x80,0x76,0x2A,0x9F,0x4C,0xFD,0x50,0xCB};
|
||||||
|
|
||||||
/* Enum BMDDeckLinkConfigurationID - DeckLink Configuration ID */
|
/* Enum BMDDeckLinkConfigurationID - DeckLink Configuration ID */
|
||||||
|
|
||||||
|
@ -52,6 +61,7 @@ enum _BMDDeckLinkConfigurationID {
|
||||||
|
|
||||||
bmdDeckLinkConfigHDMI3DPackingFormat = '3dpf',
|
bmdDeckLinkConfigHDMI3DPackingFormat = '3dpf',
|
||||||
bmdDeckLinkConfigBypass = 'byps',
|
bmdDeckLinkConfigBypass = 'byps',
|
||||||
|
bmdDeckLinkConfigClockTimingAdjustment = 'ctad',
|
||||||
|
|
||||||
/* Audio Input/Output Flags */
|
/* Audio Input/Output Flags */
|
||||||
|
|
||||||
|
@ -62,7 +72,7 @@ enum _BMDDeckLinkConfigurationID {
|
||||||
bmdDeckLinkConfigFieldFlickerRemoval = 'fdfr',
|
bmdDeckLinkConfigFieldFlickerRemoval = 'fdfr',
|
||||||
bmdDeckLinkConfigHD1080p24ToHD1080i5994Conversion = 'to59',
|
bmdDeckLinkConfigHD1080p24ToHD1080i5994Conversion = 'to59',
|
||||||
bmdDeckLinkConfig444SDIVideoOutput = '444o',
|
bmdDeckLinkConfig444SDIVideoOutput = '444o',
|
||||||
bmdDeckLinkConfig3GBpsVideoOutput = '3gbs',
|
bmdDeckLinkConfigSingleLinkVideoOutput = 'sglo',
|
||||||
bmdDeckLinkConfigBlackVideoOutputDuringCapture = 'bvoc',
|
bmdDeckLinkConfigBlackVideoOutputDuringCapture = 'bvoc',
|
||||||
bmdDeckLinkConfigLowLatencyVideoOutput = 'llvo',
|
bmdDeckLinkConfigLowLatencyVideoOutput = 'llvo',
|
||||||
|
|
||||||
|
@ -73,6 +83,8 @@ enum _BMDDeckLinkConfigurationID {
|
||||||
bmdDeckLinkConfigAnalogVideoOutputFlags = 'avof',
|
bmdDeckLinkConfigAnalogVideoOutputFlags = 'avof',
|
||||||
bmdDeckLinkConfigReferenceInputTimingOffset = 'glot',
|
bmdDeckLinkConfigReferenceInputTimingOffset = 'glot',
|
||||||
bmdDeckLinkConfigVideoOutputIdleOperation = 'voio',
|
bmdDeckLinkConfigVideoOutputIdleOperation = 'voio',
|
||||||
|
bmdDeckLinkConfigDefaultVideoOutputMode = 'dvom',
|
||||||
|
bmdDeckLinkConfigDefaultVideoOutputModeFlags = 'dvof',
|
||||||
|
|
||||||
/* Video Output Floats */
|
/* Video Output Floats */
|
||||||
|
|
||||||
|
@ -87,6 +99,7 @@ enum _BMDDeckLinkConfigurationID {
|
||||||
/* Video Input Flags */
|
/* Video Input Flags */
|
||||||
|
|
||||||
bmdDeckLinkConfigVideoInputScanning = 'visc', // Applicable to H264 Pro Recorder only
|
bmdDeckLinkConfigVideoInputScanning = 'visc', // Applicable to H264 Pro Recorder only
|
||||||
|
bmdDeckLinkConfigUseDedicatedLTCInput = 'dltc', // Use timecode from LTC input instead of SDI stream
|
||||||
|
|
||||||
/* Video Input Integers */
|
/* Video Input Integers */
|
||||||
|
|
||||||
|
@ -97,6 +110,7 @@ enum _BMDDeckLinkConfigurationID {
|
||||||
bmdDeckLinkConfigVANCSourceLine1Mapping = 'vsl1',
|
bmdDeckLinkConfigVANCSourceLine1Mapping = 'vsl1',
|
||||||
bmdDeckLinkConfigVANCSourceLine2Mapping = 'vsl2',
|
bmdDeckLinkConfigVANCSourceLine2Mapping = 'vsl2',
|
||||||
bmdDeckLinkConfigVANCSourceLine3Mapping = 'vsl3',
|
bmdDeckLinkConfigVANCSourceLine3Mapping = 'vsl3',
|
||||||
|
bmdDeckLinkConfigCapturePassThroughMode = 'cptm',
|
||||||
|
|
||||||
/* Video Input Floats */
|
/* Video Input Floats */
|
||||||
|
|
||||||
|
@ -153,7 +167,7 @@ public:
|
||||||
virtual HRESULT WriteConfigurationToPreferences (void) = 0;
|
virtual HRESULT WriteConfigurationToPreferences (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkConfiguration () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkConfiguration () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -161,7 +175,7 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPICONFIGURATION_H) */
|
#endif /* defined(BMD_DECKLINKAPICONFIGURATION_H) */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,13 +28,22 @@
|
||||||
#ifndef BMD_DECKLINKAPIDECKCONTROL_H
|
#ifndef BMD_DECKLINKAPIDECKCONTROL_H
|
||||||
#define BMD_DECKLINKAPIDECKCONTROL_H
|
#define BMD_DECKLINKAPIDECKCONTROL_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLinkDeckControlStatusCallback /* 53436FFB-B434-4906-BADC-AE3060FFE8EF */ (REFIID){0x53,0x43,0x6F,0xFB,0xB4,0x34,0x49,0x06,0xBA,0xDC,0xAE,0x30,0x60,0xFF,0xE8,0xEF}
|
BMD_CONST REFIID IID_IDeckLinkDeckControlStatusCallback = /* 53436FFB-B434-4906-BADC-AE3060FFE8EF */ {0x53,0x43,0x6F,0xFB,0xB4,0x34,0x49,0x06,0xBA,0xDC,0xAE,0x30,0x60,0xFF,0xE8,0xEF};
|
||||||
#define IID_IDeckLinkDeckControl /* 8E1C3ACE-19C7-4E00-8B92-D80431D958BE */ (REFIID){0x8E,0x1C,0x3A,0xCE,0x19,0xC7,0x4E,0x00,0x8B,0x92,0xD8,0x04,0x31,0xD9,0x58,0xBE}
|
BMD_CONST REFIID IID_IDeckLinkDeckControl = /* 8E1C3ACE-19C7-4E00-8B92-D80431D958BE */ {0x8E,0x1C,0x3A,0xCE,0x19,0xC7,0x4E,0x00,0x8B,0x92,0xD8,0x04,0x31,0xD9,0x58,0xBE};
|
||||||
|
|
||||||
/* Enum BMDDeckControlMode - DeckControl mode */
|
/* Enum BMDDeckControlMode - DeckControl mode */
|
||||||
|
|
||||||
|
@ -149,7 +158,7 @@ public:
|
||||||
virtual HRESULT DeckControlStatusChanged (/* in */ BMDDeckControlStatusFlags flags, /* in */ uint32_t mask) = 0;
|
virtual HRESULT DeckControlStatusChanged (/* in */ BMDDeckControlStatusFlags flags, /* in */ uint32_t mask) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkDeckControlStatusCallback () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkDeckControlStatusCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkDeckControl - Deck Control main interface */
|
/* Interface IDeckLinkDeckControl - Deck Control main interface */
|
||||||
|
@ -192,7 +201,7 @@ public:
|
||||||
virtual HRESULT SetCallback (/* in */ IDeckLinkDeckControlStatusCallback *callback) = 0;
|
virtual HRESULT SetCallback (/* in */ IDeckLinkDeckControlStatusCallback *callback) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkDeckControl () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkDeckControl () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -200,7 +209,7 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPIDECKCONTROL_H) */
|
#endif /* defined(BMD_DECKLINKAPIDECKCONTROL_H) */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,12 +28,21 @@
|
||||||
#ifndef BMD_DECKLINKAPIDISCOVERY_H
|
#ifndef BMD_DECKLINKAPIDISCOVERY_H
|
||||||
#define BMD_DECKLINKAPIDISCOVERY_H
|
#define BMD_DECKLINKAPIDISCOVERY_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLink /* C418FBDD-0587-48ED-8FE5-640F0A14AF91 */ (REFIID){0xC4,0x18,0xFB,0xDD,0x05,0x87,0x48,0xED,0x8F,0xE5,0x64,0x0F,0x0A,0x14,0xAF,0x91}
|
BMD_CONST REFIID IID_IDeckLink = /* C418FBDD-0587-48ED-8FE5-640F0A14AF91 */ {0xC4,0x18,0xFB,0xDD,0x05,0x87,0x48,0xED,0x8F,0xE5,0x64,0x0F,0x0A,0x14,0xAF,0x91};
|
||||||
|
|
||||||
// Forward Declarations
|
// Forward Declarations
|
||||||
|
|
||||||
|
@ -48,7 +57,7 @@ public:
|
||||||
virtual HRESULT GetDisplayName (/* out */ CFStringRef *displayName) = 0;
|
virtual HRESULT GetDisplayName (/* out */ CFStringRef *displayName) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLink () {}; // call Release method to drop reference count
|
virtual ~IDeckLink () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -56,7 +65,7 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPIDISCOVERY_H) */
|
#endif /* defined(BMD_DECKLINKAPIDISCOVERY_H) */
|
||||||
|
|
|
@ -33,13 +33,15 @@
|
||||||
#error The DeckLink API version of DeckLinkAPIDispatch.cpp is not the same version as DeckLinkAPI.h
|
#error The DeckLink API version of DeckLinkAPIDispatch.cpp is not the same version as DeckLinkAPI.h
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define kDeckLinkAPI_BundlePath "/Library/Application Support/Blackmagic Design/Blackmagic DeckLink/DeckLinkAPI.bundle"
|
#define kDeckLinkAPI_BundlePath "/Library/Frameworks/DeckLinkAPI.framework"
|
||||||
|
|
||||||
|
|
||||||
typedef IDeckLinkIterator* (*CreateIteratorFunc)(void);
|
typedef IDeckLinkIterator* (*CreateIteratorFunc)(void);
|
||||||
typedef IDeckLinkAPIInformation* (*CreateAPIInformationFunc)(void);
|
typedef IDeckLinkAPIInformation* (*CreateAPIInformationFunc)(void);
|
||||||
typedef IDeckLinkGLScreenPreviewHelper* (*CreateOpenGLScreenPreviewHelperFunc)(void);
|
typedef IDeckLinkGLScreenPreviewHelper* (*CreateOpenGLScreenPreviewHelperFunc)(void);
|
||||||
typedef IDeckLinkCocoaScreenPreviewCallback* (*CreateCocoaScreenPreviewFunc)(void*);
|
typedef IDeckLinkCocoaScreenPreviewCallback* (*CreateCocoaScreenPreviewFunc)(void*);
|
||||||
typedef IDeckLinkVideoConversion* (*CreateVideoConversionInstanceFunc)(void);
|
typedef IDeckLinkVideoConversion* (*CreateVideoConversionInstanceFunc)(void);
|
||||||
|
typedef IDeckLinkDiscovery* (*CreateDeckLinkDiscoveryInstanceFunc)(void);
|
||||||
|
|
||||||
static pthread_once_t gDeckLinkOnceControl = PTHREAD_ONCE_INIT;
|
static pthread_once_t gDeckLinkOnceControl = PTHREAD_ONCE_INIT;
|
||||||
static CFBundleRef gDeckLinkAPIBundleRef = NULL;
|
static CFBundleRef gDeckLinkAPIBundleRef = NULL;
|
||||||
|
@ -48,6 +50,7 @@ static CreateAPIInformationFunc gCreateAPIInformationFunc = NULL;
|
||||||
static CreateOpenGLScreenPreviewHelperFunc gCreateOpenGLPreviewFunc = NULL;
|
static CreateOpenGLScreenPreviewHelperFunc gCreateOpenGLPreviewFunc = NULL;
|
||||||
static CreateCocoaScreenPreviewFunc gCreateCocoaPreviewFunc = NULL;
|
static CreateCocoaScreenPreviewFunc gCreateCocoaPreviewFunc = NULL;
|
||||||
static CreateVideoConversionInstanceFunc gCreateVideoConversionFunc = NULL;
|
static CreateVideoConversionInstanceFunc gCreateVideoConversionFunc = NULL;
|
||||||
|
static CreateDeckLinkDiscoveryInstanceFunc gCreateDeckLinkDiscoveryFunc= NULL;
|
||||||
|
|
||||||
|
|
||||||
void InitDeckLinkAPI (void)
|
void InitDeckLinkAPI (void)
|
||||||
|
@ -65,6 +68,7 @@ void InitDeckLinkAPI (void)
|
||||||
gCreateOpenGLPreviewFunc = (CreateOpenGLScreenPreviewHelperFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateOpenGLScreenPreviewHelper_0001"));
|
gCreateOpenGLPreviewFunc = (CreateOpenGLScreenPreviewHelperFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateOpenGLScreenPreviewHelper_0001"));
|
||||||
gCreateCocoaPreviewFunc = (CreateCocoaScreenPreviewFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateCocoaScreenPreview_0001"));
|
gCreateCocoaPreviewFunc = (CreateCocoaScreenPreviewFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateCocoaScreenPreview_0001"));
|
||||||
gCreateVideoConversionFunc = (CreateVideoConversionInstanceFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateVideoConversionInstance_0001"));
|
gCreateVideoConversionFunc = (CreateVideoConversionInstanceFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateVideoConversionInstance_0001"));
|
||||||
|
gCreateDeckLinkDiscoveryFunc = (CreateDeckLinkDiscoveryInstanceFunc)CFBundleGetFunctionPointerForName(gDeckLinkAPIBundleRef, CFSTR("CreateDeckLinkDiscoveryInstance_0001"));
|
||||||
}
|
}
|
||||||
CFRelease(bundleURL);
|
CFRelease(bundleURL);
|
||||||
}
|
}
|
||||||
|
@ -129,6 +133,17 @@ IDeckLinkVideoConversion* CreateVideoConversionInstance (void)
|
||||||
return gCreateVideoConversionFunc();
|
return gCreateVideoConversionFunc();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IDeckLinkDiscovery* CreateDeckLinkDiscoveryInstance (void)
|
||||||
|
{
|
||||||
|
pthread_once(&gDeckLinkOnceControl, InitDeckLinkAPI);
|
||||||
|
|
||||||
|
if (gCreateDeckLinkDiscoveryFunc == NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
return gCreateDeckLinkDiscoveryFunc();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#define kBMDStreamingAPI_BundlePath "/Library/Application Support/Blackmagic Design/Streaming/BMDStreamingAPI.bundle"
|
#define kBMDStreamingAPI_BundlePath "/Library/Application Support/Blackmagic Design/Streaming/BMDStreamingAPI.bundle"
|
||||||
|
|
||||||
typedef IBMDStreamingDiscovery* (*CreateDiscoveryFunc)(void);
|
typedef IBMDStreamingDiscovery* (*CreateDiscoveryFunc)(void);
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,13 +28,22 @@
|
||||||
#ifndef BMD_DECKLINKAPIMODES_H
|
#ifndef BMD_DECKLINKAPIMODES_H
|
||||||
#define BMD_DECKLINKAPIMODES_H
|
#define BMD_DECKLINKAPIMODES_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLinkDisplayModeIterator /* 9C88499F-F601-4021-B80B-032E4EB41C35 */ (REFIID){0x9C,0x88,0x49,0x9F,0xF6,0x01,0x40,0x21,0xB8,0x0B,0x03,0x2E,0x4E,0xB4,0x1C,0x35}
|
BMD_CONST REFIID IID_IDeckLinkDisplayModeIterator = /* 9C88499F-F601-4021-B80B-032E4EB41C35 */ {0x9C,0x88,0x49,0x9F,0xF6,0x01,0x40,0x21,0xB8,0x0B,0x03,0x2E,0x4E,0xB4,0x1C,0x35};
|
||||||
#define IID_IDeckLinkDisplayMode /* 3EB2C1AB-0A3D-4523-A3AD-F40D7FB14E78 */ (REFIID){0x3E,0xB2,0xC1,0xAB,0x0A,0x3D,0x45,0x23,0xA3,0xAD,0xF4,0x0D,0x7F,0xB1,0x4E,0x78}
|
BMD_CONST REFIID IID_IDeckLinkDisplayMode = /* 3EB2C1AB-0A3D-4523-A3AD-F40D7FB14E78 */ {0x3E,0xB2,0xC1,0xAB,0x0A,0x3D,0x45,0x23,0xA3,0xAD,0xF4,0x0D,0x7F,0xB1,0x4E,0x78};
|
||||||
|
|
||||||
/* Enum BMDDisplayMode - Video display modes */
|
/* Enum BMDDisplayMode - Video display modes */
|
||||||
|
|
||||||
|
@ -75,6 +84,29 @@ enum _BMDDisplayMode {
|
||||||
bmdMode2k24 = '2k24',
|
bmdMode2k24 = '2k24',
|
||||||
bmdMode2k25 = '2k25',
|
bmdMode2k25 = '2k25',
|
||||||
|
|
||||||
|
/* DCI Modes (output only) */
|
||||||
|
|
||||||
|
bmdMode2kDCI2398 = '2d23',
|
||||||
|
bmdMode2kDCI24 = '2d24',
|
||||||
|
bmdMode2kDCI25 = '2d25',
|
||||||
|
|
||||||
|
/* 4k Modes */
|
||||||
|
|
||||||
|
bmdMode4K2160p2398 = '4k23',
|
||||||
|
bmdMode4K2160p24 = '4k24',
|
||||||
|
bmdMode4K2160p25 = '4k25',
|
||||||
|
bmdMode4K2160p2997 = '4k29',
|
||||||
|
bmdMode4K2160p30 = '4k30',
|
||||||
|
bmdMode4K2160p50 = '4k50',
|
||||||
|
bmdMode4K2160p5994 = '4k59',
|
||||||
|
bmdMode4K2160p60 = '4k60',
|
||||||
|
|
||||||
|
/* DCI Modes (output only) */
|
||||||
|
|
||||||
|
bmdMode4kDCI2398 = '4d23',
|
||||||
|
bmdMode4kDCI24 = '4d24',
|
||||||
|
bmdMode4kDCI25 = '4d25',
|
||||||
|
|
||||||
/* Special Modes */
|
/* Special Modes */
|
||||||
|
|
||||||
bmdModeUnknown = 'iunk'
|
bmdModeUnknown = 'iunk'
|
||||||
|
@ -99,7 +131,11 @@ enum _BMDPixelFormat {
|
||||||
bmdFormat10BitYUV = 'v210',
|
bmdFormat10BitYUV = 'v210',
|
||||||
bmdFormat8BitARGB = 32,
|
bmdFormat8BitARGB = 32,
|
||||||
bmdFormat8BitBGRA = 'BGRA',
|
bmdFormat8BitBGRA = 'BGRA',
|
||||||
bmdFormat10BitRGB = 'r210' // Big-endian RGB 10-bit per component with SMPTE video levels (64-960). Packed as 2:10:10:10
|
bmdFormat10BitRGB = 'r210', // Big-endian RGB 10-bit per component with SMPTE video levels (64-960). Packed as 2:10:10:10
|
||||||
|
bmdFormat12BitRGB = 'R12B', // Big-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
|
||||||
|
bmdFormat12BitRGBLE = 'R12L', // Little-endian RGB 12-bit per component with full range (0-4095). Packed as 12-bit per component
|
||||||
|
bmdFormat10BitRGBXLE = 'R10l', // Little-endian 10-bit RGB with SMPTE video levels (64-940)
|
||||||
|
bmdFormat10BitRGBX = 'R10b' // Big-endian 10-bit RGB with SMPTE video levels (64-940)
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
|
/* Enum BMDDisplayModeFlags - Flags to describe the characteristics of an IDeckLinkDisplayMode. */
|
||||||
|
@ -124,7 +160,7 @@ public:
|
||||||
virtual HRESULT Next (/* out */ IDeckLinkDisplayMode **deckLinkDisplayMode) = 0;
|
virtual HRESULT Next (/* out */ IDeckLinkDisplayMode **deckLinkDisplayMode) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkDisplayModeIterator () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkDisplayModeIterator () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IDeckLinkDisplayMode - represents a display mode */
|
/* Interface IDeckLinkDisplayMode - represents a display mode */
|
||||||
|
@ -141,7 +177,7 @@ public:
|
||||||
virtual BMDDisplayModeFlags GetFlags (void) = 0;
|
virtual BMDDisplayModeFlags GetFlags (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkDisplayMode () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkDisplayMode () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -149,7 +185,7 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPIMODES_H) */
|
#endif /* defined(BMD_DECKLINKAPIMODES_H) */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,22 +28,31 @@
|
||||||
#ifndef BMD_DECKLINKAPISTREAMING_H
|
#ifndef BMD_DECKLINKAPISTREAMING_H
|
||||||
#define BMD_DECKLINKAPISTREAMING_H
|
#define BMD_DECKLINKAPISTREAMING_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IBMDStreamingDeviceNotificationCallback /* F9531D64-3305-4B29-A387-7F74BB0D0E84 */ (REFIID){0xF9,0x53,0x1D,0x64,0x33,0x05,0x4B,0x29,0xA3,0x87,0x7F,0x74,0xBB,0x0D,0x0E,0x84}
|
BMD_CONST REFIID IID_IBMDStreamingDeviceNotificationCallback = /* F9531D64-3305-4B29-A387-7F74BB0D0E84 */ {0xF9,0x53,0x1D,0x64,0x33,0x05,0x4B,0x29,0xA3,0x87,0x7F,0x74,0xBB,0x0D,0x0E,0x84};
|
||||||
#define IID_IBMDStreamingH264InputCallback /* 823C475F-55AE-46F9-890C-537CC5CEDCCA */ (REFIID){0x82,0x3C,0x47,0x5F,0x55,0xAE,0x46,0xF9,0x89,0x0C,0x53,0x7C,0xC5,0xCE,0xDC,0xCA}
|
BMD_CONST REFIID IID_IBMDStreamingH264InputCallback = /* 823C475F-55AE-46F9-890C-537CC5CEDCCA */ {0x82,0x3C,0x47,0x5F,0x55,0xAE,0x46,0xF9,0x89,0x0C,0x53,0x7C,0xC5,0xCE,0xDC,0xCA};
|
||||||
#define IID_IBMDStreamingDiscovery /* 2C837444-F989-4D87-901A-47C8A36D096D */ (REFIID){0x2C,0x83,0x74,0x44,0xF9,0x89,0x4D,0x87,0x90,0x1A,0x47,0xC8,0xA3,0x6D,0x09,0x6D}
|
BMD_CONST REFIID IID_IBMDStreamingDiscovery = /* 2C837444-F989-4D87-901A-47C8A36D096D */ {0x2C,0x83,0x74,0x44,0xF9,0x89,0x4D,0x87,0x90,0x1A,0x47,0xC8,0xA3,0x6D,0x09,0x6D};
|
||||||
#define IID_IBMDStreamingVideoEncodingMode /* 1AB8035B-CD13-458D-B6DF-5E8F7C2141D9 */ (REFIID){0x1A,0xB8,0x03,0x5B,0xCD,0x13,0x45,0x8D,0xB6,0xDF,0x5E,0x8F,0x7C,0x21,0x41,0xD9}
|
BMD_CONST REFIID IID_IBMDStreamingVideoEncodingMode = /* 1AB8035B-CD13-458D-B6DF-5E8F7C2141D9 */ {0x1A,0xB8,0x03,0x5B,0xCD,0x13,0x45,0x8D,0xB6,0xDF,0x5E,0x8F,0x7C,0x21,0x41,0xD9};
|
||||||
#define IID_IBMDStreamingMutableVideoEncodingMode /* 19BF7D90-1E0A-400D-B2C6-FFC4E78AD49D */ (REFIID){0x19,0xBF,0x7D,0x90,0x1E,0x0A,0x40,0x0D,0xB2,0xC6,0xFF,0xC4,0xE7,0x8A,0xD4,0x9D}
|
BMD_CONST REFIID IID_IBMDStreamingMutableVideoEncodingMode = /* 19BF7D90-1E0A-400D-B2C6-FFC4E78AD49D */ {0x19,0xBF,0x7D,0x90,0x1E,0x0A,0x40,0x0D,0xB2,0xC6,0xFF,0xC4,0xE7,0x8A,0xD4,0x9D};
|
||||||
#define IID_IBMDStreamingVideoEncodingModePresetIterator /* 7AC731A3-C950-4AD0-804A-8377AA51C6C4 */ (REFIID){0x7A,0xC7,0x31,0xA3,0xC9,0x50,0x4A,0xD0,0x80,0x4A,0x83,0x77,0xAA,0x51,0xC6,0xC4}
|
BMD_CONST REFIID IID_IBMDStreamingVideoEncodingModePresetIterator = /* 7AC731A3-C950-4AD0-804A-8377AA51C6C4 */ {0x7A,0xC7,0x31,0xA3,0xC9,0x50,0x4A,0xD0,0x80,0x4A,0x83,0x77,0xAA,0x51,0xC6,0xC4};
|
||||||
#define IID_IBMDStreamingDeviceInput /* 24B6B6EC-1727-44BB-9818-34FF086ACF98 */ (REFIID){0x24,0xB6,0xB6,0xEC,0x17,0x27,0x44,0xBB,0x98,0x18,0x34,0xFF,0x08,0x6A,0xCF,0x98}
|
BMD_CONST REFIID IID_IBMDStreamingDeviceInput = /* 24B6B6EC-1727-44BB-9818-34FF086ACF98 */ {0x24,0xB6,0xB6,0xEC,0x17,0x27,0x44,0xBB,0x98,0x18,0x34,0xFF,0x08,0x6A,0xCF,0x98};
|
||||||
#define IID_IBMDStreamingH264NALPacket /* E260E955-14BE-4395-9775-9F02CC0A9D89 */ (REFIID){0xE2,0x60,0xE9,0x55,0x14,0xBE,0x43,0x95,0x97,0x75,0x9F,0x02,0xCC,0x0A,0x9D,0x89}
|
BMD_CONST REFIID IID_IBMDStreamingH264NALPacket = /* E260E955-14BE-4395-9775-9F02CC0A9D89 */ {0xE2,0x60,0xE9,0x55,0x14,0xBE,0x43,0x95,0x97,0x75,0x9F,0x02,0xCC,0x0A,0x9D,0x89};
|
||||||
#define IID_IBMDStreamingAudioPacket /* D9EB5902-1AD2-43F4-9E2C-3CFA50B5EE19 */ (REFIID){0xD9,0xEB,0x59,0x02,0x1A,0xD2,0x43,0xF4,0x9E,0x2C,0x3C,0xFA,0x50,0xB5,0xEE,0x19}
|
BMD_CONST REFIID IID_IBMDStreamingAudioPacket = /* D9EB5902-1AD2-43F4-9E2C-3CFA50B5EE19 */ {0xD9,0xEB,0x59,0x02,0x1A,0xD2,0x43,0xF4,0x9E,0x2C,0x3C,0xFA,0x50,0xB5,0xEE,0x19};
|
||||||
#define IID_IBMDStreamingMPEG2TSPacket /* 91810D1C-4FB3-4AAA-AE56-FA301D3DFA4C */ (REFIID){0x91,0x81,0x0D,0x1C,0x4F,0xB3,0x4A,0xAA,0xAE,0x56,0xFA,0x30,0x1D,0x3D,0xFA,0x4C}
|
BMD_CONST REFIID IID_IBMDStreamingMPEG2TSPacket = /* 91810D1C-4FB3-4AAA-AE56-FA301D3DFA4C */ {0x91,0x81,0x0D,0x1C,0x4F,0xB3,0x4A,0xAA,0xAE,0x56,0xFA,0x30,0x1D,0x3D,0xFA,0x4C};
|
||||||
#define IID_IBMDStreamingH264NALParser /* 5867F18C-5BFA-4CCC-B2A7-9DFD140417D2 */ (REFIID){0x58,0x67,0xF1,0x8C,0x5B,0xFA,0x4C,0xCC,0xB2,0xA7,0x9D,0xFD,0x14,0x04,0x17,0xD2}
|
BMD_CONST REFIID IID_IBMDStreamingH264NALParser = /* 5867F18C-5BFA-4CCC-B2A7-9DFD140417D2 */ {0x58,0x67,0xF1,0x8C,0x5B,0xFA,0x4C,0xCC,0xB2,0xA7,0x9D,0xFD,0x14,0x04,0x17,0xD2};
|
||||||
|
|
||||||
/* Enum BMDStreamingDeviceMode - Device modes */
|
/* Enum BMDStreamingDeviceMode - Device modes */
|
||||||
|
|
||||||
|
@ -187,7 +196,7 @@ public:
|
||||||
virtual HRESULT StreamingDeviceModeChanged (/* in */ IDeckLink* device, /* in */ BMDStreamingDeviceMode mode) = 0;
|
virtual HRESULT StreamingDeviceModeChanged (/* in */ IDeckLink* device, /* in */ BMDStreamingDeviceMode mode) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingDeviceNotificationCallback () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingDeviceNotificationCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingH264InputCallback - H264 input callbacks. */
|
/* Interface IBMDStreamingH264InputCallback - H264 input callbacks. */
|
||||||
|
@ -203,7 +212,7 @@ public:
|
||||||
virtual HRESULT H264VideoInputModeChanged (void) = 0;
|
virtual HRESULT H264VideoInputModeChanged (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingH264InputCallback () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingH264InputCallback () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingDiscovery - Installs device notifications */
|
/* Interface IBMDStreamingDiscovery - Installs device notifications */
|
||||||
|
@ -215,7 +224,7 @@ public:
|
||||||
virtual HRESULT UninstallDeviceNotifications (void) = 0;
|
virtual HRESULT UninstallDeviceNotifications (void) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingDiscovery () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingDiscovery () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingVideoEncodingMode - Represents an encoded video mode. */
|
/* Interface IBMDStreamingVideoEncodingMode - Represents an encoded video mode. */
|
||||||
|
@ -238,7 +247,7 @@ public:
|
||||||
virtual HRESULT CreateMutableVideoEncodingMode (/* out */ IBMDStreamingMutableVideoEncodingMode** newEncodingMode) = 0; // Creates a mutable copy of the encoding mode
|
virtual HRESULT CreateMutableVideoEncodingMode (/* out */ IBMDStreamingMutableVideoEncodingMode** newEncodingMode) = 0; // Creates a mutable copy of the encoding mode
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingVideoEncodingMode () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingVideoEncodingMode () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingMutableVideoEncodingMode - Represents a mutable encoded video mode. */
|
/* Interface IBMDStreamingMutableVideoEncodingMode - Represents a mutable encoded video mode. */
|
||||||
|
@ -254,7 +263,7 @@ public:
|
||||||
virtual HRESULT SetString (/* in */ BMDStreamingEncodingModePropertyID cfgID, /* in */ CFStringRef value) = 0;
|
virtual HRESULT SetString (/* in */ BMDStreamingEncodingModePropertyID cfgID, /* in */ CFStringRef value) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingMutableVideoEncodingMode () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingMutableVideoEncodingMode () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingVideoEncodingModePresetIterator - Enumerates encoding mode presets */
|
/* Interface IBMDStreamingVideoEncodingModePresetIterator - Enumerates encoding mode presets */
|
||||||
|
@ -265,7 +274,7 @@ public:
|
||||||
virtual HRESULT Next (/* out */ IBMDStreamingVideoEncodingMode** videoEncodingMode) = 0;
|
virtual HRESULT Next (/* out */ IBMDStreamingVideoEncodingMode** videoEncodingMode) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingVideoEncodingModePresetIterator () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingVideoEncodingModePresetIterator () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingDeviceInput - Created by QueryInterface from IDeckLink */
|
/* Interface IBMDStreamingDeviceInput - Created by QueryInterface from IDeckLink */
|
||||||
|
@ -295,7 +304,7 @@ public:
|
||||||
virtual HRESULT SetCallback (/* in */ IUnknown* theCallback) = 0;
|
virtual HRESULT SetCallback (/* in */ IUnknown* theCallback) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingDeviceInput () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingDeviceInput () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingH264NALPacket - Represent an H.264 NAL packet */
|
/* Interface IBMDStreamingH264NALPacket - Represent an H.264 NAL packet */
|
||||||
|
@ -307,10 +316,10 @@ public:
|
||||||
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
||||||
virtual HRESULT GetBytesWithSizePrefix (/* out */ void** buffer) = 0; // Contains a 32-bit unsigned big endian size prefix
|
virtual HRESULT GetBytesWithSizePrefix (/* out */ void** buffer) = 0; // Contains a 32-bit unsigned big endian size prefix
|
||||||
virtual HRESULT GetDisplayTime (/* in */ uint64_t requestedTimeScale, /* out */ uint64_t* displayTime) = 0;
|
virtual HRESULT GetDisplayTime (/* in */ uint64_t requestedTimeScale, /* out */ uint64_t* displayTime) = 0;
|
||||||
virtual HRESULT GetPacketIndex (/* out */ uint32_t* packetIndex) = 0;
|
virtual HRESULT GetPacketIndex (/* out */ uint32_t* packetIndex) = 0; // Deprecated
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingH264NALPacket () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingH264NALPacket () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingAudioPacket - Represents a chunk of audio data */
|
/* Interface IBMDStreamingAudioPacket - Represents a chunk of audio data */
|
||||||
|
@ -322,10 +331,10 @@ public:
|
||||||
virtual long GetPayloadSize (void) = 0;
|
virtual long GetPayloadSize (void) = 0;
|
||||||
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
||||||
virtual HRESULT GetPlayTime (/* in */ uint64_t requestedTimeScale, /* out */ uint64_t* playTime) = 0;
|
virtual HRESULT GetPlayTime (/* in */ uint64_t requestedTimeScale, /* out */ uint64_t* playTime) = 0;
|
||||||
virtual HRESULT GetPacketIndex (/* out */ uint32_t* packetIndex) = 0;
|
virtual HRESULT GetPacketIndex (/* out */ uint32_t* packetIndex) = 0; // Deprecated
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingAudioPacket () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingAudioPacket () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingMPEG2TSPacket - Represent an MPEG2 Transport Stream packet */
|
/* Interface IBMDStreamingMPEG2TSPacket - Represent an MPEG2 Transport Stream packet */
|
||||||
|
@ -337,7 +346,7 @@ public:
|
||||||
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingMPEG2TSPacket () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingMPEG2TSPacket () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Interface IBMDStreamingH264NALParser - For basic NAL parsing */
|
/* Interface IBMDStreamingH264NALParser - For basic NAL parsing */
|
||||||
|
@ -350,7 +359,7 @@ public:
|
||||||
virtual HRESULT GetProfileAndLevelFromSPS (/* in */ IBMDStreamingH264NALPacket* nal, /* out */ uint32_t* profileIdc, /* out */ uint32_t* profileCompatability, /* out */ uint32_t* levelIdc) = 0;
|
virtual HRESULT GetProfileAndLevelFromSPS (/* in */ IBMDStreamingH264NALPacket* nal, /* out */ uint32_t* profileIdc, /* out */ uint32_t* profileCompatability, /* out */ uint32_t* levelIdc) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IBMDStreamingH264NALParser () {}; // call Release method to drop reference count
|
virtual ~IBMDStreamingH264NALParser () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -360,7 +369,7 @@ extern "C" {
|
||||||
IBMDStreamingDiscovery* CreateBMDStreamingDiscoveryInstance (void);
|
IBMDStreamingDiscovery* CreateBMDStreamingDiscoveryInstance (void);
|
||||||
IBMDStreamingH264NALParser* CreateBMDStreamingH264NALParser (void);
|
IBMDStreamingH264NALParser* CreateBMDStreamingH264NALParser (void);
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPISTREAMING_H) */
|
#endif /* defined(BMD_DECKLINKAPISTREAMING_H) */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
** Copyright (c) 2011 Blackmagic Design
|
** Copyright (c) 2014 Blackmagic Design
|
||||||
**
|
**
|
||||||
** Permission is hereby granted, free of charge, to any person or organization
|
** Permission is hereby granted, free of charge, to any person or organization
|
||||||
** obtaining a copy of the software and accompanying documentation covered by
|
** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -28,6 +28,15 @@
|
||||||
#ifndef BMD_DECKLINKAPITYPES_H
|
#ifndef BMD_DECKLINKAPITYPES_H
|
||||||
#define BMD_DECKLINKAPITYPES_H
|
#define BMD_DECKLINKAPITYPES_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef BMD_CONST
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define BMD_CONST __declspec(selectany) static const
|
||||||
|
#else
|
||||||
|
#define BMD_CONST static const
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
// Type Declarations
|
// Type Declarations
|
||||||
|
|
||||||
typedef int64_t BMDTimeValue;
|
typedef int64_t BMDTimeValue;
|
||||||
|
@ -37,14 +46,15 @@ typedef uint32_t BMDTimecodeUserBits;
|
||||||
|
|
||||||
// Interface ID Declarations
|
// Interface ID Declarations
|
||||||
|
|
||||||
#define IID_IDeckLinkTimecode /* BC6CFBD3-8317-4325-AC1C-1216391E9340 */ (REFIID){0xBC,0x6C,0xFB,0xD3,0x83,0x17,0x43,0x25,0xAC,0x1C,0x12,0x16,0x39,0x1E,0x93,0x40}
|
BMD_CONST REFIID IID_IDeckLinkTimecode = /* BC6CFBD3-8317-4325-AC1C-1216391E9340 */ {0xBC,0x6C,0xFB,0xD3,0x83,0x17,0x43,0x25,0xAC,0x1C,0x12,0x16,0x39,0x1E,0x93,0x40};
|
||||||
|
|
||||||
/* Enum BMDTimecodeFlags - Timecode flags */
|
/* Enum BMDTimecodeFlags - Timecode flags */
|
||||||
|
|
||||||
typedef uint32_t BMDTimecodeFlags;
|
typedef uint32_t BMDTimecodeFlags;
|
||||||
enum _BMDTimecodeFlags {
|
enum _BMDTimecodeFlags {
|
||||||
bmdTimecodeFlagDefault = 0,
|
bmdTimecodeFlagDefault = 0,
|
||||||
bmdTimecodeIsDropFrame = 1 << 0
|
bmdTimecodeIsDropFrame = 1 << 0,
|
||||||
|
bmdTimecodeFieldMark = 1 << 1
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Enum BMDVideoConnection - Video connection types */
|
/* Enum BMDVideoConnection - Video connection types */
|
||||||
|
@ -59,6 +69,17 @@ enum _BMDVideoConnection {
|
||||||
bmdVideoConnectionSVideo = 1 << 5
|
bmdVideoConnectionSVideo = 1 << 5
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Enum BMDAudioConnection - Audio connection types */
|
||||||
|
|
||||||
|
typedef uint32_t BMDAudioConnection;
|
||||||
|
enum _BMDAudioConnection {
|
||||||
|
bmdAudioConnectionEmbedded = 1 << 0,
|
||||||
|
bmdAudioConnectionAESEBU = 1 << 1,
|
||||||
|
bmdAudioConnectionAnalog = 1 << 2,
|
||||||
|
bmdAudioConnectionAnalogXLR = 1 << 3,
|
||||||
|
bmdAudioConnectionAnalogRCA = 1 << 4
|
||||||
|
};
|
||||||
|
|
||||||
// Forward Declarations
|
// Forward Declarations
|
||||||
|
|
||||||
class IDeckLinkTimecode;
|
class IDeckLinkTimecode;
|
||||||
|
@ -75,7 +96,7 @@ public:
|
||||||
virtual HRESULT GetTimecodeUserBits (/* out */ BMDTimecodeUserBits *userBits) = 0;
|
virtual HRESULT GetTimecodeUserBits (/* out */ BMDTimecodeUserBits *userBits) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual ~IDeckLinkTimecode () {}; // call Release method to drop reference count
|
virtual ~IDeckLinkTimecode () {} // call Release method to drop reference count
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Functions */
|
/* Functions */
|
||||||
|
@ -83,7 +104,7 @@ protected:
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif /* defined(BMD_DECKLINKAPITYPES_H) */
|
#endif /* defined(BMD_DECKLINKAPITYPES_H) */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* -LICENSE-START-
|
/* -LICENSE-START-
|
||||||
* ** Copyright (c) 2011 Blackmagic Design
|
* ** Copyright (c) 2014 Blackmagic Design
|
||||||
* **
|
* **
|
||||||
* ** Permission is hereby granted, free of charge, to any person or organization
|
* ** Permission is hereby granted, free of charge, to any person or organization
|
||||||
* ** obtaining a copy of the software and accompanying documentation covered by
|
* ** obtaining a copy of the software and accompanying documentation covered by
|
||||||
|
@ -27,11 +27,11 @@
|
||||||
|
|
||||||
/* DeckLinkAPIVersion.h */
|
/* DeckLinkAPIVersion.h */
|
||||||
|
|
||||||
#ifndef __DeckLink_API_Verison_h__
|
#ifndef __DeckLink_API_Version_h__
|
||||||
#define __DeckLink_API_Version_h__
|
#define __DeckLink_API_Version_h__
|
||||||
|
|
||||||
#define BLACKMAGIC_DECKLINK_API_VERSION 0x09000000
|
#define BLACKMAGIC_DECKLINK_API_VERSION 0x0a030100
|
||||||
#define BLACKMAGIC_DECKLINK_API_VERSION_STRING "9.0"
|
#define BLACKMAGIC_DECKLINK_API_VERSION_STRING "10.3.1"
|
||||||
|
|
||||||
#endif // __DeckLink_API_Version_h__
|
#endif // __DeckLink_API_Version_h__
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue