diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-08-25 15:36:29 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-08-25 15:36:29 +0000 |
commit | f45651f26bc3aa1b312d282c5d8c4b04be0c2505 (patch) | |
tree | 7ff95ed1ee104e776559c7885539e1ff7a39fe97 /src/xine-engine/xine_internal.h | |
parent | 21c4975cc49bbbeac0067aa0847b3604ea639676 (diff) | |
download | xine-lib-f45651f26bc3aa1b312d282c5d8c4b04be0c2505.tar.gz xine-lib-f45651f26bc3aa1b312d282c5d8c4b04be0c2505.tar.bz2 |
*BUGFIX*
Windows ports fixes and improvements due to my current work on toxine:
- first experiments with external win32 pthreads,
more portable code (pthread_t may be a struct)
- headers refactored
- moved dirent win32 replacement to lib/, hide it for frontends,
used system version, if found, not used non-POSIX dirent->d_reclen
(this item doesn't work in MinGW), fix memleak in dvb
- separated settings for postproc and avcodec when using external ffmpeg
- check for malloc.h in public xine.m4, used it conditionally in xine headers
- replaced random() by POSIX more common rand()
- prevent one segfault in directx vo plugin, if fails
- M$VC port update
CVS patchset: 7709
CVS date: 2005/08/25 15:36:29
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 81a9f6ac1..d5aba92b4 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2004 the xine project + * Copyright (C) 2000-2005 the xine project * * This file is part of xine, a free video player. * @@ -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_internal.h,v 1.166 2005/07/17 23:11:45 dsalt Exp $ + * $Id: xine_internal.h,v 1.167 2005/08/25 15:36:30 valtri Exp $ * */ @@ -248,12 +248,14 @@ struct xine_stream_s { /* vo_driver_t *video_driver;*/ pthread_t video_thread; + int video_thread_created; video_decoder_t *video_decoder_plugin; int video_decoder_streamtype; extra_info_t *video_decoder_extra_info; int video_channel; pthread_t audio_thread; + int audio_thread_created; audio_decoder_t *audio_decoder_plugin; int audio_decoder_streamtype; extra_info_t *audio_decoder_extra_info; @@ -308,6 +310,7 @@ struct xine_stream_s { /* demux thread stuff */ pthread_t demux_thread; + int demux_thread_created; int demux_thread_running; pthread_mutex_t demux_lock; int demux_action_pending; |