real_fourier_ooura.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef COMMON_AUDIO_REAL_FOURIER_OOURA_H_
  11. #define COMMON_AUDIO_REAL_FOURIER_OOURA_H_
  12. #include <stddef.h>
  13. #include <complex>
  14. #include <memory>
  15. #include "common_audio/real_fourier.h"
  16. namespace webrtc {
  17. class RealFourierOoura : public RealFourier {
  18. public:
  19. explicit RealFourierOoura(int fft_order);
  20. ~RealFourierOoura() override;
  21. void Forward(const float* src, std::complex<float>* dest) const override;
  22. void Inverse(const std::complex<float>* src, float* dest) const override;
  23. int order() const override;
  24. private:
  25. const int order_;
  26. const size_t length_;
  27. const size_t complex_length_;
  28. // These are work arrays for Ooura. The names are based on the comments in
  29. // common_audio/third_party/ooura/fft_size_256/fft4g.cc.
  30. const std::unique_ptr<size_t[]> work_ip_;
  31. const std::unique_ptr<float[]> work_w_;
  32. };
  33. } // namespace webrtc
  34. #endif // COMMON_AUDIO_REAL_FOURIER_OOURA_H_