summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/ltp.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
commitc6b3d38a156dd624760a8eb1bb374affd43b4f2a (patch)
tree493eba929e2396d86cf4f077709aa09fe172cd35 /apps/codecs/libspeex/ltp.c
parentf66c30346783a400a029bedcd60ab67c81c34a07 (diff)
downloadrockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.gz
rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.zip
New makefile solution: A single invocation of 'make' to build the entire tree. Fully controlled dependencies give faster and more correct recompiles.
Many #include lines adjusted to conform to the new standards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/ltp.c')
-rw-r--r--apps/codecs/libspeex/ltp.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/codecs/libspeex/ltp.c b/apps/codecs/libspeex/ltp.c
index 04c1115b3f..9f10bc09d8 100644
--- a/apps/codecs/libspeex/ltp.c
+++ b/apps/codecs/libspeex/ltp.c
@@ -38,7 +38,7 @@
38#include "ltp.h" 38#include "ltp.h"
39#include "stack_alloc.h" 39#include "stack_alloc.h"
40#include "filters.h" 40#include "filters.h"
41#include <speex/speex_bits.h> 41#include "speex/speex_bits.h"
42#include "math_approx.h" 42#include "math_approx.h"
43#include "os_support.h" 43#include "os_support.h"
44 44
@@ -674,6 +674,9 @@ spx_word16_t last_pitch_gain,
674int cdbk_offset 674int cdbk_offset
675) 675)
676{ 676{
677 (void)end;
678 (void)pitch_coef;
679 (void)stack;
677 int i; 680 int i;
678 int pitch; 681 int pitch;
679 int gain_index; 682 int gain_index;
@@ -826,6 +829,14 @@ spx_word16_t last_pitch_gain,
826int cdbk_offset 829int cdbk_offset
827) 830)
828{ 831{
832 (void)end;
833 (void)par;
834 (void)bits;
835 (void)stack;
836 (void)count_lost;
837 (void)subframe_offset;
838 (void)last_pitch_gain;
839 (void)cdbk_offset;
829 int i; 840 int i;
830#ifdef FIXED_POINT 841#ifdef FIXED_POINT
831 if (pitch_coef>63) 842 if (pitch_coef>63)