summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiza Sulistyo <riza@teluu.com>2016-05-17 14:31:10 +0000
committerRiza Sulistyo <riza@teluu.com>2016-05-17 14:31:10 +0000
commit7ebbf2a170f2ba65f3dc925430604c7fc7a88822 (patch)
treea63cb793d838e24e583b8c5a662c8008db3526a1
parent99614d0efb96167bb8d391f12f5190f4fe86f63a (diff)
Re #1917(misc): When enabling libsamplerate, the current source code expects to
have the already installed package "libsamplerate" in the third-party directory of pjproject. The patch changes this. Thanks to Alexander Traud for the patch. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5300 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjmedia/src/pjmedia/resample_libsamplerate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjmedia/src/pjmedia/resample_libsamplerate.c b/pjmedia/src/pjmedia/resample_libsamplerate.c
index 6d1f1a06..b63ac762 100644
--- a/pjmedia/src/pjmedia/resample_libsamplerate.c
+++ b/pjmedia/src/pjmedia/resample_libsamplerate.c
@@ -33,7 +33,7 @@
#if PJMEDIA_RESAMPLE_IMP==PJMEDIA_RESAMPLE_LIBSAMPLERATE
-#include "../../third_party/libsamplerate/src/samplerate.h"
+#include <samplerate.h>
#define THIS_FILE "resample_libsamplerate.c"