diff options
author | deva <deva> | 2005-05-26 12:48:36 +0000 |
---|---|---|
committer | deva <deva> | 2005-05-26 12:48:36 +0000 |
commit | f4dc6f65497a805dad971feac1bce0f36ddd4ce5 (patch) | |
tree | 60348c5de5a3efb71c43ff0142f58e9bb7e82ae4 /src/mov_encoder.cc | |
parent | d4017394ba8868e5d44b5cc01a59c100cbaf953f (diff) |
*** empty log message ***
Diffstat (limited to 'src/mov_encoder.cc')
-rw-r--r-- | src/mov_encoder.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mov_encoder.cc b/src/mov_encoder.cc index e052893..c5aec9d 100644 --- a/src/mov_encoder.cc +++ b/src/mov_encoder.cc @@ -39,6 +39,9 @@ /* * $Log$ + * Revision 1.26 2005/05/26 12:48:36 deva + * *** empty log message *** + * * Revision 1.25 2005/05/25 15:36:05 deva * Added mpeg4 encoding to the encoders, controllable by the config file. * @@ -359,12 +362,12 @@ void MovEncoder::run() Frame *in_frame; Frame *out_frame; - fprintf(stderr, "\t\t\t\tEncoder Ready\n"); fflush(stderr); + // fprintf(stderr, "\t\t\t\tEncoder Ready\n"); fflush(stderr); while(running) { sem_wait(input_sem); - fprintf(stderr, "\t\t\t\tReading block\n"); fflush(stderr); + // fprintf(stderr, "\t\t\t\tReading block\n"); fflush(stderr); // Lock inout mutex pthread_mutex_lock(input_mutex); @@ -391,7 +394,7 @@ void MovEncoder::run() pthread_mutex_unlock(output_mutex); // Unlock output mutex - fprintf(stderr, "\t\t\t\tEncoded [%d] - pushed it for writing\n", in_frame->number); fflush(stderr); + // fprintf(stderr, "\t\t\t\tEncoded [%d] - pushed it for writing\n", in_frame->number); fflush(stderr); } delete item; |