Searched defs:FilterState (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c69 int32_t *FilterState) //Q16
78 b = WebRtcSpl_AddSatW32(a, FilterState[j]); //Q16+Q16=Q16
82 FilterState[j] = WebRtcSpl_AddSatW32(
66 AllpassFilterForDec32(int16_t *InOut16, const int32_t *APSectionFactors, int16_t lengthInOut, int32_t *FilterState) argument
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters.c75 WebRtc_Word32 *FilterState) //Q16
84 b = WEBRTC_SPL_ADD_SAT_W32(a, FilterState[j]); //Q16+Q16=Q16
88 FilterState[j] = WEBRTC_SPL_ADD_SAT_W32(
72 AllpassFilterForDec32(WebRtc_Word16 *InOut16, const WebRtc_Word32 *APSectionFactors, WebRtc_Word16 lengthInOut, WebRtc_Word32 *FilterState) argument
H A Dfilterbanks.c31 WebRtc_Word32 *FilterState) //Q16
42 b = WEBRTC_SPL_ADD_SAT_W32(a, FilterState[j]); //Q16+Q16=Q16
44 FilterState[j] = WEBRTC_SPL_ADD_SAT_W32(WEBRTC_SPL_LSHIFT_W32(a,1), WEBRTC_SPL_LSHIFT_W32((WebRtc_UWord32)InOut16[n],16)); // Q15<<1 + Q0<<16 = Q16 + Q16 = Q16
27 AllpassFilter2FixDec16(WebRtc_Word16 *InOut16, const WebRtc_Word16 *APSectionFactors, WebRtc_Word16 lengthInOut, WebRtc_Word16 NumberOfSections, WebRtc_Word32 *FilterState) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfilterbanks.c31 float *FilterState)
37 temp = FilterState[j] + APSectionFactors[j] * InOut[n];
38 FilterState[j] = -APSectionFactors[j] * temp + InOut[n];
29 WebRtcIsac_AllPassFilter2Float(float *InOut, const float *APSectionFactors, int lengthInOut, int NumberOfSections, float *FilterState) argument
H A Dfilter_functions.c202 double *FilterState)
211 InOut[n] = FilterState[j] + APSectionFactors[j]*temp;
212 FilterState[j] = -APSectionFactors[j]*InOut[n] + temp;
199 WebRtcIsac_AllpassFilterForDec(double *InOut, const double *APSectionFactors, int lengthInOut, double *FilterState) argument
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc29 struct FilterState { struct in namespace:webrtc::__anon15911
35 int InitializeFilter(FilterState* hpf, int sample_rate_hz) {
50 int Filter(FilterState* hpf, int16_t* data, int length) {
105 typedef FilterState Handle;
148 return new FilterState;
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dfilterbanks.c31 float *FilterState)
37 temp = FilterState[j] + APSectionFactors[j] * InOut[n];
38 FilterState[j] = -APSectionFactors[j] * temp + InOut[n];
29 WebRtcIsac_AllPassFilter2Float(float *InOut, const float *APSectionFactors, int lengthInOut, int NumberOfSections, float *FilterState) argument
H A Dfilter_functions.c201 double *FilterState)
210 InOut[n] = FilterState[j] + APSectionFactors[j]*temp;
211 FilterState[j] = -APSectionFactors[j]*InOut[n] + temp;
198 WebRtcIsac_AllpassFilterForDec(double *InOut, const double *APSectionFactors, int lengthInOut, double *FilterState) argument
/external/webrtc/src/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc30 struct FilterState { struct in namespace:webrtc::__anon33499
36 int InitializeFilter(FilterState* hpf, int sample_rate_hz) {
51 int Filter(FilterState* hpf, WebRtc_Word16* data, int length) {
106 typedef FilterState Handle;
154 return new FilterState;
/external/openfst/src/include/fst/
H A Dstate-table.h196 // typedef F FilterState;
217 typedef F FilterState; typedef in struct:fst::ComposeStateTuple
221 filter_state(FilterState::NoState()) {}
223 ComposeStateTuple(StateId s1, StateId s2, const FilterState &f)
228 FilterState filter_state; // State of composition filter
273 typedef F FilterState; typedef in class:fst::GenericComposeStateTable
294 typedef F FilterState; typedef in class:fst::ComposeFingerprint
322 typedef F FilterState; typedef in class:fst::ComposeState1Fingerprint
334 typedef F FilterState; typedef in class:fst::ComposeState2Fingerprint
352 typedef F FilterState; typedef in class:fst::ProductComposeStateTable
386 typedef F FilterState; typedef in class:fst::StringDetComposeStateTable
428 typedef F FilterState; typedef in class:fst::DetStringComposeStateTable
468 typedef F FilterState; typedef in class:fst::ErasableComposeStateTable
[all...]
H A Dcompose-filter.h36 // class FilterState {
39 // FilterState();
40 // FilterState(const FilterState &f);
42 // static const FilterState NoState();
46 // bool operator==(const FilterState &f) const;
48 // bool operator!=(const FilterState &f) const;
50 // FilterState& operator=(const FilterState& f);
156 // ComposeFilter::FilterState
212 typedef CharFilterState FilterState; typedef in class:fst::SequenceComposeFilter
297 typedef CharFilterState FilterState; typedef in class:fst::AltSequenceComposeFilter
383 typedef CharFilterState FilterState; typedef in class:fst::MatchComposeFilter
487 typedef typename F::FilterState FilterState; typedef in class:fst::MultiEpsFilter
[all...]
H A Dlookahead-filter.h204 typedef typename F::FilterState FilterState; typedef in class:fst::LookAheadComposeFilter
240 FilterState Start() const {
244 void SetState(StateId s1, StateId s2, const FilterState &f) {
248 FilterState FilterArc(Arc *arc1, Arc *arc2) const {
251 const FilterState &f = filter_.FilterArc(arc1, arc2);
252 if (f == FilterState::NoState())
253 return FilterState::NoState();
294 FilterState LookAheadFilterArc(Arc *arca, Arc *arcb,
295 const FilterState
339 typedef PairFilterState<FilterState1, FilterState2> FilterState; typedef in class:fst::PushWeightsComposeFilter
437 typedef PairFilterState<FilterState1, FilterState2> FilterState; typedef in class:fst::PushLabelsComposeFilter
[all...]
H A Dcompose.h51 class T = GenericComposeStateTable<A, typename F::FilterState> >
82 typename F::FilterState> >
211 typedef typename F::FilterState FilterState; typedef in class:fst::ComposeFstImpl
219 typedef ComposeStateTuple<StateId, FilterState> StateTuple;
318 const FilterState &f = filter_->FilterArc(&arcb, &arca);
319 if (f != FilterState::NoState())
322 const FilterState &f = filter_->FilterArc(&arca, &arcb);
323 if (f != FilterState::NoState())
332 const FilterState
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h287 typedef typename F::FilterState FilterState1;
291 typedef PairFilterState<FilterState1, FilterState2> FilterState; typedef in class:fst::ParenFilter
302 f_(FilterState::NoState()),
324 f_(FilterState::NoState()),
328 FilterState Start() const {
329 return FilterState(filter_.Start(), FilterState2(0));
332 void SetState(StateId s1, StateId s2, const FilterState &f) {
352 FilterState FilterArc(Arc *arc1, Arc *arc2) const {
356 return FilterState::NoState();
373 return FilterState(f
[all...]

Completed in 285 milliseconds