summaryrefslogtreecommitdiff
path: root/codecs/codec_speex.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-06-06 22:12:19 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-06-06 22:12:19 +0000
commit2b8338cb5261463c24a4acd0a681eb4a4594f89a (patch)
treecf4d39e2fe550722cbe4552cccd0cf5a511730e9 /codecs/codec_speex.c
parent005e436b5728dd3ba2dea2ec92e49222120d279c (diff)
more file version tags
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5866 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/codec_speex.c')
-rwxr-xr-xcodecs/codec_speex.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/codecs/codec_speex.c b/codecs/codec_speex.c
index e7dd94cca..c067283b8 100755
--- a/codecs/codec_speex.c
+++ b/codecs/codec_speex.c
@@ -14,6 +14,14 @@
* hacked to be configurable by anthm and bkw 9/28/2004
*/
+#include <fcntl.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <netinet/in.h>
+#include <string.h>
+#include <stdio.h>
+#include <speex.h>
+
static int quality = 8;
static int complexity = 2;
static int enhancement = 0;
@@ -28,6 +36,10 @@ static int dtx = 0;
#define TYPE_LOW 0x1
#define TYPE_MASK 0x3
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION("$Revision$")
+
#include "asterisk/lock.h"
#include "asterisk/translate.h"
#include "asterisk/module.h"
@@ -35,14 +47,6 @@ static int dtx = 0;
#include "asterisk/options.h"
#include "asterisk/logger.h"
#include "asterisk/channel.h"
-#include <fcntl.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <netinet/in.h>
-#include <string.h>
-#include <stdio.h>
-
-#include <speex.h>
/* Sample frame data */
#include "slin_speex_ex.h"