blob: fe2a240a10466799b366c2e05a6d0669fc7606c5 [file] [log] [blame]
henrik.lundin92a7a182017-03-07 01:58:55 -08001/*
2 * Copyright (c) 2012 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
Fredrik Solenberga8b7c7f2018-01-17 11:18:31 +010011#include "audio/audio_level.h"
henrik.lundin92a7a182017-03-07 01:58:55 -080012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "common_audio/signal_processing/include/signal_processing_library.h"
14#include "modules/include/module_common_types.h"
henrik.lundin92a7a182017-03-07 01:58:55 -080015
16namespace webrtc {
17namespace voe {
18
19// Number of bars on the indicator.
20// Note that the number of elements is specified because we are indexing it
21// in the range of 0-32
22constexpr int8_t kPermutation[33] = {0, 1, 2, 3, 4, 4, 5, 5, 5, 5, 6,
23 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8,
24 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9};
25
26AudioLevel::AudioLevel()
27 : abs_max_(0), count_(0), current_level_(0), current_level_full_range_(0) {
28 WebRtcSpl_Init();
29}
30
31AudioLevel::~AudioLevel() {}
32
33int8_t AudioLevel::Level() const {
34 rtc::CritScope cs(&crit_sect_);
35 return current_level_;
36}
37
38int16_t AudioLevel::LevelFullRange() const {
39 rtc::CritScope cs(&crit_sect_);
40 return current_level_full_range_;
41}
42
43void AudioLevel::Clear() {
44 rtc::CritScope cs(&crit_sect_);
45 abs_max_ = 0;
46 count_ = 0;
47 current_level_ = 0;
48 current_level_full_range_ = 0;
49}
50
zstein3c451862017-07-20 09:57:42 -070051double AudioLevel::TotalEnergy() const {
52 rtc::CritScope cs(&crit_sect_);
53 return total_energy_;
54}
55
56double AudioLevel::TotalDuration() const {
57 rtc::CritScope cs(&crit_sect_);
58 return total_duration_;
59}
60
61void AudioLevel::ComputeLevel(const AudioFrame& audioFrame, double duration) {
henrik.lundin92a7a182017-03-07 01:58:55 -080062 // Check speech level (works for 2 channels as well)
yujo36b1a5f2017-06-12 12:45:32 -070063 int16_t abs_value = audioFrame.muted() ? 0 :
64 WebRtcSpl_MaxAbsValueW16(
65 audioFrame.data(),
66 audioFrame.samples_per_channel_ * audioFrame.num_channels_);
henrik.lundin92a7a182017-03-07 01:58:55 -080067
68 // Protect member access using a lock since this method is called on a
69 // dedicated audio thread in the RecordedDataIsAvailable() callback.
70 rtc::CritScope cs(&crit_sect_);
71
72 if (abs_value > abs_max_)
73 abs_max_ = abs_value;
74
75 // Update level approximately 10 times per second
76 if (count_++ == kUpdateFrequency) {
77 current_level_full_range_ = abs_max_;
78
79 count_ = 0;
80
81 // Highest value for a int16_t is 0x7fff = 32767
82 // Divide with 1000 to get in the range of 0-32 which is the range of the
83 // permutation vector
84 int32_t position = abs_max_ / 1000;
85
86 // Make it less likely that the bar stays at position 0. I.e. only if it's
87 // in the range 0-250 (instead of 0-1000)
88 if ((position == 0) && (abs_max_ > 250)) {
89 position = 1;
90 }
91 current_level_ = kPermutation[position];
92
93 // Decay the absolute maximum (divide by 4)
94 abs_max_ >>= 2;
95 }
zstein3c451862017-07-20 09:57:42 -070096
97 // See the description for "totalAudioEnergy" in the WebRTC stats spec
98 // (https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy)
99 // for an explanation of these formulas. In short, we need a value that can
100 // be used to compute RMS audio levels over different time intervals, by
101 // taking the difference between the results from two getStats calls. To do
102 // this, the value needs to be of units "squared sample value * time".
103 double additional_energy =
104 static_cast<double>(current_level_full_range_) / INT16_MAX;
105 additional_energy *= additional_energy;
106 total_energy_ += additional_energy * duration;
107 total_duration_ += duration;
henrik.lundin92a7a182017-03-07 01:58:55 -0800108}
109
110} // namespace voe
111} // namespace webrtc