forked from google/lyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comfort_noise_generator.h
80 lines (65 loc) · 2.64 KB
/
comfort_noise_generator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LYRA_CODEC_COMFORT_NOISE_GENERATOR_H_
#define LYRA_CODEC_COMFORT_NOISE_GENERATOR_H_
#include <cstdint>
#include <memory>
#include <vector>
#include "absl/types/optional.h"
#include "audio/dsp/mfcc/mel_filterbank.h"
#include "audio/dsp/spectrogram/inverse_spectrogram.h"
#include "generative_model_interface.h"
namespace chromemedia {
namespace codec {
// This class generates comfort noise by estimating audio samples that
// correspond to the given features.
class ComfortNoiseGenerator : public GenerativeModelInterface {
public:
// Returns a nullptr on failure.
static std::unique_ptr<ComfortNoiseGenerator> Create(
int sample_rate_hz, int num_mel_bins, int window_length_samples,
int hop_length_samples);
~ComfortNoiseGenerator() override {}
void AddFeatures(const std::vector<float>& features) override;
absl::optional<std::vector<int16_t>> GenerateSamples(
int num_samples) override;
void Reset() override;
private:
ComfortNoiseGenerator(
int num_fft_bins, int sample_rate_hz, int num_mel_bins,
int hop_length_samples,
std::unique_ptr<audio_dsp::MelFilterbank> mel_filterbank,
std::unique_ptr<audio_dsp::InverseSpectrogram> inverse_spectrogram);
// Estimates the Squared-Magnitude FFT that corresponds to the Log Mel
// features. Returns true if the estimation completed successfully and false
// otherwise.
bool FftFromFeatures();
// Produces time-domain inverse of a Squared-Magnitude FFT by adding a random
// phase to each element. Returns true if the inversion completed successfully
// and false otherwise.
bool InvertFft();
const std::unique_ptr<const audio_dsp::MelFilterbank> mel_filterbank_;
const std::unique_ptr<audio_dsp::InverseSpectrogram> inverse_spectrogram_;
const int num_fft_bins_;
const int num_mel_bins_;
const int hop_length_samples_;
std::vector<float> log_mel_features_;
std::vector<double> squared_magnitude_fft_;
std::vector<int16_t> reconstructed_samples_;
};
} // namespace codec
} // namespace chromemedia
#endif // LYRA_CODEC_COMFORT_NOISE_GENERATOR_H_