summaryrefslogtreecommitdiff
path: root/orkbasecxx/TapeProcessor.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-06-30 19:57:46 +0000
committerHenri Herscher <henri@oreka.org>2006-06-30 19:57:46 +0000
commit7292ff65bc154760649628a3e881079140a12657 (patch)
treee70d26f33ca7b90e17f25306dc6c82ab559483c6 /orkbasecxx/TapeProcessor.h
parent868a99733ddb6a44f660f4aab9089fd619f38cfa (diff)
Newly added classes coming from OrkAudio now export symbols.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@288 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/TapeProcessor.h')
-rw-r--r--orkbasecxx/TapeProcessor.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/orkbasecxx/TapeProcessor.h b/orkbasecxx/TapeProcessor.h
new file mode 100644
index 0000000..2b60fc8
--- /dev/null
+++ b/orkbasecxx/TapeProcessor.h
@@ -0,0 +1,37 @@
+/*
+ * Oreka -- A media capture and retrieval platform
+ *
+ * Copyright (C) 2005, orecx LLC
+ *
+ * http://www.orecx.com
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License.
+ * Please refer to http://www.gnu.org/copyleft/gpl.html
+ *
+ */
+#ifndef __TAPEPROCESSOR_H__
+#define __TAPEPROCESSOR_H__
+
+//#include <list>
+//#include "ace/Singleton.h"
+#include "AudioCapture.h"
+#include "dll.h"
+#include "OrkBase.h"
+
+class TapeProcessor;
+
+typedef boost::shared_ptr<TapeProcessor> TapeProcessorRef;
+
+/** TapeProcessor Interface
+ * a filter is a black box that takes media chunks as an input and produces media chunks as an output
+ * it can be translating between two encodings (codec) or just processing the signal
+ */
+class DLL_IMPORT_EXPORT_ORKBASE TapeProcessor
+{
+public:
+ virtual TapeProcessorRef __CDECL__ Instanciate() = 0;
+ virtual void __CDECL__ AddAudioTape(AudioTapeRef audioTapeRef) = 0;
+};
+
+#endif \ No newline at end of file