[Mplayer-cvslog] CVS: main/libao2 ao_pcm.c,1.6,1.7 ao_plugin.c,1.17,1.18 pl_delay.c,1.4,1.5 pl_format.c,1.4,1.5 pl_surround.c,1.10,1.11

pl pl at mplayerhq.hu
Thu May 30 13:53:54 CEST 2002


Update of /cvsroot/mplayer/main/libao2
In directory mail:/var/tmp.root/cvs-serv4885

Modified Files:
	ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c 
Log Message:
warning fixes (string.h is required for memset)
moved config.h at the top of the include (often avoids 10L when adding a
  new #include ;)


Index: ao_pcm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_pcm.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ao_pcm.c	26 Apr 2002 13:07:03 -0000	1.6
+++ ao_pcm.c	30 May 2002 11:53:51 -0000	1.7
@@ -1,7 +1,9 @@
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
-#include "config.h"
 #include "bswap.h"
 #include "afmt.h"
 #include "audio_out.h"

Index: ao_plugin.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_plugin.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ao_plugin.c	9 May 2002 07:41:25 -0000	1.17
+++ ao_plugin.c	30 May 2002 11:53:51 -0000	1.18
@@ -1,7 +1,8 @@
+#include "../config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
-
-#include "../config.h"
+#include <string.h>
 
 #include "afmt.h"
 #include "audio_out.h"

Index: pl_delay.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/pl_delay.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pl_delay.c	27 Jan 2002 10:41:43 -0000	1.4
+++ pl_delay.c	30 May 2002 11:53:51 -0000	1.5
@@ -7,6 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "audio_out.h"
 #include "audio_plugin.h"

Index: pl_format.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/pl_format.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pl_format.c	4 Dec 2001 12:28:26 -0000	1.4
+++ pl_format.c	30 May 2002 11:53:51 -0000	1.5
@@ -9,6 +9,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 #include <inttypes.h>
 

Index: pl_surround.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/pl_surround.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- pl_surround.c	6 Apr 2002 15:38:28 -0000	1.10
+++ pl_surround.c	30 May 2002 11:53:51 -0000	1.11
@@ -38,6 +38,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 
 #include "audio_out.h"




More information about the MPlayer-cvslog mailing list