aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-21 14:48:45 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-21 14:48:45 +0000
commit9d0252b7202164964c7332bd08869c05d096d098 (patch)
treed7935ef8c635ad15f9b6bf0084107c4b7b561c38 /codecs
parent3721fc1b6fd4138afcf5377f4e19997bd3186c76 (diff)
Merged revisions 132390 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r132390 | russell | 2008-07-21 09:47:41 -0500 (Mon, 21 Jul 2008) | 16 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.0@132391 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-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 b6338ecbf..61533fead 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"