Skip to content

Commit 8089d93

Browse files
fixing compilatin issues
1 parent c78de9b commit 8089d93

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

AVInput/AVInput.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ AVInput* AVInput::_instance = nullptr;
113113

114114
AVInput::AVInput()
115115
: PluginHost::JSONRPC()
116+
, _hostListener(device::Host::getInstance())
116117
, _hdmiEventNotification(*this)
117118
, _compositeinEventNotification(*this)
118119
, _registeredHostEventHandlers(false)

AVInput/AVInput.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class AVInput: public PluginHost::IPlugin, public PluginHost::JSONRPC
129129
_parent.OnCompositeInStatus(activePort,isPresented);
130130
}
131131

132-
OnCompositeInVideoModeUpdate(dsCompositeInPort_t activePort, dsVideoPortResolution_t videoResolution) override
132+
void OnCompositeInVideoModeUpdate(dsCompositeInPort_t activePort, dsVideoPortResolution_t videoResolution) override
133133
{
134134
_parent.OnCompositeInVideoModeUpdate(activePort,videoResolution);
135135
}
@@ -168,7 +168,7 @@ class AVInput: public PluginHost::IPlugin, public PluginHost::JSONRPC
168168

169169
protected:
170170
void InitializeDeviceManager();
171-
void DeinitializeDeviceManager();
171+
void DeInitializeDeviceManager();
172172

173173
void RegisterAll();
174174
void UnregisterAll();

0 commit comments

Comments
 (0)