blob: 14136bf30495dda86c9240b5b8ab03b6e33c4e40 [file] [log] [blame]
andrew@webrtc.org8ec46c62014-05-05 18:22:21 +00001/*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
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#include "webrtc/modules/audio_processing/rms_level.h"
12
13#include <assert.h>
14#include <math.h>
15
16namespace webrtc {
17
andrew@webrtc.org5ec8fee2014-05-14 19:00:59 +000018static const float kMaxSquaredLevel = 32768 * 32768;
andrew@webrtc.org8ec46c62014-05-05 18:22:21 +000019
20RMSLevel::RMSLevel()
andrew@webrtc.org5ec8fee2014-05-14 19:00:59 +000021 : sum_square_(0),
andrew@webrtc.org8ec46c62014-05-05 18:22:21 +000022 sample_count_(0) {}
23
24RMSLevel::~RMSLevel() {}
25
26void RMSLevel::Reset() {
andrew@webrtc.org5ec8fee2014-05-14 19:00:59 +000027 sum_square_ = 0;
andrew@webrtc.org8ec46c62014-05-05 18:22:21 +000028 sample_count_ = 0;
29}
30
31void RMSLevel::Process(const int16_t* data, int length) {
32 for (int i = 0; i < length; ++i) {
33 sum_square_ += data[i] * data[i];
34 }
35 sample_count_ += length;
36}
37
38void RMSLevel::ProcessMuted(int length) {
39 sample_count_ += length;
40}
41
42int RMSLevel::RMS() {
andrew@webrtc.org5ec8fee2014-05-14 19:00:59 +000043 if (sample_count_ == 0 || sum_square_ == 0) {
andrew@webrtc.org8ec46c62014-05-05 18:22:21 +000044 Reset();
45 return kMinLevel;
46 }
47
48 // Normalize by the max level.
49 float rms = sum_square_ / (sample_count_ * kMaxSquaredLevel);
50 // 20log_10(x^0.5) = 10log_10(x)
51 rms = 10 * log10(rms);
52 assert(rms <= 0);
53 if (rms < -kMinLevel)
54 rms = -kMinLevel;
55
56 rms = -rms;
57 Reset();
58 return static_cast<int>(rms + 0.5);
59}
60
61} // namespace webrtc