HomeSort by relevance Sort by last modified time
    Searched refs:allocVectors (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/opus/src/celt/
modes.h 74 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */
modes.c 169 unsigned char *allocVectors;
173 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands));
174 if (allocVectors==NULL)
181 allocVectors[i] = band_allocation[i];
182 mode->allocVectors = allocVectors;
198 allocVectors[i*mode->nbEBands+j] = band_allocation[i*maxBands + maxBands-1];
203 allocVectors[i*mode->nbEBands+j] = (a0*band_allocation[i*maxBands+k-1]
213 printf ("%d ", allocVectors[i*mode->nbEBands+j]);
218 mode->allocVectors = allocVectors
    [all...]
rate.c 589 bitsj = C*N*m->allocVectors[mid*len+j]<<LM>>2;
616 bits1j = C*N*m->allocVectors[lo*len+j]<<LM>>2;
618 cap[j] : C*N*m->allocVectors[hi*len+j]<<LM>>2;
  /external/libopus/celt/
modes.h 74 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */
modes.c 169 unsigned char *allocVectors;
173 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands));
174 if (allocVectors==NULL)
181 allocVectors[i] = band_allocation[i];
182 mode->allocVectors = allocVectors;
198 allocVectors[i*mode->nbEBands+j] = band_allocation[i*maxBands + maxBands-1];
203 allocVectors[i*mode->nbEBands+j] = (a0*band_allocation[i*maxBands+k-1]
213 printf ("%d ", allocVectors[i*mode->nbEBands+j]);
218 mode->allocVectors = allocVectors
    [all...]
rate.c 589 bitsj = C*N*m->allocVectors[mid*len+j]<<LM>>2;
616 bits1j = C*N*m->allocVectors[lo*len+j]<<LM>>2;
618 cap[j] : C*N*m->allocVectors[hi*len+j]<<LM>>2;
  /external/chromium_org/third_party/opus/src/celt/dump_modes/
dump_modes.c 102 fprintf (file, "static const unsigned char allocVectors%d_%d[%d] = {\n", mode->Fs, mdctSize, mode->nbEBands*mode->nbAllocVectors);
106 fprintf (file, "%2d, ", mode->allocVectors[j*mode->nbEBands+k]);
227 fprintf(file, "band_allocation,\t/* allocVectors */\n");
229 fprintf(file, "allocVectors%d_%d,\t/* allocVectors */\n", mode->Fs, mdctSize);

Completed in 734 milliseconds