summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-01-26 15:56:21 +0000
committerMike Melanson <mike@multimedia.cx>2003-01-26 15:56:21 +0000
commitba53c561a63ba235062740862724859482716bc8 (patch)
tree00bec27f536af6e9b0d9dcbc3a3864165f8f8b11
parentc63e6040111003e17bf8f9a319668138bd9ddc71 (diff)
downloadxine-lib-ba53c561a63ba235062740862724859482716bc8.tar.gz
xine-lib-ba53c561a63ba235062740862724859482716bc8.tar.bz2
no need for <pthread.h> or <sched.h>
CVS patchset: 4009 CVS date: 2003/01/26 15:56:21
-rw-r--r--src/demuxers/demux_aud.c3
-rw-r--r--src/demuxers/demux_ipmovie.c3
-rw-r--r--src/demuxers/demux_mpeg_block.c3
-rw-r--r--src/demuxers/demux_nsf.c3
-rw-r--r--src/demuxers/demux_ogg.c3
-rw-r--r--src/demuxers/demux_pva.c3
-rw-r--r--src/demuxers/demux_str.c3
-rw-r--r--src/demuxers/demux_ts.c4
-rw-r--r--src/demuxers/demux_yuv_frames.c3
9 files changed, 9 insertions, 19 deletions
diff --git a/src/demuxers/demux_aud.c b/src/demuxers/demux_aud.c
index 574ac5522..09fb84c06 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.3 2003/01/10 11:57:16 miguelfreitas Exp $
+ * $Id: demux_aud.c,v 1.4 2003/01/26 15:56:21 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -42,7 +42,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_ipmovie.c b/src/demuxers/demux_ipmovie.c
index 76c26cb2d..a7dfed551 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.5 2003/01/17 16:52:35 miguelfreitas Exp $
+ * $Id: demux_ipmovie.c,v 1.6 2003/01/26 15:56:21 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -31,7 +31,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_mpeg_block.c b/src/demuxers/demux_mpeg_block.c
index d3b9c66f9..7ffed1dd5 100644
--- a/src/demuxers/demux_mpeg_block.c
+++ b/src/demuxers/demux_mpeg_block.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: demux_mpeg_block.c,v 1.157 2003/01/23 16:12:04 miguelfreitas Exp $
+ * $Id: demux_mpeg_block.c,v 1.158 2003/01/26 15:56:21 tmmm Exp $
*
* demultiplexer for mpeg 1/2 program streams
*
@@ -30,7 +30,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <sched.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c
index 703e71489..8ec5ead04 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.8 2003/01/18 14:57:50 tmmm Exp $
+ * $Id: demux_nsf.c,v 1.9 2003/01/26 15:56:21 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -38,7 +38,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c
index 4750a07ad..56ac8cb78 100644
--- a/src/demuxers/demux_ogg.c
+++ b/src/demuxers/demux_ogg.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: demux_ogg.c,v 1.61 2003/01/23 16:12:12 miguelfreitas Exp $
+ * $Id: demux_ogg.c,v 1.62 2003/01/26 15:56:21 tmmm Exp $
*
* demultiplexer for ogg streams
*
@@ -30,7 +30,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <sched.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c
index 8d7d07a01..c705c6b01 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.5 2003/01/19 07:10:51 tmmm Exp $
+ * $Id: demux_pva.c,v 1.6 2003/01/26 15:56:21 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -31,7 +31,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_str.c b/src/demuxers/demux_str.c
index 448eab572..8a9c2ac15 100644
--- a/src/demuxers/demux_str.c
+++ b/src/demuxers/demux_str.c
@@ -21,7 +21,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.3 2003/01/10 11:57:18 miguelfreitas Exp $
+ * $Id: demux_str.c,v 1.4 2003/01/26 15:56:21 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -31,7 +31,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/demuxers/demux_ts.c b/src/demuxers/demux_ts.c
index a3ad4da07..4e31e1c2b 100644
--- a/src/demuxers/demux_ts.c
+++ b/src/demuxers/demux_ts.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: demux_ts.c,v 1.76 2003/01/16 22:25:54 miguelfreitas Exp $
+ * $Id: demux_ts.c,v 1.77 2003/01/26 15:56:21 tmmm Exp $
*
* Demultiplexer for MPEG2 Transport Streams.
*
@@ -132,8 +132,6 @@
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
-#include <pthread.h>
-#include <sched.h>
#include <string.h>
#include "xine_internal.h"
diff --git a/src/demuxers/demux_yuv_frames.c b/src/demuxers/demux_yuv_frames.c
index 5ef1f031c..14772ca22 100644
--- a/src/demuxers/demux_yuv_frames.c
+++ b/src/demuxers/demux_yuv_frames.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: demux_yuv_frames.c,v 1.2 2003/01/19 19:43:17 guenter Exp $
+ * $Id: demux_yuv_frames.c,v 1.3 2003/01/26 15:56:21 tmmm Exp $
*
* dummy demultiplexer for raw yuv frames (delivered by v4l)
*
@@ -30,7 +30,6 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
-#include <sched.h>
#include <string.h>
#include <stdlib.h>