diff options
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/demux_aud.c | 5 | ||||
-rw-r--r-- | src/demuxers/demux_ipmovie.c | 5 | ||||
-rw-r--r-- | src/demuxers/demux_nsf.c | 5 | ||||
-rw-r--r-- | src/demuxers/demux_pva.c | 5 | ||||
-rw-r--r-- | src/demuxers/demux_str.c | 7 | ||||
-rw-r--r-- | src/demuxers/demux_yuv4mpeg2.c | 5 |
6 files changed, 6 insertions, 26 deletions
diff --git a/src/demuxers/demux_aud.c b/src/demuxers/demux_aud.c index 8055f9619..86e52e480 100644 --- a/src/demuxers/demux_aud.c +++ b/src/demuxers/demux_aud.c @@ -32,7 +32,7 @@ * data. This makes seeking conceptually impossible. Upshot: Random * seeking is not supported. * - * $Id: demux_aud.c,v 1.6 2003/03/31 19:31:54 tmmm Exp $ + * $Id: demux_aud.c,v 1.7 2003/04/02 03:20:40 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -67,10 +67,7 @@ typedef struct { input_plugin_t *input; - pthread_t thread; int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; off_t data_start; off_t data_size; diff --git a/src/demuxers/demux_ipmovie.c b/src/demuxers/demux_ipmovie.c index 14a32debc..8f4988bc8 100644 --- a/src/demuxers/demux_ipmovie.c +++ b/src/demuxers/demux_ipmovie.c @@ -21,7 +21,7 @@ * For more information regarding the Interplay MVE file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_ipmovie.c,v 1.7 2003/02/22 06:48:55 tmmm Exp $ + * $Id: demux_ipmovie.c,v 1.8 2003/04/02 03:20:41 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -100,10 +100,7 @@ typedef struct { input_plugin_t *input; - pthread_t thread; int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; off_t data_start; off_t data_size; diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c index 34fbbf0de..a1ba98ffa 100644 --- a/src/demuxers/demux_nsf.c +++ b/src/demuxers/demux_nsf.c @@ -28,7 +28,7 @@ * For more information regarding the NSF format, visit: * http://www.tripoint.org/kevtris/nes/nsfspec.txt * - * $Id: demux_nsf.c,v 1.11 2003/03/07 12:51:47 guenter Exp $ + * $Id: demux_nsf.c,v 1.12 2003/04/02 03:20:41 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -67,10 +67,7 @@ typedef struct { input_plugin_t *input; - pthread_t thread; int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; int status; diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c index 626c662f4..ce2fc1729 100644 --- a/src/demuxers/demux_pva.c +++ b/src/demuxers/demux_pva.c @@ -21,7 +21,7 @@ * For more information regarding the PVA file format, refer to this PDF: * http://www.technotrend.de/download/av_format_v1.pdf * - * $Id: demux_pva.c,v 1.7 2003/03/07 12:51:48 guenter Exp $ + * $Id: demux_pva.c,v 1.8 2003/04/02 03:20:42 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -60,10 +60,7 @@ typedef struct { input_plugin_t *input; - pthread_t thread; int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; int send_newpts; int buf_flag_seek; diff --git a/src/demuxers/demux_str.c b/src/demuxers/demux_str.c index 2447a8b1a..5591a0c6a 100644 --- a/src/demuxers/demux_str.c +++ b/src/demuxers/demux_str.c @@ -22,7 +22,7 @@ * This demuxer handles either raw STR files (which are just a concatenation * of raw compact disc sectors) or STR files with RIFF headers. * - * $Id: demux_str.c,v 1.7 2003/03/07 12:51:48 guenter Exp $ + * $Id: demux_str.c,v 1.8 2003/04/02 03:20:42 tmmm Exp $ */ /* CD-XA format: @@ -166,11 +166,6 @@ typedef struct { input_plugin_t *input; - pthread_t thread; - int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; - off_t data_start; off_t data_size; off_t current_pos; diff --git a/src/demuxers/demux_yuv4mpeg2.c b/src/demuxers/demux_yuv4mpeg2.c index 77555f627..1dec8ba3e 100644 --- a/src/demuxers/demux_yuv4mpeg2.c +++ b/src/demuxers/demux_yuv4mpeg2.c @@ -22,7 +22,7 @@ * tools, visit: * http://mjpeg.sourceforge.net/ * - * $Id: demux_yuv4mpeg2.c,v 1.19 2003/02/22 01:23:07 tmmm Exp $ + * $Id: demux_yuv4mpeg2.c,v 1.20 2003/04/02 03:20:43 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -61,10 +61,7 @@ typedef struct { input_plugin_t *input; - pthread_t thread; int thread_running; - pthread_mutex_t mutex; - int send_end_buffers; off_t data_start; off_t data_size; |