OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AecCore
(Results
1 - 15
of
15
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.h
54
typedef struct
AecCore
AecCore
;
56
AecCore
* WebRtcAec_CreateAec(); // Returns NULL on error.
57
void WebRtcAec_FreeAec(
AecCore
* aec);
58
int WebRtcAec_InitAec(
AecCore
* aec, int sampFreq);
67
void WebRtcAec_BufferFarendPartition(
AecCore
* aec, const float* farend);
68
void WebRtcAec_ProcessFrames(
AecCore
* aec,
78
int WebRtcAec_MoveFarReadPtr(
AecCore
* aec, int elements);
86
int WebRtcAec_GetDelayMetricsCore(
AecCore
* self, int* median, int* std,
90
int WebRtcAec_echo_state(
AecCore
* self)
[
all
...]
echo_cancellation_internal.h
62
AecCore
* aec;
echo_cancellation_unittest.cc
38
AecCore
* aec_core = WebRtcAec_aec_core(handle);
echo_cancellation.h
61
struct
AecCore
;
244
// -
AecCore
pointer : NULL for error.
246
struct
AecCore
* WebRtcAec_aec_core(void* handle);
aec_core_internal.h
52
struct
AecCore
{
196
typedef void (*WebRtcAecOverdriveAndSuppress)(
AecCore
* aec,
202
typedef void (*WebRtcAecComfortNoise)(
AecCore
* aec,
209
typedef void (*WebRtcAecSubBandCoherence)(
AecCore
* aec,
219
typedef int (*WebRtcAecPartitionDelay)(const
AecCore
* aec);
aec_core.c
270
static void OverdriveAndSuppress(
AecCore
* aec,
293
static int PartitionDelay(const
AecCore
* aec) {
331
static void SmoothedPSD(
AecCore
* aec,
408
static void SubbandCoherence(
AecCore
* aec,
441
static void ComfortNoise(
AecCore
* aec,
555
static void InitMetrics(
AecCore
* self) {
627
static void UpdateMetrics(
AecCore
* aec) {
755
static void UpdateDelayMetrics(
AecCore
* self) {
850
static int SignalBasedDelayCorrection(
AecCore
* self) {
923
AecCore
* aec
[
all
...]
aec_core_mips.c
26
void WebRtcAec_ComfortNoise_mips(
AecCore
* aec,
[
all
...]
aec_core_neon.c
382
static void OverdriveAndSuppressNEON(
AecCore
* aec,
456
static int PartitionDelayNEON(const
AecCore
* aec) {
510
static void SmoothedPSD(
AecCore
* aec,
675
static void SubbandCoherenceNEON(
AecCore
* aec,
aec_core_sse2.c
369
static void OverdriveAndSuppressSSE2(
AecCore
* aec,
443
static int PartitionDelaySSE2(const
AecCore
* aec) {
489
static void SmoothedPSD(
AecCore
* aec,
661
static void SubbandCoherenceSSE2(
AecCore
* aec,
echo_cancellation.c
565
AecCore
* WebRtcAec_aec_core(void* handle) {
/external/webrtc/webrtc/modules/audio_processing/
echo_cancellation_impl_unittest.cc
27
AecCore
* aec_core = ap->echo_cancellation()->aec_core();
57
AecCore
* aec_core = ap->echo_cancellation()->aec_core();
echo_cancellation_impl.h
68
struct
AecCore
* aec_core() const override;
echo_cancellation_impl.cc
395
struct
AecCore
* EchoCancellationImpl::aec_core() const {
/external/webrtc/webrtc/modules/audio_processing/include/
audio_processing.h
28
struct
AecCore
;
696
virtual struct
AecCore
* aec_core() const = 0;
[
all
...]
mock_audio_processing.h
54
struct
AecCore
*());
Completed in 415 milliseconds