blob: da5603d9e7a9aa2d1aa883143f36c7503f16cd1e [file] [log] [blame]
andrew@webrtc.org325cff02014-10-01 17:42:18 +00001/*
2 * Copyright (c) 2014 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
11#define _USE_MATH_DEFINES
12
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "common_audio/window_generator.h"
andrew@webrtc.org325cff02014-10-01 17:42:18 +000014
15#include <cmath>
16#include <complex>
17
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#include "rtc_base/checks.h"
andrew@webrtc.org325cff02014-10-01 17:42:18 +000019
20using std::complex;
21
22namespace {
23
24// Modified Bessel function of order 0 for complex inputs.
25complex<float> I0(complex<float> x) {
26 complex<float> y = x / 3.75f;
27 y *= y;
Yves Gerey665174f2018-06-19 15:03:05 +020028 return 1.0f + y * (3.5156229f +
29 y * (3.0899424f +
30 y * (1.2067492f +
31 y * (0.2659732f +
32 y * (0.360768e-1f + y * 0.45813e-2f)))));
andrew@webrtc.org325cff02014-10-01 17:42:18 +000033}
34
35} // namespace
36
37namespace webrtc {
38
39void WindowGenerator::Hanning(int length, float* window) {
henrikg91d6ede2015-09-17 00:24:34 -070040 RTC_CHECK_GT(length, 1);
41 RTC_CHECK(window != nullptr);
andrew@webrtc.org325cff02014-10-01 17:42:18 +000042 for (int i = 0; i < length; ++i) {
Yves Gerey665174f2018-06-19 15:03:05 +020043 window[i] =
44 0.5f * (1 - cosf(2 * static_cast<float>(M_PI) * i / (length - 1)));
andrew@webrtc.org325cff02014-10-01 17:42:18 +000045 }
46}
47
Yves Gerey665174f2018-06-19 15:03:05 +020048void WindowGenerator::KaiserBesselDerived(float alpha,
49 size_t length,
andrew@webrtc.org325cff02014-10-01 17:42:18 +000050 float* window) {
henrikg91d6ede2015-09-17 00:24:34 -070051 RTC_CHECK_GT(length, 1U);
52 RTC_CHECK(window != nullptr);
andrew@webrtc.org325cff02014-10-01 17:42:18 +000053
Peter Kastingdce40cf2015-08-24 14:52:23 -070054 const size_t half = (length + 1) / 2;
andrew@webrtc.org325cff02014-10-01 17:42:18 +000055 float sum = 0.0f;
56
Peter Kastingdce40cf2015-08-24 14:52:23 -070057 for (size_t i = 0; i <= half; ++i) {
andrew@webrtc.org325cff02014-10-01 17:42:18 +000058 complex<float> r = (4.0f * i) / length - 1.0f;
59 sum += I0(static_cast<float>(M_PI) * alpha * sqrt(1.0f - r * r)).real();
60 window[i] = sum;
61 }
Peter Kastingdce40cf2015-08-24 14:52:23 -070062 for (size_t i = length - 1; i >= half; --i) {
andrew@webrtc.org325cff02014-10-01 17:42:18 +000063 window[length - i - 1] = sqrtf(window[length - i - 1] / sum);
64 window[i] = window[length - i - 1];
65 }
66 if (length % 2 == 1) {
67 window[half - 1] = sqrtf(window[half - 1] / sum);
68 }
69}
70
71} // namespace webrtc