blob: 3483df22bc1f723cdf806a93d8d2de7b4e99d915 [file] [log] [blame]
aleloi77ad3942016-07-04 13:33:021/*
aleloi5d167d62016-08-24 09:20:542 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
aleloi77ad3942016-07-04 13:33:023 *
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 04:47:3111#ifndef API_AUDIO_AUDIO_MIXER_H_
12#define API_AUDIO_AUDIO_MIXER_H_
aleloi77ad3942016-07-04 13:33:0213
kwiberg5a25d952016-08-17 14:31:1214#include <memory>
15
Niels Möllerd377f042018-02-13 14:03:4316#include "api/audio/audio_frame.h"
Steve Anton10542f22019-01-11 17:11:0017#include "rtc_base/ref_count.h"
aleloi77ad3942016-07-04 13:33:0218
19namespace webrtc {
20
aleloi201dfe92016-10-20 12:06:3921// WORK IN PROGRESS
22// This class is under development and is not yet intended for for use outside
23// of WebRtc/Libjingle.
aleloi116ec6d2016-10-12 13:07:0724class AudioMixer : public rtc::RefCountInterface {
aleloi77ad3942016-07-04 13:33:0225 public:
aleloie8914152016-10-11 13:18:3126 // A callback class that all mixer participants must inherit from/implement.
27 class Source {
28 public:
29 enum class AudioFrameInfo {
30 kNormal, // The samples in audio_frame are valid and should be used.
aleloi201dfe92016-10-20 12:06:3931 kMuted, // The samples in audio_frame should not be used, but
32 // should be implicitly interpreted as zero. Other
33 // fields in audio_frame may be read and should
34 // contain meaningful values.
35 kError, // The audio_frame will not be used.
aleloie8914152016-10-11 13:18:3136 };
37
Artem Titov0e61fdd2021-07-25 19:50:1438 // Overwrites `audio_frame`. The data_ field is overwritten with
aleloi6c278492016-10-20 21:24:3939 // 10 ms of new audio (either 1 or 2 interleaved channels) at
Artem Titov0e61fdd2021-07-25 19:50:1440 // `sample_rate_hz`. All fields in `audio_frame` must be updated.
aleloi6c278492016-10-20 21:24:3941 virtual AudioFrameInfo GetAudioFrameWithInfo(int sample_rate_hz,
42 AudioFrame* audio_frame) = 0;
aleloie8914152016-10-11 13:18:3143
aleloi201dfe92016-10-20 12:06:3944 // A way for a mixer implementation to distinguish participants.
aleloi051f6782016-10-31 10:26:4045 virtual int Ssrc() const = 0;
46
47 // A way for this source to say that GetAudioFrameWithInfo called
48 // with this sample rate or higher will not cause quality loss.
49 virtual int PreferredSampleRate() const = 0;
aleloi116ec6d2016-10-12 13:07:0750
aleloie8914152016-10-11 13:18:3151 virtual ~Source() {}
52 };
53
aleloi76b30492016-11-18 10:03:0454 // Returns true if adding was successful. A source is never added
55 // twice. Addition and removal can happen on different threads.
aleloi116ec6d2016-10-12 13:07:0756 virtual bool AddSource(Source* audio_source) = 0;
aleloi76b30492016-11-18 10:03:0457
58 // Removal is never attempted if a source has not been successfully
59 // added to the mixer.
60 virtual void RemoveSource(Source* audio_source) = 0;
aleloi77ad3942016-07-04 13:33:0261
aleloi5d167d62016-08-24 09:20:5462 // Performs mixing by asking registered audio sources for audio. The
aleloi6c278492016-10-20 21:24:3963 // mixed result is placed in the provided AudioFrame. This method
aleloi95611832016-11-08 14:39:5064 // will only be called from a single thread. The channels argument
65 // specifies the number of channels of the mix result. The mixer
66 // should mix at a rate that doesn't cause quality loss of the
67 // sources' audio. The mixing rate is one of the rates listed in
68 // AudioProcessing::NativeRate. All fields in
Artem Titov0e61fdd2021-07-25 19:50:1469 // `audio_frame_for_mixing` must be updated.
aleloi95611832016-11-08 14:39:5070 virtual void Mix(size_t number_of_channels,
aleloi5d167d62016-08-24 09:20:5471 AudioFrame* audio_frame_for_mixing) = 0;
aleloi6c278492016-10-20 21:24:3972
73 protected:
74 // Since the mixer is reference counted, the destructor may be
75 // called from any thread.
76 ~AudioMixer() override {}
aleloi77ad3942016-07-04 13:33:0277};
aleloi77ad3942016-07-04 13:33:0278} // namespace webrtc
79
Mirko Bonadei92ea95e2017-09-15 04:47:3180#endif // API_AUDIO_AUDIO_MIXER_H_