diff options
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; |