summaryrefslogtreecommitdiff
path: root/orkbasecxx/Filter.cpp
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-06-20 20:21:27 +0000
committerHenri Herscher <henri@oreka.org>2006-06-20 20:21:27 +0000
commit0a51c441700be676a20353a72f019d13673ab0fb (patch)
tree1627d51522fc1514d540d939860ed4f03f455619 /orkbasecxx/Filter.cpp
parent37e831162bd5080be5e111a39880a51d4406bcca (diff)
Changed the Filter interface so that filters can also receive capture events, not just audio chunks.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@267 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/Filter.cpp')
-rw-r--r--orkbasecxx/Filter.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/orkbasecxx/Filter.cpp b/orkbasecxx/Filter.cpp
index ae0c2c9..f154148 100644
--- a/orkbasecxx/Filter.cpp
+++ b/orkbasecxx/Filter.cpp
@@ -156,6 +156,15 @@ int AlawToPcmFilter::GetInputRtpPayloadType()
return 0x8;
}
+void AlawToPcmFilter::CaptureEventIn(CaptureEventRef& event)
+{
+ ;
+}
+
+void AlawToPcmFilter::CaptureEventOut(CaptureEventRef& event)
+{
+ ;
+}
//====================================================================
@@ -225,3 +234,13 @@ int UlawToPcmFilter::GetInputRtpPayloadType()
{
return 0x0;
}
+
+void UlawToPcmFilter::CaptureEventIn(CaptureEventRef& event)
+{
+ ;
+}
+
+void UlawToPcmFilter::CaptureEventOut(CaptureEventRef& event)
+{
+ ;
+} \ No newline at end of file