summaryrefslogtreecommitdiff
path: root/common_audio/signal_processing/filter_ar_fast_q12.c
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-27 09:49:58 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-27 09:49:58 +0000
commitf24ac5923cbe5e806fac59a0d15e32567553ce8e (patch)
tree1e1fccf7bbb5d19b4790a7be977e450d006abd01 /common_audio/signal_processing/filter_ar_fast_q12.c
parent460e1722409f48000c7eb9a87167ce654dbec738 (diff)
downloadwebrtc-f24ac5923cbe5e806fac59a0d15e32567553ce8e.tar.gz
Include files from webrtc/.. paths in common_audio/
BUG=1662 R=tina.legrand@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1535005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4107 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_audio/signal_processing/filter_ar_fast_q12.c')
-rw-r--r--common_audio/signal_processing/filter_ar_fast_q12.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common_audio/signal_processing/filter_ar_fast_q12.c b/common_audio/signal_processing/filter_ar_fast_q12.c
index 04023027..cfd82ca8 100644
--- a/common_audio/signal_processing/filter_ar_fast_q12.c
+++ b/common_audio/signal_processing/filter_ar_fast_q12.c
@@ -9,7 +9,7 @@
*/
#include <assert.h>
-#include "signal_processing_library.h"
+#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
// TODO(bjornv): Change the return type to report errors.
@@ -40,4 +40,3 @@ void WebRtcSpl_FilterARFastQ12(const int16_t* data_in,
data_out[i] = (int16_t)((output + 2048) >> 12);
}
}
-