Home | History | Annotate | Download | only in neteq

Lines Matching refs:input_length

41 size_t Merge::Process(int16_t* input, size_t input_length,
56 input_vector.PushBackInterleaved(input, input_length);
58 assert(input_length_per_channel == input_length / num_channels_);
206 int16_t Merge::SignalScaling(const int16_t* input, size_t input_length,
211 std::min(static_cast<size_t>(64 * fs_mult_), input_length);
263 void Merge::Downsample(const int16_t* input, size_t input_length,
289 if (input_length <= length_limit) {
291 size_t temp_len = input_length - signal_offset;
303 input_length - signal_offset, input_downsampled_,
311 size_t start_position, size_t input_length,
342 // (1) w16_bestIndex + input_length <
344 // (2) w16_bestIndex + input_length < start_position.
347 start_index = (input_length > start_index) ? 0 : (start_index - input_length);
369 while (((best_correlation_index + input_length) <
371 ((best_correlation_index + input_length) < start_position)) {