Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Attempt fix running plugin on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
djova-dolby committed Oct 6, 2023
1 parent b3fe056 commit 3c2bfe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions DolbyIO/Source/Private/DolbyIOModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include "Utils/DolbyIOCppSdk.h"
#include "Utils/DolbyIOLogging.h"

#include "Runtime/Launch/Resources/Version.h"
#include "HAL/PlatformProcess.h"
#include "Interfaces/IPluginManager.h"
#include "Misc/Paths.h"
Expand Down Expand Up @@ -42,8 +41,8 @@ class FDolbyIOModule final : public IModuleInterface
LoadDll(BaseDir, "lib/libdolbyio_comms_media.dylib");
LoadDll(BaseDir, "lib/libdolbyio_comms_sdk.dylib");
LoadDll(BaseDir, "lib/libopencv_core.4.5.dylib");
LoadDll(BaseDir, "lib/libopencv_imgcodecs.4.5.dylib");
LoadDll(BaseDir, "lib/libopencv_imgproc.4.5.dylib");
LoadDll(BaseDir, "lib/libopencv_imgcodecs.4.5.dylib");
LoadDll(BaseDir, "lib/libdlb_vidseg_c_api.dylib");
LoadDll(BaseDir, "lib/libvideo_processor.dylib");
#elif PLATFORM_LINUX
Expand Down
4 changes: 2 additions & 2 deletions DolbyIO/Source/Private/Subsystem/DolbyIOScreenshare.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ void UDolbyIOSubsystem::GetCurrentScreenshareSource()

void UDolbyIOSubsystem::Handle(const screen_share_error& Event)
{
DLB_UE_LOG_BASE(Warning, "Received screen_share_error event type=%s description=%s force_stopped=%d",
Event.type, *ToFString(Event.description), Event.force_stopped);
DLB_UE_LOG_BASE(Warning, "Received screen_share_error event source=%s description=%s force_stopped=%d",
*ToString(Event.source), *ToFString(Event.description), Event.force_stopped);
if (Event.force_stopped)
{
StopScreenshare();
Expand Down

0 comments on commit 3c2bfe0

Please sign in to comment.