summaryrefslogtreecommitdiff
path: root/codecs/codec_resample.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-07-21 14:47:41 +0000
committerRussell Bryant <russell@russellbryant.com>2008-07-21 14:47:41 +0000
commitc87f901cfd9a5729273c18156e487a9634819610 (patch)
tree071ce68d73a14074b35b40b234c63df8f40737fb /codecs/codec_resample.c
parent5de127e1036bdc6c31b1fc94ed31eb1b09f964c0 (diff)
Remove libresample from the Asterisk source tree. It is now available in its
own repository, and must be installed like any other library for Asterisk to use. The two modules that require it are codec_resample and app_jack. To install libresample: $ svn co http://svn.digium.com/svn/libresample/trunk libresample $ cd libresample $ ./configure $ make $ sudo make install This code is currently in our own repository because the build system did not include the appropriate targets for building a dynamic library or for installing the library. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@132390 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/codec_resample.c')
-rw-r--r--codecs/codec_resample.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/codecs/codec_resample.c b/codecs/codec_resample.c
index 83479047b..3c61f3a0a 100644
--- a/codecs/codec_resample.c
+++ b/codecs/codec_resample.c
@@ -20,10 +20,16 @@
* \file
*
* \brief Resample slinear audio
+ *
+ * \arg http://svn.digium.com/svn/libresample/trunk
*
* \ingroup codecs
*/
+/*** MODULEINFO
+ <depend>resample</depend>
+ ***/
+
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
@@ -37,9 +43,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <limits.h>
/* } */
+#include <libresample.h>
+
#include "asterisk/module.h"
#include "asterisk/translate.h"
-#include "asterisk/libresample.h"
#include "slin_resample_ex.h"