In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
/*
|
|
* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
// This header file defines the coefficients of the FIR based approximation of
|
|
// the Meyer Wavelet
|
|
#ifndef MODULES_AUDIO_PROCESSING_TRANSIENT_DAUBECHIES_8_WAVELET_COEFFS_H_
|
|
#define MODULES_AUDIO_PROCESSING_TRANSIENT_DAUBECHIES_8_WAVELET_COEFFS_H_
|
|
|
|
// Decomposition coefficients Daubechies 8.
|
|
|
|
namespace webrtc {
|
|
|
|
const int kDaubechies8CoefficientsLength = 16;
|
|
|
|
const float kDaubechies8HighPassCoefficients[kDaubechies8CoefficientsLength]
|
|
= {
|
|
-5.44158422430816093862e-02f,
|
|
3.12871590914465924627e-01f,
|
|
-6.75630736298012846142e-01f,
|
|
5.85354683654869090148e-01f,
|
|
1.58291052560238926228e-02f,
|
|
-2.84015542962428091389e-01f,
|
|
-4.72484573997972536787e-04f,
|
|
1.28747426620186011803e-01f,
|
|
1.73693010020221083600e-02f,
|
|
-4.40882539310647192377e-02f,
|
|
-1.39810279170155156436e-02f,
|
|
8.74609404701565465445e-03f,
|
|
4.87035299301066034600e-03f,
|
|
-3.91740372995977108837e-04f,
|
|
-6.75449405998556772109e-04f,
|
|
-1.17476784002281916305e-04f
|
|
};
|
|
|
|
const float kDaubechies8LowPassCoefficients[kDaubechies8CoefficientsLength] = {
|
|
-1.17476784002281916305e-04f,
|
|
6.75449405998556772109e-04f,
|
|
-3.91740372995977108837e-04f,
|
|
-4.87035299301066034600e-03f,
|
|
8.74609404701565465445e-03f,
|
|
1.39810279170155156436e-02f,
|
|
-4.40882539310647192377e-02f,
|
|
-1.73693010020221083600e-02f,
|
|
1.28747426620186011803e-01f,
|
|
4.72484573997972536787e-04f,
|
|
-2.84015542962428091389e-01f,
|
|
-1.58291052560238926228e-02f,
|
|
5.85354683654869090148e-01f,
|
|
6.75630736298012846142e-01f,
|
|
3.12871590914465924627e-01f,
|
|
5.44158422430816093862e-02f
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_PROCESSING_TRANSIENT_DAUBECHIES_8_WAVELET_COEFFS_H_
|