Skip to content
Snippets Groups Projects
Commit 086f3c07 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

decklink: allow building on Windows

We don't have any system specific calls in our code. It seems the decklink_str_t
only needs special handling on macOS. It's a char* on Linux and Windows.
parent 64859ec9
No related branches found
No related tags found
1 merge request!626decklink: allow building on Windows
Pipeline #138586 passed with stage
in 25 minutes and 53 seconds
......@@ -32,9 +32,7 @@
/* Portability code to deal with differences how the Blackmagic SDK
handles strings on various platforms */
#ifdef _WIN32
#error FIXME: Win32 is known to not work for decklink.
#elif defined(__APPLE__)
#if defined(__APPLE__)
#include <vlc_common.h>
#include <vlc_charset.h>
typedef CFStringRef decklink_str_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment