Update audio_processing module
Corresponds to upstream commit 524e9b043e7e86fd72353b987c9d5f6a1ebf83e1 Update notes: * Pull in third party license file * Replace .gypi files with BUILD.gn to keep track of what changes upstream * Bunch of new filse pulled in as dependencies * Won't build yet due to changes needed on top of these
This commit is contained in:
75
webrtc/common_audio/real_fourier.h
Normal file
75
webrtc/common_audio/real_fourier.h
Normal file
@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Copyright (c) 2014 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_COMMON_AUDIO_REAL_FOURIER_H_
|
||||
#define WEBRTC_COMMON_AUDIO_REAL_FOURIER_H_
|
||||
|
||||
#include <complex>
|
||||
|
||||
#include "webrtc/base/scoped_ptr.h"
|
||||
#include "webrtc/system_wrappers/interface/aligned_malloc.h"
|
||||
|
||||
// Uniform interface class for the real DFT and its inverse, for power-of-2
|
||||
// input lengths. Also contains helper functions for buffer allocation, taking
|
||||
// care of any memory alignment requirements the underlying library might have.
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
class RealFourier {
|
||||
public:
|
||||
// Shorthand typenames for the scopers used by the buffer allocation helpers.
|
||||
typedef rtc::scoped_ptr<float[], AlignedFreeDeleter> fft_real_scoper;
|
||||
typedef rtc::scoped_ptr<std::complex<float>[], AlignedFreeDeleter>
|
||||
fft_cplx_scoper;
|
||||
|
||||
// The alignment required for all input and output buffers, in bytes.
|
||||
static const int kFftBufferAlignment;
|
||||
|
||||
// Construct a wrapper instance for the given input order, which must be
|
||||
// between 1 and kMaxFftOrder, inclusively.
|
||||
static rtc::scoped_ptr<RealFourier> Create(int fft_order);
|
||||
virtual ~RealFourier() {};
|
||||
|
||||
// Helper to compute the smallest FFT order (a power of 2) which will contain
|
||||
// the given input length.
|
||||
static int FftOrder(size_t length);
|
||||
|
||||
// Helper to compute the input length from the FFT order.
|
||||
static size_t FftLength(int order);
|
||||
|
||||
// Helper to compute the exact length, in complex floats, of the transform
|
||||
// output (i.e. |2^order / 2 + 1|).
|
||||
static size_t ComplexLength(int order);
|
||||
|
||||
// Buffer allocation helpers. The buffers are large enough to hold |count|
|
||||
// floats/complexes and suitably aligned for use by the implementation.
|
||||
// The returned scopers are set up with proper deleters; the caller owns
|
||||
// the allocated memory.
|
||||
static fft_real_scoper AllocRealBuffer(int count);
|
||||
static fft_cplx_scoper AllocCplxBuffer(int count);
|
||||
|
||||
// Main forward transform interface. The output array need only be big
|
||||
// enough for |2^order / 2 + 1| elements - the conjugate pairs are not
|
||||
// returned. Input and output must be properly aligned (e.g. through
|
||||
// AllocRealBuffer and AllocCplxBuffer) and input length must be
|
||||
// |2^order| (same as given at construction time).
|
||||
virtual void Forward(const float* src, std::complex<float>* dest) const = 0;
|
||||
|
||||
// Inverse transform. Same input format as output above, conjugate pairs
|
||||
// not needed.
|
||||
virtual void Inverse(const std::complex<float>* src, float* dest) const = 0;
|
||||
|
||||
virtual int order() const = 0;
|
||||
};
|
||||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // WEBRTC_COMMON_AUDIO_REAL_FOURIER_H_
|
||||
|
Reference in New Issue
Block a user