Files
.github
.tx
apkdiff
apntool
artwork
assets
gradle
jni
libspeex
openssl
redphone
utils
webrtc
base
common_audio
modules
audio_coding
audio_processing
aec
aec-tmp
aecm
agc
ns
utility
Android.mk
delay_estimator.c
delay_estimator.h
delay_estimator_internal.h
delay_estimator_unittest.cc
delay_estimator_wrapper.c
delay_estimator_wrapper.h
fft4g.c
fft4g.h
ring_buffer.c
ring_buffer.h
ring_buffer_unittest.cc
interface
system_wrappers
common_types.h
engine_configurations.h
typedefs.h
Android.mk
Application.mk
android-webrtc.mk
libs
res
src
test
.gitattributes
.gitignore
AndroidManifest.xml
BUILDING.md
CONTRIBUTING.md
Dockerfile
LICENSE
NOTICE
README.md
build.gradle
gradlew
gradlew.bat
proguard-appcompat-v7.pro
proguard-automation.pro
proguard-dagger.pro
proguard-glide.pro
proguard-google-play-services.pro
proguard-jackson.pro
proguard-retrofit.pro
proguard-rounded-image-view.pro
proguard-shortcutbadger.pro
proguard-spongycastle.pro
proguard-sqlite.pro
proguard-square-okhttp.pro
proguard-square-okio.pro
proguard.cfg
settings.gradle
session-android/jni/webrtc/modules/audio_processing/utility/fft4g.h

18 lines
643 B
C
Raw Normal View History

/*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_FFT4G_H_
#define WEBRTC_MODULES_AUDIO_PROCESSING_UTILITY_FFT4G_H_
void WebRtc_rdft(int, int, float *, int *, float *);
void WebRtc_cdft(int, int, float *, int *, float *);
#endif