aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-22 18:49:00 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-22 18:49:00 +0000
commit00b34f3e0a4c193bfbe44de48b1bccebdf14c150 (patch)
tree49bfb8ee224bea68dce0160baf8bd359d1f1f1b0 /codecs
parent42e760fa03b8922686c13c3fc04b11b08521c6c2 (diff)
Remove pthread.h from source. We should be using asterisk/lock.h everywhere instead (except in asterisk/lock.h).
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3276 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rwxr-xr-xcodecs/codec_a_mu.c1
-rwxr-xr-xcodecs/codec_adpcm.c1
-rwxr-xr-xcodecs/codec_alaw.c1
-rwxr-xr-xcodecs/codec_g723_1.c2
-rwxr-xr-xcodecs/codec_g726.c1
-rwxr-xr-xcodecs/codec_gsm.c1
-rwxr-xr-xcodecs/codec_ilbc.c1
-rwxr-xr-xcodecs/codec_lpc10.c1
-rwxr-xr-xcodecs/codec_speex.c1
-rwxr-xr-xcodecs/codec_ulaw.c1
10 files changed, 1 insertions, 10 deletions
diff --git a/codecs/codec_a_mu.c b/codecs/codec_a_mu.c
index 84d23a146..09b8e02bc 100755
--- a/codecs/codec_a_mu.c
+++ b/codecs/codec_a_mu.c
@@ -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>
diff --git a/codecs/codec_adpcm.c b/codecs/codec_adpcm.c
index 9aa0304c7..7bc75075d 100755
--- a/codecs/codec_adpcm.c
+++ b/codecs/codec_adpcm.c
@@ -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>
diff --git a/codecs/codec_alaw.c b/codecs/codec_alaw.c
index 5574cd451..6ba4e1da9 100755
--- a/codecs/codec_alaw.c
+++ b/codecs/codec_alaw.c
@@ -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>
diff --git a/codecs/codec_g723_1.c b/codecs/codec_g723_1.c
index 3692b56ab..48b85e8dd 100755
--- a/codecs/codec_g723_1.c
+++ b/codecs/codec_g723_1.c
@@ -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>
diff --git a/codecs/codec_g726.c b/codecs/codec_g726.c
index 3dad026dd..de3e6c73d 100755
--- a/codecs/codec_g726.c
+++ b/codecs/codec_g726.c
@@ -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>
diff --git a/codecs/codec_gsm.c b/codecs/codec_gsm.c
index 8e37c70ec..286dc4fb8 100755
--- a/codecs/codec_gsm.c
+++ b/codecs/codec_gsm.c
@@ -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>
diff --git a/codecs/codec_ilbc.c b/codecs/codec_ilbc.c
index 947921249..5756d9ce9 100755
--- a/codecs/codec_ilbc.c
+++ b/codecs/codec_ilbc.c
@@ -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>
diff --git a/codecs/codec_lpc10.c b/codecs/codec_lpc10.c
index 2b054710a..9ec7a7ee2 100755
--- a/codecs/codec_lpc10.c
+++ b/codecs/codec_lpc10.c
@@ -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>
diff --git a/codecs/codec_speex.c b/codecs/codec_speex.c
index 4bd5155dd..5c44a0aef 100755
--- a/codecs/codec_speex.c
+++ b/codecs/codec_speex.c
@@ -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>
diff --git a/codecs/codec_ulaw.c b/codecs/codec_ulaw.c
index 55ff81e1c..698733a3c 100755
--- a/codecs/codec_ulaw.c
+++ b/codecs/codec_ulaw.c
@@ -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>