summaryrefslogtreecommitdiff
path: root/orkaudio/CapturePluginProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'orkaudio/CapturePluginProxy.cpp')
-rw-r--r--orkaudio/CapturePluginProxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/orkaudio/CapturePluginProxy.cpp b/orkaudio/CapturePluginProxy.cpp
index 02a79c0..4163293 100644
--- a/orkaudio/CapturePluginProxy.cpp
+++ b/orkaudio/CapturePluginProxy.cpp
@@ -191,11 +191,11 @@ void CapturePluginProxy::StopCapture(CStdString& capturePort)
}
}
-void __CDECL__ CapturePluginProxy::AudioChunkCallBack(AudioChunkRef chunkRef, CStdString& capturePort, bool remote)
+void __CDECL__ CapturePluginProxy::AudioChunkCallBack(AudioChunkRef chunkRef, CStdString& capturePort)
{
// find the right port and give it the audio chunk
CapturePortRef portRef = CapturePortsSingleton::instance()->AddAndReturnPort(capturePort);
- portRef->AddAudioChunk(chunkRef, remote);
+ portRef->AddAudioChunk(chunkRef);
}
void __CDECL__ CapturePluginProxy::CaptureEventCallBack(CaptureEventRef eventRef, CStdString& capturePort)