diff options
author | deva <deva> | 2005-06-14 12:29:40 +0000 |
---|---|---|
committer | deva <deva> | 2005-06-14 12:29:40 +0000 |
commit | 430524810e67d3c223a2ab819f45b882b419c45d (patch) | |
tree | 0abb4b2dd3dabc414c755c30e52d0b5022ee8670 /src/mov_encoder_thread.h | |
parent | 0836a6e06f86e366017da3b2b2c132b3a4f2c877 (diff) |
Incorporated the use of the Info object everywhere... also using the log functionality.
Diffstat (limited to 'src/mov_encoder_thread.h')
-rw-r--r-- | src/mov_encoder_thread.h | 9 |
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; |