diff options
Diffstat (limited to 'src/mov_encoder_thread.h')
-rw-r--r-- | src/mov_encoder_thread.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mov_encoder_thread.h b/src/mov_encoder_thread.h index feea8e2..b2d6fd2 100644 --- a/src/mov_encoder_thread.h +++ b/src/mov_encoder_thread.h @@ -24,7 +24,6 @@ * along with MIaV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "config.h" #ifndef __MIAV_MOV_ENCODER_THREAD_H__ #define __MIAV_MOV_ENCODER_THREAD_H__ @@ -45,14 +44,12 @@ using namespace std; #include "audio_encoder.h" #include "mov_encoder_writer.h" -#include "info.h" - // For savestate_n #include "package.h" class MovEncoderThread { public: - MovEncoderThread(const char *clientip, const char *cpr, Info *info); + MovEncoderThread(const char *clientip, const char *cpr); ~MovEncoderThread(); void encode(Frame* frame); @@ -60,8 +57,6 @@ public: void setSaveState(n_savestate savestate); private: - Info *info; - // FrameVectorQueue *inputqueue; ThreadSafeQueueFIFO *inputqueue; FrameVector *block; |