Skip to content

Commit

Permalink
Merge pull request #34 from OPENSPHERE-Inc/fix-statusdock-ci-issue
Browse files Browse the repository at this point in the history
Fix statusdock ci issue
  • Loading branch information
hanatyan128 authored Nov 26, 2024
2 parents d027071 + 80d26b9 commit fd64381
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"name": "osi-branch-output",
"displayName": "Branch Output Plugin",
"version": "0.9.12",
"version": "0.9.13",
"author": "OPENSPHERE Inc.",
"website": "https://opensphere.co.jp/",
"email": "[email protected]",
Expand Down
2 changes: 2 additions & 0 deletions src/plugin-main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,8 @@ bool obs_module_load()

void obs_module_post_load()
{
qRegisterMetaType<BranchOutputFilter *>();

statusDock = createOutputStatusDock();
}

Expand Down
3 changes: 2 additions & 1 deletion src/plugin-main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ struct BranchOutputFilter {
};

// The type must be registered for Linux platform
Q_DECLARE_METATYPE(BranchOutputFilter *);
Q_DECLARE_METATYPE(BranchOutputFilter)
Q_DECLARE_OPAQUE_POINTER(BranchOutputFilter *)

struct AudioBufferChunkHeader {
size_t data_idx[MAX_AUDIO_CHANNELS]; // Zero means unused channel
Expand Down

0 comments on commit fd64381

Please sign in to comment.