From 678b4e9cad47a6c176bb05de32aa0dd56742f15a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Mon, 14 Nov 2005 12:34:45 +0000 Subject: *BUGFIX* Testsuite for M$ Windows: - init mutex in all video drivers ('none' for testsuite, fixes crashes), was OK for linux pthreads - use WaitForSingleObject for console file descriptirs in _x_io_select (fixes stdin:/) - workaround heavy debug messages in asf demuxer for some samples (fixes full disk :->) Fixed previous fix, s/gmtime/timgm/ :-) Aalib cross detection + udate docs CVS patchset: 7799 CVS date: 2005/11/14 12:34:45 --- src/video_out/video_out_aa.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/video_out/video_out_aa.c') diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c index 55c74d7e1..1bdd580fd 100644 --- a/src/video_out/video_out_aa.c +++ b/src/video_out/video_out_aa.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: video_out_aa.c,v 1.45 2005/09/24 19:08:26 miguelfreitas Exp $ + * $Id: video_out_aa.c,v 1.46 2005/11/14 12:34:46 valtri Exp $ * * video_out_aa.c, ascii-art output plugin for xine * @@ -113,6 +113,8 @@ static vo_frame_t *aa_alloc_frame(vo_driver_t *this_gen) { if (!frame) return NULL; + pthread_mutex_init(&frame->vo_frame.mutex, NULL); + frame->vo_frame.proc_slice = NULL; frame->vo_frame.proc_frame = NULL; frame->vo_frame.field = aa_frame_field; -- cgit v1.2.3