2017-02-21 05:06:29 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_MODULES_AUDIO_MIXER_FRAME_COMBINER_H_
|
|
|
|
|
#define WEBRTC_MODULES_AUDIO_MIXER_FRAME_COMBINER_H_
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "webrtc/modules/audio_processing/include/audio_processing.h"
|
|
|
|
|
#include "webrtc/modules/include/module_common_types.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class FrameCombiner {
|
|
|
|
|
public:
|
|
|
|
|
explicit FrameCombiner(bool use_apm_limiter);
|
|
|
|
|
~FrameCombiner();
|
|
|
|
|
|
|
|
|
|
// Combine several frames into one. Assumes sample_rate,
|
|
|
|
|
// samples_per_channel of the input frames match the parameters. The
|
2017-03-29 04:25:16 -07:00
|
|
|
// parameters 'number_of_channels' and 'sample_rate' are needed
|
|
|
|
|
// because 'mix_list' can be empty. The parameter
|
|
|
|
|
// 'number_of_streams' is used for determining whether to pass the
|
|
|
|
|
// data through a limiter.
|
2017-02-21 05:06:29 -08:00
|
|
|
void Combine(const std::vector<AudioFrame*>& mix_list,
|
|
|
|
|
size_t number_of_channels,
|
|
|
|
|
int sample_rate,
|
2017-03-29 04:25:16 -07:00
|
|
|
size_t number_of_streams,
|
2017-02-21 05:06:29 -08:00
|
|
|
AudioFrame* audio_frame_for_mixing) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const bool use_apm_limiter_;
|
|
|
|
|
std::unique_ptr<AudioProcessing> limiter_;
|
|
|
|
|
};
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_MODULES_AUDIO_MIXER_FRAME_COMBINER_H_
|