blob: 70c4422d34bae2c5f9542162da6b2d98a65f01de [file] [log] [blame]
andrew@webrtc.org382c0c22014-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.org21299d42014-05-14 19:00:59 +000018static const float kMaxSquaredLevel = 32768 * 32768;
andrew@webrtc.org382c0c22014-05-05 18:22:21 +000019
20RMSLevel::RMSLevel()
andrew@webrtc.org21299d42014-05-14 19:00:59 +000021 : sum_square_(0),
andrew@webrtc.org382c0c22014-05-05 18:22:21 +000022 sample_count_(0) {}
23
24RMSLevel::~RMSLevel() {}
25
26void RMSLevel::Reset() {
andrew@webrtc.org21299d42014-05-14 19:00:59 +000027 sum_square_ = 0;
andrew@webrtc.org382c0c22014-05-05 18:22:21 +000028 sample_count_ = 0;
29}
30
Peter Kastingdce40cf2015-08-24 14:52:23 -070031void RMSLevel::Process(const int16_t* data, size_t length) {
32 for (size_t i = 0; i < length; ++i) {
andrew@webrtc.org382c0c22014-05-05 18:22:21 +000033 sum_square_ += data[i] * data[i];
34 }
35 sample_count_ += length;
36}
37
Peter Kastingdce40cf2015-08-24 14:52:23 -070038void RMSLevel::ProcessMuted(size_t length) {
andrew@webrtc.org382c0c22014-05-05 18:22:21 +000039 sample_count_ += length;
40}
41
42int RMSLevel::RMS() {
andrew@webrtc.org21299d42014-05-14 19:00:59 +000043 if (sample_count_ == 0 || sum_square_ == 0) {
andrew@webrtc.org382c0c22014-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