blob: 9ddf81e41e4eeed9eb3f98478ae42e0e68db640e [file] [log] [blame]
aleloi24899e52017-02-21 05:06:29 -08001/*
2 * Copyright (c) 2017 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_AUDIO_MIXER_FRAME_COMBINER_H_
12#define MODULES_AUDIO_MIXER_FRAME_COMBINER_H_
aleloi24899e52017-02-21 05:06:29 -080013
14#include <memory>
15#include <vector>
16
Olga Sharonova0607c962020-10-19 14:23:46 +020017#include "api/array_view.h"
Alex Loiko8396e342018-06-21 12:04:05 +020018#include "api/audio/audio_frame.h"
Alessio Bazzica3e4c77f2018-11-01 21:31:38 +010019#include "modules/audio_processing/agc2/limiter.h"
aleloi24899e52017-02-21 05:06:29 -080020
21namespace webrtc {
Alex Loiko507e8d12018-02-27 13:51:47 +010022class ApmDataDumper;
aleloi24899e52017-02-21 05:06:29 -080023
24class FrameCombiner {
25 public:
Alex Loiko507e8d12018-02-27 13:51:47 +010026 enum class LimiterType { kNoLimiter, kApmAgcLimiter, kApmAgc2Limiter };
Alex Loiko507e8d12018-02-27 13:51:47 +010027 explicit FrameCombiner(bool use_limiter);
aleloi24899e52017-02-21 05:06:29 -080028 ~FrameCombiner();
29
30 // Combine several frames into one. Assumes sample_rate,
31 // samples_per_channel of the input frames match the parameters. The
aleloi2c9306e2017-03-29 04:25:16 -070032 // parameters 'number_of_channels' and 'sample_rate' are needed
33 // because 'mix_list' can be empty. The parameter
34 // 'number_of_streams' is used for determining whether to pass the
35 // data through a limiter.
Olga Sharonova0607c962020-10-19 14:23:46 +020036 void Combine(rtc::ArrayView<AudioFrame* const> mix_list,
aleloi24899e52017-02-21 05:06:29 -080037 size_t number_of_channels,
38 int sample_rate,
aleloi2c9306e2017-03-29 04:25:16 -070039 size_t number_of_streams,
Alex Loiko507e8d12018-02-27 13:51:47 +010040 AudioFrame* audio_frame_for_mixing);
aleloi24899e52017-02-21 05:06:29 -080041
Alex Loikob4977de2019-01-28 16:38:38 +010042 // Stereo, 48 kHz, 10 ms.
43 static constexpr size_t kMaximumNumberOfChannels = 8;
44 static constexpr size_t kMaximumChannelSize = 48 * 10;
45
46 using MixingBuffer = std::array<std::array<float, kMaximumChannelSize>,
47 kMaximumNumberOfChannels>;
48
aleloi24899e52017-02-21 05:06:29 -080049 private:
Olga Sharonova0607c962020-10-19 14:23:46 +020050 void LogMixingStats(rtc::ArrayView<const AudioFrame* const> mix_list,
Alex Loiko6f2fcb42018-03-14 12:27:05 +010051 int sample_rate,
52 size_t number_of_streams) const;
53
Alex Loiko507e8d12018-02-27 13:51:47 +010054 std::unique_ptr<ApmDataDumper> data_dumper_;
Alex Loikob4977de2019-01-28 16:38:38 +010055 std::unique_ptr<MixingBuffer> mixing_buffer_;
Alessio Bazzica3e4c77f2018-11-01 21:31:38 +010056 Limiter limiter_;
Alex Loiko8396e342018-06-21 12:04:05 +020057 const bool use_limiter_;
Alex Loiko6f2fcb42018-03-14 12:27:05 +010058 mutable int uma_logging_counter_ = 0;
aleloi24899e52017-02-21 05:06:29 -080059};
60} // namespace webrtc
61
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020062#endif // MODULES_AUDIO_MIXER_FRAME_COMBINER_H_