summaryrefslogtreecommitdiff
path: root/src/post/deinterlace
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2005-09-19 16:14:02 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2005-09-19 16:14:02 +0000
commit097426600056a112752e92eb1c13f0d6900f3907 (patch)
tree5cc819adfef1b280bc5bc0b7a6bd5f92edfa9f55 /src/post/deinterlace
parent801a491a64cb01af880bd2093b3d350be38219a7 (diff)
downloadxine-lib-097426600056a112752e92eb1c13f0d6900f3907.tar.gz
xine-lib-097426600056a112752e92eb1c13f0d6900f3907.tar.bz2
*BUGFIX*
added missing mutex init in xine_ticket (fixes pause assert with win32-pthreads) added missing destroys due to pthread doc spells and houskeeping use directx of older versions too, possibility to use xine w/o HW accel CVS patchset: 7738 CVS date: 2005/09/19 16:14:02
Diffstat (limited to 'src/post/deinterlace')
-rw-r--r--src/post/deinterlace/xine_plugin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c
index aa43c5dee..c3ecbd2e3 100644
--- a/src/post/deinterlace/xine_plugin.c
+++ b/src/post/deinterlace/xine_plugin.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_plugin.c,v 1.45 2005/06/17 22:36:43 dsalt Exp $
+ * $Id: xine_plugin.c,v 1.46 2005/09/19 16:14:02 valtri Exp $
*
* advanced video deinterlacer plugin
* Jun/2003 by Miguel Freitas
@@ -445,6 +445,7 @@ static void deinterlace_dispose(post_plugin_t *this_gen)
if (_x_post_dispose(this_gen)) {
_flush_frames(this);
+ pthread_mutex_destroy(&this->lock);
free(this);
}
}