summaryrefslogtreecommitdiff
path: root/src/mov_encoder_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mov_encoder_thread.h')
-rw-r--r--src/mov_encoder_thread.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mov_encoder_thread.h b/src/mov_encoder_thread.h
index 87a8f63..330e6e6 100644
--- a/src/mov_encoder_thread.h
+++ b/src/mov_encoder_thread.h
@@ -31,6 +31,9 @@
/*
* $Log$
+ * Revision 1.7 2005/06/14 12:29:40 deva
+ * Incorporated the use of the Info object everywhere... also using the log functionality.
+ *
* Revision 1.6 2005/06/09 11:00:03 deva
* Added daemon code, and cleaned up using -Wall and -Werror
*
@@ -70,14 +73,18 @@ using namespace std;
#include "mov_encoder.h"
#include "mov_encoder_writer.h"
+#include "info.h"
+
class MovEncoderThread {
public:
- MovEncoderThread(const char *filename);
+ MovEncoderThread(const char *cpr, Info *info);
~MovEncoderThread();
void encode(Frame* frame);
private:
+ Info *info;
+
FrameVectorQueue *inputqueue;
FramePriorityQueue *outputqueue;
FrameVector *block;