From 0ee11d2d10133f77d69060a58b9c3b38c8ecc70a Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 23 May 2005 17:59:49 +0000 Subject: Fixed delete of NULL input queue --- ChangeLog | 8 ++++++++ src/mov_encoder_thread.cc | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 51e33a9..ff5d996 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,14 @@ +-*- Text -*- +======================================= Changelog for MIaV ======================================= +May 2005 - MIaV version 0.2.3 +New Features: + - +Bug Fixes: + - Free of NULL input queue removed. + May 22 2005 - MIaV version 0.2.2 New Features: - Added multithread encoding to the server. diff --git a/src/mov_encoder_thread.cc b/src/mov_encoder_thread.cc index d95961d..422efca 100644 --- a/src/mov_encoder_thread.cc +++ b/src/mov_encoder_thread.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.8 2005/05/23 17:59:49 deva + * Fixed delete of NULL input queue + * * Revision 1.7 2005/05/22 15:49:22 deva * Added multithreaded encoding support. * @@ -99,7 +102,7 @@ MovEncoderThread::MovEncoderThread(const char *filename) MovEncoderThread::~MovEncoderThread() { // These should not be deleted here... its done elsewhere. - inputqueue = NULL; + // inputqueue = NULL; sem_post(&out_sem); -- cgit v1.2.3