Renamed celt_word* to opus_val*

This commit is contained in:
Jean-Marc Valin 2011-07-29 18:59:12 -04:00
parent f9d14f8d77
commit ff5f7228fd
31 changed files with 401 additions and 401 deletions

View file

@ -14,8 +14,8 @@ void test_rotation(int N, int K)
{
int i;
double err = 0, ener = 0, snr, snr0;
celt_word16 x0[MAX_SIZE];
celt_word16 x1[MAX_SIZE];
opus_val16 x0[MAX_SIZE];
opus_val16 x1[MAX_SIZE];
int nb_rotations = (N+4*K)/(8*K);
for (i=0;i<N;i++)
x1[i] = x0[i] = rand()%32767-16384;