Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: webrtc/voice_engine/output_mixer.h

Issue 2727063004: Remove VoEVolumeControl interface. (Closed)
Patch Set: fix Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_VOICE_ENGINE_OUTPUT_MIXER_H_ 11 #ifndef WEBRTC_VOICE_ENGINE_OUTPUT_MIXER_H_
12 #define WEBRTC_VOICE_ENGINE_OUTPUT_MIXER_H_ 12 #define WEBRTC_VOICE_ENGINE_OUTPUT_MIXER_H_
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/base/criticalsection.h" 16 #include "webrtc/base/criticalsection.h"
17 #include "webrtc/common_audio/resampler/include/push_resampler.h" 17 #include "webrtc/common_audio/resampler/include/push_resampler.h"
18 #include "webrtc/common_types.h" 18 #include "webrtc/common_types.h"
19 #include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer.h " 19 #include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer.h "
20 #include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_d efines.h" 20 #include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_d efines.h"
21 #include "webrtc/voice_engine/audio_level.h"
22 #include "webrtc/voice_engine/file_recorder.h" 21 #include "webrtc/voice_engine/file_recorder.h"
23 #include "webrtc/voice_engine/voice_engine_defines.h"
24 22
25 namespace webrtc { 23 namespace webrtc {
26 24
27 class AudioProcessing; 25 class AudioProcessing;
28 class FileWrapper; 26 class FileWrapper;
29 27
30 namespace voe { 28 namespace voe {
31 29
32 class Statistics; 30 class Statistics;
33 31
(...skipping 16 matching lines...) Expand all
50 48
51 int32_t SetMixabilityStatus(MixerParticipant& participant, 49 int32_t SetMixabilityStatus(MixerParticipant& participant,
52 bool mixable); 50 bool mixable);
53 51
54 int32_t SetAnonymousMixabilityStatus(MixerParticipant& participant, 52 int32_t SetAnonymousMixabilityStatus(MixerParticipant& participant,
55 bool mixable); 53 bool mixable);
56 54
57 int GetMixedAudio(int sample_rate_hz, size_t num_channels, 55 int GetMixedAudio(int sample_rate_hz, size_t num_channels,
58 AudioFrame* audioFrame); 56 AudioFrame* audioFrame);
59 57
60 // VoEVolumeControl
61 int GetSpeechOutputLevel(uint32_t& level);
62
63 int GetSpeechOutputLevelFullRange(uint32_t& level);
64
65 int SetOutputVolumePan(float left, float right);
66
67 int GetOutputVolumePan(float& left, float& right);
68
69 // VoEFile 58 // VoEFile
70 int StartRecordingPlayout(const char* fileName, 59 int StartRecordingPlayout(const char* fileName,
71 const CodecInst* codecInst); 60 const CodecInst* codecInst);
72 61
73 int StartRecordingPlayout(OutStream* stream, 62 int StartRecordingPlayout(OutStream* stream,
74 const CodecInst* codecInst); 63 const CodecInst* codecInst);
75 int StopRecordingPlayout(); 64 int StopRecordingPlayout();
76 65
77 virtual ~OutputMixer(); 66 virtual ~OutputMixer();
78 67
(...skipping 20 matching lines...) Expand all
99 AudioProcessing* _audioProcessingModulePtr; 88 AudioProcessing* _audioProcessingModulePtr;
100 89
101 // Protects output_file_recorder_ and _outputFileRecording. 90 // Protects output_file_recorder_ and _outputFileRecording.
102 rtc::CriticalSection _fileCritSect; 91 rtc::CriticalSection _fileCritSect;
103 AudioConferenceMixer& _mixerModule; 92 AudioConferenceMixer& _mixerModule;
104 AudioFrame _audioFrame; 93 AudioFrame _audioFrame;
105 // Converts mixed audio to the audio device output rate. 94 // Converts mixed audio to the audio device output rate.
106 PushResampler<int16_t> resampler_; 95 PushResampler<int16_t> resampler_;
107 // Converts mixed audio to the audio processing rate. 96 // Converts mixed audio to the audio processing rate.
108 PushResampler<int16_t> audioproc_resampler_; 97 PushResampler<int16_t> audioproc_resampler_;
109 AudioLevel _audioLevel; // measures audio level for the combined signal
110 int _instanceId; 98 int _instanceId;
111 float _panLeft;
112 float _panRight;
113 int _mixingFrequencyHz; 99 int _mixingFrequencyHz;
114 std::unique_ptr<FileRecorder> output_file_recorder_; 100 std::unique_ptr<FileRecorder> output_file_recorder_;
115 bool _outputFileRecording; 101 bool _outputFileRecording;
116 }; 102 };
117 103
118 } // namespace voe 104 } // namespace voe
119 105
120 } // namespace werbtc 106 } // namespace werbtc
121 107
122 #endif // VOICE_ENGINE_OUTPUT_MIXER_H_ 108 #endif // VOICE_ENGINE_OUTPUT_MIXER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698