diff options
author | deva <deva> | 2006-07-20 17:53:17 +0000 |
---|---|---|
committer | deva <deva> | 2006-07-20 17:53:17 +0000 |
commit | 7d39c063ea84b9b30dbe669ac4ae641a49506836 (patch) | |
tree | ef1ead10d1736e9ad7ffe139872c86fd2ee00901 /server/mov_encoder.h | |
parent | c8df40b62cf30029a4acd1a57c8c54add54dda9b (diff) |
Utilized the global info object.
Utilized the global info object.
Utilized the global info object.
Diffstat (limited to 'server/mov_encoder.h')
-rw-r--r-- | server/mov_encoder.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/server/mov_encoder.h b/server/mov_encoder.h index 8910f4b..9b99959 100644 --- a/server/mov_encoder.h +++ b/server/mov_encoder.h @@ -46,8 +46,6 @@ using namespace std; #include "thread.h" #include <pthread.h> -#include "info.h" - #include "threadsafe_queue_priority.h" #include "threadsafe_queue_fifo.h" @@ -56,8 +54,7 @@ public: MovEncoder(volatile bool *r, sem_t *r_sem, ThreadSafeQueueFIFO *in, ThreadSafeQueuePriority *video_out, - ThreadSafeQueuePriority *audio_out, - Info *info); + ThreadSafeQueuePriority *audio_out); ~MovEncoder(); void thread_main(); @@ -65,8 +62,6 @@ public: volatile bool *running; private: - Info *info; - // Input queue ThreadSafeQueueFIFO *inputqueue; |