Home | History | Annotate | Download | only in celt

Lines Matching refs:frame_size

89 static opus_int16 *compute_ebands(opus_int32 Fs, int frame_size, int res, int *nbEBands)
95 if (Fs == 400*(opus_int32)frame_size)
140 if (eBands[*nbEBands] > frame_size)
141 eBands[*nbEBands] = frame_size;
223 CELTMode *opus_custom_mode_create(opus_int32 Fs, int frame_size, int *error)
246 (frame_size<<j) == static_mode_list[i]->shortMdctSize*static_mode_list[i]->nbShortMdcts)
270 if (frame_size < 40 || frame_size > 1024 || frame_size%2!=0)
277 if ((opus_int32)frame_size*1000 < Fs)
284 if ((opus_int32)frame_size*75 >= Fs && (frame_size%16)==0)
287 } else if ((opus_int32)frame_size*150 >= Fs && (frame_size%8)==0)
290 } else if ((opus_int32)frame_size*300 >= Fs && (frame_size%4)==0)
299 if ((opus_int32)(frame_size>>LM)*300 > Fs)
342 mode->shortMdctSize = frame_size/mode->nbShortMdcts;