22 #include <DeckLinkAPI.h>
24 #include <DeckLinkAPI_i.c>
26 #include <DeckLinkAPIDispatch.cpp>
41 IDeckLinkIterator *CreateDeckLinkIteratorInstance(
void)
43 IDeckLinkIterator *iter;
45 if (CoInitialize(
NULL) < 0) {
50 if (CoCreateInstance(CLSID_CDeckLinkIterator,
NULL, CLSCTX_ALL,
51 IID_IDeckLinkIterator, (
void**) &iter) !=
S_OK) {
64 int l = WideCharToMultiByte(CP_UTF8, 0, w, -1, 0, 0, 0, 0);
67 WideCharToMultiByte(CP_UTF8, 0, w, -1, s, l, 0, 0);
70 #define DECKLINK_STR OLECHAR *
71 #define DECKLINK_STRDUP dup_wchar_to_utf8
72 #define DECKLINK_FREE(s) SysFreeString(s)
73 #define DECKLINK_BOOL BOOL
74 #elif defined(__APPLE__)
75 static char *dup_cfstring_to_utf8(CFStringRef w)
78 CFStringGetCString(w, s, 255, kCFStringEncodingUTF8);
81 #define DECKLINK_STR const __CFString *
82 #define DECKLINK_STRDUP dup_cfstring_to_utf8
83 #define DECKLINK_FREE(s) free((void *) s)
84 #define DECKLINK_BOOL bool
86 #define DECKLINK_STR const char *
87 #define DECKLINK_STRDUP av_strdup
89 #define DECKLINK_FREE(s) free((void *) s)
90 #define DECKLINK_BOOL bool
96 HRESULT hr = This->GetDisplayName(&tmpDisplayName);
108 BMDDeckLinkAttributeID attr_id = (cfg_id == bmdDeckLinkConfigAudioInputConnection) ? BMDDeckLinkAudioInputConnections : BMDDeckLinkVideoInputConnections;
109 int64_t bmd_input = (cfg_id == bmdDeckLinkConfigAudioInputConnection) ? (int64_t)
ctx->audio_input : (int64_t)
ctx->video_input;
110 const char *type_name = (cfg_id == bmdDeckLinkConfigAudioInputConnection) ?
"audio" :
"video";
111 int64_t supported_connections = 0;
115 res =
ctx->attr->GetInt(attr_id, &supported_connections);
120 if ((supported_connections & bmd_input) != bmd_input) {
121 av_log(avctx,
AV_LOG_ERROR,
"Device does not support selected %s input.\n", type_name);
124 res =
ctx->cfg->SetInt(cfg_id, bmd_input);
135 int tb_num,
int tb_den,
140 BMDDisplayModeSupport support;
141 IDeckLinkDisplayModeIterator *itermode;
142 IDeckLinkDisplayMode *
mode;
146 av_log(avctx,
AV_LOG_DEBUG,
"Trying to find mode for frame size %dx%d, frame timing %d/%d, direction %d, mode number %d\n",
147 width, height, tb_num, tb_den, direction, num);
149 if (
ctx->duplex_mode) {
152 if (
ctx->attr->GetFlag(BMDDeckLinkSupportsDuplexModeConfiguration, &duplex_supported) !=
S_OK)
153 duplex_supported =
false;
155 if (duplex_supported) {
156 res =
ctx->cfg->SetInt(bmdDeckLinkConfigDuplexMode,
ctx->duplex_mode == 2 ? bmdDuplexModeFull : bmdDuplexModeHalf);
160 av_log(avctx,
AV_LOG_VERBOSE,
"Successfully set duplex mode to %s duplex.\n",
ctx->duplex_mode == 2 ?
"full" :
"half");
174 res =
ctx->dli->GetDisplayModeIterator (&itermode);
176 res =
ctx->dlo->GetDisplayModeIterator (&itermode);
185 ctx->bmd_mode = bmdModeUnknown;
186 while ((
ctx->bmd_mode == bmdModeUnknown) && itermode->Next(&mode) ==
S_OK) {
187 BMDTimeValue bmd_tb_num, bmd_tb_den;
188 int bmd_width = mode->GetWidth();
189 int bmd_height = mode->GetHeight();
191 mode->GetFrameRate(&bmd_tb_num, &bmd_tb_den);
194 if ((bmd_width == width && bmd_height == height &&
195 !
av_cmp_q(mode_tb, target_tb)) || i == num) {
196 ctx->bmd_mode = mode->GetDisplayMode();
197 ctx->bmd_width = bmd_width;
198 ctx->bmd_height = bmd_height;
199 ctx->bmd_tb_den = bmd_tb_den;
200 ctx->bmd_tb_num = bmd_tb_num;
201 ctx->bmd_field_dominance = mode->GetFieldDominance();
203 bmd_width, bmd_height, 1/
av_q2d(mode_tb),
204 (
ctx->bmd_field_dominance==bmdLowerFieldFirst ||
ctx->bmd_field_dominance==bmdUpperFieldFirst)?
"(i)":
"");
213 if (
ctx->bmd_mode == bmdModeUnknown)
216 if (
ctx->dli->DoesSupportVideoMode(
ctx->bmd_mode, bmdFormat8BitYUV,
217 bmdVideoOutputFlagDefault,
221 if (
ctx->dlo->DoesSupportVideoMode(
ctx->bmd_mode, bmdFormat8BitYUV,
222 bmdVideoOutputFlagDefault,
226 if (support == bmdDisplayModeSupported)
238 IDeckLink *dl =
NULL;
239 IDeckLinkIterator *iter = CreateDeckLinkIteratorInstance();
245 while (iter->Next(&dl) ==
S_OK) {
246 const char *displayName;
260 IDeckLinkDisplayModeIterator *itermode;
261 IDeckLinkDisplayMode *
mode;
273 res =
ctx->dli->GetDisplayModeIterator (&itermode);
275 res =
ctx->dlo->GetDisplayModeIterator (&itermode);
285 while (itermode->Next(&mode) ==
S_OK) {
286 BMDTimeValue tb_num, tb_den;
287 mode->GetFrameRate(&tb_num, &tb_den);
289 ++i,mode->GetWidth(), mode->GetHeight(),
290 (int) tb_den, (
int) tb_num);
291 switch (mode->GetFieldDominance()) {
292 case bmdLowerFieldFirst:
294 case bmdUpperFieldFirst:
316 ctx->attr->Release();
327 IDeckLink *dl =
NULL;
328 IDeckLinkIterator *iter = CreateDeckLinkIteratorInstance();
334 while (iter->Next(&dl) ==
S_OK) {
335 const char *displayName;
337 if (!strcmp(name, displayName)) {
349 if (
ctx->dl->QueryInterface(IID_IDeckLinkConfiguration, (
void **)&
ctx->cfg) !=
S_OK) {
350 av_log(avctx,
AV_LOG_ERROR,
"Could not get configuration interface for '%s'\n", name);
355 if (
ctx->dl->QueryInterface(IID_IDeckLinkAttributes, (
void **)&
ctx->attr) !=
S_OK) {
#define AV_LOG_WARNING
Something somehow does not look correct.
int ff_decklink_init_device(AVFormatContext *avctx, const char *name)
static double av_q2d(AVRational a)
Convert an AVRational to a double.
#define AV_LOG_VERBOSE
Detailed information.
int ff_decklink_set_format(AVFormatContext *avctx, int width, int height, int tb_num, int tb_den, decklink_direction_t direction, int num)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
static char * dup_wchar_to_utf8(wchar_t *w)
char filename[1024]
input or output filename
int ff_decklink_list_formats(AVFormatContext *avctx, decklink_direction_t direction)
#define AV_LOG_INFO
Standard information.
char * av_strdup(const char *s)
Duplicate a string.
int ff_decklink_list_devices(AVFormatContext *avctx)
static AVRational av_make_q(int num, int den)
Create an AVRational.
static int decklink_select_input(AVFormatContext *avctx, BMDDeckLinkConfigurationID cfg_id)
HRESULT ff_decklink_get_display_name(IDeckLink *This, const char **displayName)
Rational number (pair of numerator and denominator).
void ff_decklink_cleanup(AVFormatContext *avctx)
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
void * priv_data
Format private data.
#define AVERROR_EXTERNAL
Generic error in an external library.