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