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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/voice_engine/output_mixer.h
diff --git a/webrtc/voice_engine/output_mixer.h b/webrtc/voice_engine/output_mixer.h
index 688bde317f3f900b6714269fb196a8b643e84a26..79c5e097ea25d951857f110ebcbd4f72fe1f652c 100644
--- a/webrtc/voice_engine/output_mixer.h
+++ b/webrtc/voice_engine/output_mixer.h
@@ -18,9 +18,7 @@
#include "webrtc/common_types.h"
#include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer.h"
#include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_defines.h"
-#include "webrtc/voice_engine/audio_level.h"
#include "webrtc/voice_engine/file_recorder.h"
-#include "webrtc/voice_engine/voice_engine_defines.h"
namespace webrtc {
@@ -57,15 +55,6 @@ public:
int GetMixedAudio(int sample_rate_hz, size_t num_channels,
AudioFrame* audioFrame);
- // VoEVolumeControl
- int GetSpeechOutputLevel(uint32_t& level);
-
- int GetSpeechOutputLevelFullRange(uint32_t& level);
-
- int SetOutputVolumePan(float left, float right);
-
- int GetOutputVolumePan(float& left, float& right);
-
// VoEFile
int StartRecordingPlayout(const char* fileName,
const CodecInst* codecInst);
@@ -106,10 +95,7 @@ private:
PushResampler<int16_t> resampler_;
// Converts mixed audio to the audio processing rate.
PushResampler<int16_t> audioproc_resampler_;
- AudioLevel _audioLevel; // measures audio level for the combined signal
int _instanceId;
- float _panLeft;
- float _panRight;
int _mixingFrequencyHz;
std::unique_ptr<FileRecorder> output_file_recorder_;
bool _outputFileRecording;

Powered by Google App Engine
This is Rietveld 408576698