Skip to content

Commit b0e8c88

Browse files
authored
Merge pull request #31 from OPENSPHERE-Inc/patch-0.6.1
0.6.1
2 parents 1fef993 + b1bf8cd commit b0e8c88

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

buildspec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"name": "osi-src-link",
4040
"displayName": "SRC-Link Plugin",
41-
"version": "0.6.0",
41+
"version": "0.6.1",
4242
"author": "OPENSPHERE Inc.",
4343
"website": "https://opensphere.co.jp/",
4444
"email": "info@opensphere.co.jp",

src/plugin-main.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,11 @@ bool obs_module_load(void)
119119
return true;
120120
}
121121

122+
void obs_module_post_load()
123+
{
124+
qRegisterMetaType<obs_data_t *>();
125+
}
126+
122127
void obs_module_unload(void)
123128
{
124129
delete apiClient;

src/utils.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,6 @@ inline bool isSourceAvailable(obs_source_t *source)
250250

251251
QString getOutputFilename(const char *path, const char *container, bool noSpace, bool overwrite, const char *format);
252252
QString getFormatExt(const char *container);
253+
254+
// The type must be registered for Linux platform
255+
Q_DECLARE_OPAQUE_POINTER(obs_data_t *)

0 commit comments

Comments
 (0)