Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rotation-test.c')
-rw-r--r--tests/rotation-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rotation-test.c b/tests/rotation-test.c
index b66154f..164a6ea 100644
--- a/tests/rotation-test.c
+++ b/tests/rotation-test.c
@@ -14,8 +14,8 @@ void test_rotation(int N, int K)
{
int i;
double err = 0, ener = 0, snr, snr0;
- celt_word16_t x0[MAX_SIZE];
- celt_word16_t x1[MAX_SIZE];
+ celt_word16 x0[MAX_SIZE];
+ celt_word16 x1[MAX_SIZE];
int nb_rotations = (N+4*K)/(8*K);
for (i=0;i<N;i++)
x1[i] = x0[i] = rand()%32767-16384;