blob: 0c7146923838a7cf04f1154a48b967babe9817e7 [file] [log] [blame]
aleloi77ad3942016-07-04 06:33:02 -07001/*
aleloi5d167d62016-08-24 02:20:54 -07002 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
aleloi77ad3942016-07-04 06:33:02 -07003 *
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
11#ifndef WEBRTC_MODULES_AUDIO_MIXER_AUDIO_MIXER_H_
12#define WEBRTC_MODULES_AUDIO_MIXER_AUDIO_MIXER_H_
13
kwiberg5a25d952016-08-17 07:31:12 -070014#include <memory>
15
aleloi5d167d62016-08-24 02:20:54 -070016#include "webrtc/modules/include/module_common_types.h"
aleloi77ad3942016-07-04 06:33:02 -070017
18namespace webrtc {
19
aleloi5d167d62016-08-24 02:20:54 -070020class AudioMixer {
aleloi77ad3942016-07-04 06:33:02 -070021 public:
aleloi5d167d62016-08-24 02:20:54 -070022 static const int kMaximumAmountOfMixedAudioSources = 3;
aleloie8914152016-10-11 06:18:31 -070023 // A callback class that all mixer participants must inherit from/implement.
24 class Source {
25 public:
26 enum class AudioFrameInfo {
27 kNormal, // The samples in audio_frame are valid and should be used.
28 kMuted, // The samples in audio_frame should not be used, but should be
29 // implicitly interpreted as zero. Other fields in audio_frame
30 // may be read and should contain meaningful values.
31 kError // audio_frame will not be used.
32 };
33
34 struct AudioFrameWithInfo {
35 AudioFrame* audio_frame;
36 AudioFrameInfo audio_frame_info;
37 };
38
39 // The implementation of GetAudioFrameWithInfo should update
40 // audio_frame with new audio every time it's called. Implementing
41 // classes are allowed to return the same AudioFrame pointer on
42 // different calls. The pointer must stay valid until the next
43 // mixing call or until this audio source is disconnected from the
44 // mixer. The mixer may modify the contents of the passed
45 // AudioFrame pointer at any time until the next call to
46 // GetAudioFrameWithInfo, or until the source is removed from the
47 // mixer.
aleloie97974d2016-10-12 03:06:09 -070048 virtual AudioFrameWithInfo GetAudioFrameWithInfo(int sample_rate_hz) = 0;
aleloie8914152016-10-11 06:18:31 -070049
50 protected:
51 virtual ~Source() {}
52 };
53
aleloi5d167d62016-08-24 02:20:54 -070054 // Factory method. Constructor disabled.
aleloie97974d2016-10-12 03:06:09 -070055 static std::unique_ptr<AudioMixer> Create();
aleloi5d167d62016-08-24 02:20:54 -070056 virtual ~AudioMixer() {}
aleloi77ad3942016-07-04 06:33:02 -070057
aleloi5d167d62016-08-24 02:20:54 -070058 // Add/remove audio sources as candidates for mixing.
aleloie8914152016-10-11 06:18:31 -070059 virtual int32_t SetMixabilityStatus(Source* audio_source, bool mixable) = 0;
aleloi77ad3942016-07-04 06:33:02 -070060
aleloi5d167d62016-08-24 02:20:54 -070061 // Performs mixing by asking registered audio sources for audio. The
aleloie97974d2016-10-12 03:06:09 -070062 // mixed result is placed in the provided AudioFrame. Will only be
aleloi5d167d62016-08-24 02:20:54 -070063 // called from a single thread. The rate and channels arguments
64 // specify the rate and number of channels of the mix result.
aleloie97974d2016-10-12 03:06:09 -070065 virtual void Mix(int sample_rate_hz,
aleloi5d167d62016-08-24 02:20:54 -070066 size_t number_of_channels,
67 AudioFrame* audio_frame_for_mixing) = 0;
aleloi77ad3942016-07-04 06:33:02 -070068};
aleloi77ad3942016-07-04 06:33:02 -070069} // namespace webrtc
70
71#endif // WEBRTC_MODULES_AUDIO_MIXER_AUDIO_MIXER_H_