Removing more unused function params

This commit is contained in:
Jean-Marc Valin 2011-01-26 13:09:53 -05:00
parent 13a7c26654
commit e3e2c26dfc
7 changed files with 30 additions and 40 deletions

View file

@ -198,7 +198,7 @@ static celt_int16 *compute_ebands(celt_int32 Fs, int frame_size, int res, int *n
return eBands;
}
static void compute_allocation_table(CELTMode *mode, int res)
static void compute_allocation_table(CELTMode *mode)
{
int i, j;
unsigned char *allocVectors;
@ -370,7 +370,7 @@ CELTMode *celt_mode_create(celt_int32 Fs, int frame_size, int *error)
/* Overlap must be divisible by 4 */
mode->overlap = ((mode->shortMdctSize>>2)<<2);
compute_allocation_table(mode, res);
compute_allocation_table(mode);
if (mode->allocVectors==NULL)
goto failure;