mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
decklink: Add some newlines in long defines
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4738>
This commit is contained in:
parent
72e7ae724f
commit
ab582a3b7d
1 changed files with 13 additions and 9 deletions
|
@ -58,9 +58,13 @@
|
|||
s = (char *) malloc(_length); \
|
||||
CFStringGetCString(_s, s, _length, kCFStringEncodingUTF8); \
|
||||
CFRelease(_s); \
|
||||
} G_STMT_END
|
||||
} G_STMT_END
|
||||
#define FREE_COM_STRING(s) free(s);
|
||||
#define CONVERT_TO_COM_STRING(s) G_STMT_START { char * _s = (char *)s; s = CFStringCreateWithCString(kCFAllocatorDefault, _s, kCFStringEncodingUTF8); g_free(_s); } G_STMT_END
|
||||
#define CONVERT_TO_COM_STRING(s) G_STMT_START { \
|
||||
char * _s = (char *)s; \
|
||||
s = CFStringCreateWithCString(kCFAllocatorDefault, _s, kCFStringEncodingUTF8); \
|
||||
g_free(_s); \
|
||||
} G_STMT_END
|
||||
#define WINAPI
|
||||
#else /* Linux */
|
||||
#include "linux/DeckLinkAPI.h"
|
||||
|
|
Loading…
Reference in a new issue