/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
DC_2I_D16_TRC_WRA_01_Private.h | 30 }Filter_State; 32 typedef Filter_State * PFilter_State ;
|
BP_1I_D16F16Css_TRC_WRA_01_Private.h | 26 }Filter_State; 28 typedef Filter_State * PFilter_State ;
|
BP_1I_D16F32Cll_TRC_WRA_01_Private.h | 26 }Filter_State; 28 typedef Filter_State * PFilter_State ;
|
BP_1I_D32F32Cll_TRC_WRA_02_Private.h | 26 }Filter_State; 28 typedef Filter_State * PFilter_State ;
|
BQ_1I_D16F16Css_TRC_WRA_01_Private.h | 26 }Filter_State; 28 typedef Filter_State * PFilter_State ;
|
BQ_1I_D16F32Css_TRC_WRA_01_Private.h | 26 }Filter_State; 28 typedef Filter_State * PFilter_State ;
|
BQ_2I_D16F16Css_TRC_WRA_01_Private.h | 27 }Filter_State; 29 typedef Filter_State * PFilter_State ;
|
BQ_2I_D16F32Css_TRC_WRA_01_Private.h | 27 }Filter_State; 29 typedef Filter_State * PFilter_State ;
|
BQ_2I_D32F32Cll_TRC_WRA_01_Private.h | 28 }Filter_State; 30 typedef Filter_State * PFilter_State ;
|
FO_1I_D16F16Css_TRC_WRA_01_Private.h | 27 }Filter_State; 29 typedef Filter_State * PFilter_State ;
|
FO_1I_D32F32Cll_TRC_WRA_01_Private.h | 28 }Filter_State; 30 typedef Filter_State * PFilter_State ;
|
FO_2I_D16F32Css_LShx_TRC_WRA_01_Private.h | 28 }Filter_State; 30 typedef Filter_State * PFilter_State ;
|
PK_2I_D32F32CllGss_TRC_WRA_01_Private.h | 27 }Filter_State; 29 typedef Filter_State * PFilter_State ;
|
PK_2I_D32F32CssGss_TRC_WRA_01_Private.h | 28 }Filter_State; 30 typedef Filter_State * PFilter_State ;
|
/external/webrtc/src/common_audio/vad/ |
vad_filterbank.c | 38 int16_t* filter_state, 57 tmp32 += (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[1], filter_state[0]); 59 filter_state[1]); // Q14 60 filter_state[1] = filter_state[0]; 61 filter_state[0] = *in_ptr++; 65 filter_state[2]); // Q14 66 tmp32 -= (int32_t) WEBRTC_SPL_MUL_16_16(kHpPoleCoefs[2], filter_state[3]); 67 filter_state[3] = filter_state[2] [all...] |
vad_filterbank.h | 31 * - filter_state : Current state of the filter 35 * - filter_state : Updated state of the filter 40 int16_t* filter_state, 55 * - filter_state : Current state of the filter (Q(-1)) 59 * - filter_state : Updated state of the filter (Q(-1)) 65 int16_t* filter_state,
|
vad_sp.h | 27 // - filter_state : Current filter states of the two all-pass filters. The 28 // |filter_state| is updated after all samples have been 35 int32_t* filter_state,
|
vad_sp.c | 27 int32_t* filter_state, 30 int32_t tmp32_1 = filter_state[0]; 31 int32_t tmp32_2 = filter_state[1]; 52 filter_state[0] = tmp32_1; 53 filter_state[1] = tmp32_2;
|
/external/webrtc/src/common_audio/signal_processing/ |
splitting_filter.c | 39 // - filter_state : Filter state (length 6, Q10). 48 WebRtc_Word32* filter_state) 75 diff = WEBRTC_SPL_SUB_SAT_W32(in_data[0], filter_state[1]); // = (x[0] - y_1[-1]) 77 out_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, filter_state[0]); 88 filter_state[0] = in_data[data_length - 1]; // x[N-1], becomes x[-1] next time 89 filter_state[1] = out_data[data_length - 1]; // y_1[N-1], becomes y_1[-1] next time 92 diff = WEBRTC_SPL_SUB_SAT_W32(out_data[0], filter_state[3]); // = (y_1[0] - y_2[-1]) 94 in_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[1], diff, filter_state[2]); 102 filter_state[2] = out_data[data_length - 1]; // y_1[N-1], becomes y_1[-1] next time 103 filter_state[3] = in_data[data_length - 1]; // y_2[N-1], becomes y_2[-1] next tim [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
pitch_filter.c | 260 static void FilterFrame(const double* in_data, PitchFiltstr* filter_state, 276 memcpy(filter_parameters.buffer, filter_state->ubuf, 277 sizeof(filter_state->ubuf)); 278 memcpy(filter_parameters.damper_state, filter_state->ystate, 279 sizeof(filter_state->ystate)); 298 old_lag = *filter_state->oldlagp; 299 old_gain = *filter_state->oldgainp; 339 memcpy(filter_state->ubuf, &filter_parameters.buffer[PITCH_FRAME_LEN], 340 sizeof(filter_state->ubuf)); 341 memcpy(filter_state->ystate, filter_parameters.damper_state [all...] |
/external/openfst/src/include/fst/ |
state-table.h | 221 filter_state(FilterState::NoState()) {} 224 : state_id1(s1), state_id2(s2), filter_state(f) {} 228 FilterState filter_state; // State of composition filter member in struct:fst::ComposeStateTuple 239 x.filter_state == y.filter_state; 249 t.filter_state.Hash() * kPrime1; 308 tuple.filter_state.Hash() * mult2_;
|
compose.h | 269 filter_->SetState(s1, s2, tuple.filter_state); 365 filter_->SetState(s1, s2, tuple.filter_state);
|
/external/webrtc/src/common_audio/signal_processing/include/ |
signal_processing_library.h | 378 WebRtc_Word16* filter_state, int filter_state_length, [all...] |
/external/srec/srec/Recognizer/src/ |
RecognizerImpl.c | 1851 } filter_state = WORD; local [all...] |