summaryrefslogtreecommitdiff
path: root/server/libmplex_wrapper.h
diff options
context:
space:
mode:
authordeva <deva>2006-07-20 17:53:17 +0000
committerdeva <deva>2006-07-20 17:53:17 +0000
commit7d39c063ea84b9b30dbe669ac4ae641a49506836 (patch)
treeef1ead10d1736e9ad7ffe139872c86fd2ee00901 /server/libmplex_wrapper.h
parentc8df40b62cf30029a4acd1a57c8c54add54dda9b (diff)
Utilized the global info object.
Utilized the global info object. Utilized the global info object.
Diffstat (limited to 'server/libmplex_wrapper.h')
-rw-r--r--server/libmplex_wrapper.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/server/libmplex_wrapper.h b/server/libmplex_wrapper.h
index 1be71a1..60c80fe 100644
--- a/server/libmplex_wrapper.h
+++ b/server/libmplex_wrapper.h
@@ -30,14 +30,12 @@
#ifdef WITH_LIBMPLEX
-#include "info.h"
#include "file.h"
#include "threadsafe_queue_priority.h"
class LibMPlexWrapper {
public:
- LibMPlexWrapper(Info *info,
- File *outputfile,
+ LibMPlexWrapper(File *outputfile,
ThreadSafeQueuePriority *video_queue,
ThreadSafeQueuePriority *audio_queue);
~LibMPlexWrapper();
@@ -45,7 +43,6 @@ public:
void multiplex();
private:
- Info *info;
File *outputfile;
ThreadSafeQueuePriority *video_queue;
ThreadSafeQueuePriority *audio_queue;