Searched defs:high_band (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/src/modules/audio_processing/
H A Dsplitting_filter.cc18 WebRtc_Word16* high_band,
22 WebRtcSpl_AnalysisQMF(in_data, low_band, high_band, filter_state1, filter_state2);
26 const WebRtc_Word16* high_band,
31 WebRtcSpl_SynthesisQMF(low_band, high_band, out_data, filt_state1, filt_state2);
16 SplittingFilterAnalysis(const WebRtc_Word16* in_data, WebRtc_Word16* low_band, WebRtc_Word16* high_band, WebRtc_Word32* filter_state1, WebRtc_Word32* filter_state2) argument
25 SplittingFilterSynthesis(const WebRtc_Word16* low_band, const WebRtc_Word16* high_band, WebRtc_Word16* out_data, WebRtc_Word32* filt_state1, WebRtc_Word32* filt_state2) argument
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dsplitting_filter.c128 int16_t* low_band, int16_t* high_band,
165 high_band[i] = WebRtcSpl_SatW32ToW16(tmp);
169 void WebRtcSpl_SynthesisQMF(const int16_t* low_band, const int16_t* high_band, argument
186 tmp = (int32_t)low_band[i] + (int32_t)high_band[i];
188 tmp = (int32_t)low_band[i] - (int32_t)high_band[i];
127 WebRtcSpl_AnalysisQMF(const int16_t* in_data, int in_data_length, int16_t* low_band, int16_t* high_band, int32_t* filter_state1, int32_t* filter_state2) argument
/external/webrtc/src/common_audio/signal_processing/
H A Dsplitting_filter.c120 WebRtc_Word16* high_band, WebRtc_Word32* filter_state1,
154 high_band[i] = WebRtcSpl_SatW32ToW16(tmp);
158 void WebRtcSpl_SynthesisQMF(const WebRtc_Word16* low_band, const WebRtc_Word16* high_band, argument
174 tmp = (WebRtc_Word32)low_band[i] + (WebRtc_Word32)high_band[i];
176 tmp = (WebRtc_Word32)low_band[i] - (WebRtc_Word32)high_band[i];
119 WebRtcSpl_AnalysisQMF(const WebRtc_Word16* in_data, WebRtc_Word16* low_band, WebRtc_Word16* high_band, WebRtc_Word32* filter_state1, WebRtc_Word32* filter_state2) argument

Completed in 117 milliseconds