[Asterisk-cvs] asterisk/codecs codec_a_mu.c,1.6,1.7 codec_adpcm.c,1.10,1.11 codec_alaw.c,1.6,1.7 codec_g723_1.c,1.14,1.15 codec_g726.c,1.2,1.3 codec_gsm.c,1.12,1.13 codec_ilbc.c,1.5,1.6 codec_lpc10.c,1.8,1.9 codec_speex.c,1.5,1.6 codec_ulaw.c,1.7,1.8
citats at lists.digium.com
citats at lists.digium.com
Tue Jun 22 15:03:05 CDT 2004
- Previous message: [Asterisk-cvs] asterisk/channels chan_agent.c,1.75,1.76 chan_h323.c,1.60,1.61 chan_iax.c,1.60,1.61 chan_iax2.c,1.157,1.158 chan_local.c,1.30,1.31 chan_mgcp.c,1.55,1.56 chan_modem.c,1.23,1.24 chan_nbs.c,1.7,1.8 chan_phone.c,1.29,1.30 chan_sip.c,1.421,1.422 chan_skinny.c,1.47,1.48 chan_vofr.c,1.15,1.16 chan_vpb.c,1.27,1.28
- Next message: [Asterisk-cvs] asterisk/include/asterisk channel.h,1.48,1.49 linkedlists.h,1.4,1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/codecs
In directory mongoose.digium.com:/home/citats/cvs/asterisk/codecs
Modified Files:
codec_a_mu.c codec_adpcm.c codec_alaw.c codec_g723_1.c
codec_g726.c codec_gsm.c codec_ilbc.c codec_lpc10.c
codec_speex.c codec_ulaw.c
Log Message:
Remove pthread.h from source. We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).
Index: codec_a_mu.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_a_mu.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- codec_a_mu.c 9 Jun 2004 01:45:08 -0000 1.6
+++ codec_a_mu.c 22 Jun 2004 18:49:00 -0000 1.7
@@ -19,7 +19,6 @@
#include <asterisk/ulaw.h>
#include <fcntl.h>
#include <netinet/in.h>
-#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: codec_adpcm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_adpcm.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- codec_adpcm.c 9 Jun 2004 01:45:08 -0000 1.10
+++ codec_adpcm.c 22 Jun 2004 18:49:00 -0000 1.11
@@ -20,7 +20,6 @@
#include <asterisk/channel.h>
#include <fcntl.h>
#include <netinet/in.h>
-#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: codec_alaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_alaw.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- codec_alaw.c 9 Jun 2004 01:45:08 -0000 1.6
+++ codec_alaw.c 22 Jun 2004 18:49:00 -0000 1.7
@@ -18,7 +18,6 @@
#include <asterisk/alaw.h>
#include <fcntl.h>
#include <netinet/in.h>
-#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: codec_g723_1.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_g723_1.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- codec_g723_1.c 9 Jun 2004 01:45:08 -0000 1.14
+++ codec_g723_1.c 22 Jun 2004 18:49:00 -0000 1.15
@@ -22,11 +22,11 @@
#define TYPE_MASK 0x3
#include <sys/types.h>
+#include <asterisk/lock.h>
#include <asterisk/translate.h>
#include <asterisk/module.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <pthread.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
Index: codec_g726.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_g726.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- codec_g726.c 9 Jun 2004 01:45:08 -0000 1.2
+++ codec_g726.c 22 Jun 2004 18:49:00 -0000 1.3
@@ -20,7 +20,6 @@
#include <asterisk/channel.h>
#include <fcntl.h>
#include <netinet/in.h>
-#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: codec_gsm.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_gsm.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- codec_gsm.c 9 Jun 2004 01:45:08 -0000 1.12
+++ codec_gsm.c 22 Jun 2004 18:49:00 -0000 1.13
@@ -24,7 +24,6 @@
#include <asterisk/module.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <pthread.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
Index: codec_ilbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_ilbc.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- codec_ilbc.c 9 Jun 2004 01:45:08 -0000 1.5
+++ codec_ilbc.c 22 Jun 2004 18:49:00 -0000 1.6
@@ -18,7 +18,6 @@
#include <asterisk/module.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <pthread.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
Index: codec_lpc10.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_lpc10.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- codec_lpc10.c 9 Jun 2004 01:45:08 -0000 1.8
+++ codec_lpc10.c 22 Jun 2004 18:49:00 -0000 1.9
@@ -22,7 +22,6 @@
#include <asterisk/module.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <pthread.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
Index: codec_speex.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_speex.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- codec_speex.c 9 Jun 2004 01:45:08 -0000 1.5
+++ codec_speex.c 22 Jun 2004 18:49:00 -0000 1.6
@@ -23,7 +23,6 @@
#include <asterisk/module.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
-#include <pthread.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
Index: codec_ulaw.c
===================================================================
RCS file: /usr/cvsroot/asterisk/codecs/codec_ulaw.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- codec_ulaw.c 9 Jun 2004 01:45:08 -0000 1.7
+++ codec_ulaw.c 22 Jun 2004 18:49:00 -0000 1.8
@@ -18,7 +18,6 @@
#include <asterisk/ulaw.h>
#include <fcntl.h>
#include <netinet/in.h>
-#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
- Previous message: [Asterisk-cvs] asterisk/channels chan_agent.c,1.75,1.76 chan_h323.c,1.60,1.61 chan_iax.c,1.60,1.61 chan_iax2.c,1.157,1.158 chan_local.c,1.30,1.31 chan_mgcp.c,1.55,1.56 chan_modem.c,1.23,1.24 chan_nbs.c,1.7,1.8 chan_phone.c,1.29,1.30 chan_sip.c,1.421,1.422 chan_skinny.c,1.47,1.48 chan_vofr.c,1.15,1.16 chan_vpb.c,1.27,1.28
- Next message: [Asterisk-cvs] asterisk/include/asterisk channel.h,1.48,1.49 linkedlists.h,1.4,1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list