summaryrefslogtreecommitdiff
path: root/orkaudio/CapturePluginProxy.cpp
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-02-01 16:08:00 +0000
committerHenri Herscher <henri@oreka.org>2006-02-01 16:08:00 +0000
commited735626b66356eb24ec75325546e69b744b539c (patch)
tree6b930e9922111eb9b12eef4fdf04025f49b16501 /orkaudio/CapturePluginProxy.cpp
parent542558bdcf3f860184d492ccb2a6c97715fa3182 (diff)
Dropped remote indicator when reporting an audio chunk
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@151 09dcff7a-b715-0410-9601-b79a96267cd0
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)