From 38e4cbdb7aabf90d9a56ac95f1c8beca810c9436 Mon Sep 17 00:00:00 2001 From: deva Date: Thu, 13 Oct 2005 11:56:10 +0000 Subject: *** empty log message *** --- src/mov_encoder.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mov_encoder.cc') diff --git a/src/mov_encoder.cc b/src/mov_encoder.cc index a4d3483..6ac5876 100644 --- a/src/mov_encoder.cc +++ b/src/mov_encoder.cc @@ -73,8 +73,6 @@ MovEncoder::~MovEncoder() void MovEncoder::thread_main() { info->info("MovEncoder::run"); - // static volatile int test = 0; - // int insize = 0; // Run with slightly lower priority than MovEncoderWriter AND AudioEncoder nice(2); @@ -103,8 +101,10 @@ void MovEncoder::thread_main() *running = false; // Kick them sleepy ones so they get the message. - int threads = config->readInt("encoding_threads"); - for(int cnt = 0; cnt < threads; cnt++) {/*sem_post(input_sem);*/} // FIXME: Kick the other encoders + int threads = config->readInt("encoding_threads") - 1; // -1 cause we only need the others! + for(int cnt = 0; cnt < threads; cnt++) { + inputqueue->push(NULL); + } } // Encode video -- cgit v1.2.3