diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-05-28 15:05:57 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-05-28 15:05:57 +0200 |
commit | 0332e496347f6b563abb86d4ef9650bbd6ebc3e1 (patch) | |
tree | 74dadbe6e4f3216c8a3c8570e203aad0187febf3 /src/libmplex_wrapper.h | |
parent | 8eb0759e2e8a5405b2dd9e6d72d3bd620b51bee4 (diff) |
Port server to hugin.
Diffstat (limited to 'src/libmplex_wrapper.h')
-rw-r--r-- | src/libmplex_wrapper.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libmplex_wrapper.h b/src/libmplex_wrapper.h index 1be71a1..60c80fe 100644 --- a/src/libmplex_wrapper.h +++ b/src/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; |