New upstream version 26.1.0+dfsg1
This commit is contained in:
parent
040dcc3fc2
commit
013818c4af
594 changed files with 19576 additions and 4478 deletions
|
|
@ -20,6 +20,16 @@ IDeckLinkIterator *CreateDeckLinkIteratorInstance(void)
|
|||
return result == S_OK ? iterator : nullptr;
|
||||
}
|
||||
|
||||
IDeckLinkVideoConversion *CreateVideoConversionInstance(void)
|
||||
{
|
||||
IDeckLinkVideoConversion *conversion;
|
||||
const HRESULT result = CoCreateInstance(CLSID_CDeckLinkVideoConversion,
|
||||
nullptr, CLSCTX_ALL,
|
||||
IID_IDeckLinkVideoConversion,
|
||||
(void **)&conversion);
|
||||
return result == S_OK ? conversion : nullptr;
|
||||
}
|
||||
|
||||
bool DeckLinkStringToStdString(decklink_string_t input, std::string &output)
|
||||
{
|
||||
if (input == nullptr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue