[Asterisk-cvs] asterisk/formats format_g723.c,1.13,1.14 format_g726.c,1.3,1.4 format_g729.c,1.11,1.12 format_gsm.c,1.16,1.17 format_h263.c,1.5,1.6 format_ilbc.c,1.4,1.5 format_jpeg.c,1.5,1.6 format_pcm.c,1.12,1.13 format_pcm_alaw.c,1.11,1.12 format_vox.c,1.15,1.16 format_wav.c,1.17,1.18 format_wav_gsm.c,1.20,1.21

citats at lists.digium.com citats at lists.digium.com
Tue Jun 22 15:03:06 CDT 2004


Update of /usr/cvsroot/asterisk/formats
In directory mongoose.digium.com:/home/citats/cvs/asterisk/formats

Modified Files:
	format_g723.c format_g726.c format_g729.c format_gsm.c 
	format_h263.c format_ilbc.c format_jpeg.c format_pcm.c 
	format_pcm_alaw.c format_vox.c format_wav.c format_wav_gsm.c 
Log Message:
Remove pthread.h from source.  We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).

Index: format_g723.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g723.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- format_g723.c	9 Jun 2004 01:45:08 -0000	1.13
+++ format_g723.c	22 Jun 2004 18:49:00 -0000	1.14
@@ -23,7 +23,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #include <sys/time.h>
 #include "../channels/adtranvofr.h"
 

Index: format_g726.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g726.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- format_g726.c	9 Jun 2004 01:45:08 -0000	1.3
+++ format_g726.c	22 Jun 2004 18:49:00 -0000	1.4
@@ -24,7 +24,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_g729.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_g729.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- format_g729.c	9 Jun 2004 01:45:08 -0000	1.11
+++ format_g729.c	22 Jun 2004 18:49:00 -0000	1.12
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_gsm.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- format_gsm.c	9 Jun 2004 01:45:08 -0000	1.16
+++ format_gsm.c	22 Jun 2004 18:49:00 -0000	1.17
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_h263.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_h263.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- format_h263.c	9 Jun 2004 01:45:08 -0000	1.5
+++ format_h263.c	22 Jun 2004 18:49:00 -0000	1.6
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_ilbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_ilbc.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- format_ilbc.c	9 Jun 2004 01:45:08 -0000	1.4
+++ format_ilbc.c	22 Jun 2004 18:49:00 -0000	1.5
@@ -27,7 +27,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_jpeg.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_jpeg.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- format_jpeg.c	8 Sep 2003 16:48:07 -0000	1.5
+++ format_jpeg.c	22 Jun 2004 18:49:00 -0000	1.6
@@ -18,6 +18,7 @@
 #include <asterisk/sched.h>
 #include <asterisk/module.h>
 #include <asterisk/image.h>
+#include <asterisk/lock.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <stdlib.h>
@@ -26,7 +27,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_pcm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_pcm.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- format_pcm.c	9 Jun 2004 01:45:08 -0000	1.12
+++ format_pcm.c	22 Jun 2004 18:49:00 -0000	1.13
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_pcm_alaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_pcm_alaw.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- format_pcm_alaw.c	9 Jun 2004 01:45:08 -0000	1.11
+++ format_pcm_alaw.c	22 Jun 2004 18:49:00 -0000	1.12
@@ -27,7 +27,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_vox.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_vox.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- format_vox.c	9 Jun 2004 20:55:20 -0000	1.15
+++ format_vox.c	22 Jun 2004 18:49:00 -0000	1.16
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_wav.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_wav.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- format_wav.c	9 Jun 2004 01:45:08 -0000	1.17
+++ format_wav.c	22 Jun 2004 18:49:00 -0000	1.18
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else

Index: format_wav_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/formats/format_wav_gsm.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- format_wav_gsm.c	9 Jun 2004 01:45:08 -0000	1.20
+++ format_wav_gsm.c	22 Jun 2004 18:49:00 -0000	1.21
@@ -25,7 +25,6 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
-#include <pthread.h>
 #ifdef __linux__
 #include <endian.h>
 #else




More information about the svn-commits mailing list