blob: b2f4df4da83d0a7a14729b582cf400210f37c124 [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
11#include "webrtc/voice_engine/audio_level.h"
12
13#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
14#include "webrtc/modules/include/module_common_types.h"
15
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
51void AudioLevel::ComputeLevel(const AudioFrame& audioFrame) {
52 // Check speech level (works for 2 channels as well)
53 int16_t abs_value = WebRtcSpl_MaxAbsValueW16(
54 audioFrame.data_,
55 audioFrame.samples_per_channel_ * audioFrame.num_channels_);
56
57 // Protect member access using a lock since this method is called on a
58 // dedicated audio thread in the RecordedDataIsAvailable() callback.
59 rtc::CritScope cs(&crit_sect_);
60
61 if (abs_value > abs_max_)
62 abs_max_ = abs_value;
63
64 // Update level approximately 10 times per second
65 if (count_++ == kUpdateFrequency) {
66 current_level_full_range_ = abs_max_;
67
68 count_ = 0;
69
70 // Highest value for a int16_t is 0x7fff = 32767
71 // Divide with 1000 to get in the range of 0-32 which is the range of the
72 // permutation vector
73 int32_t position = abs_max_ / 1000;
74
75 // Make it less likely that the bar stays at position 0. I.e. only if it's
76 // in the range 0-250 (instead of 0-1000)
77 if ((position == 0) && (abs_max_ > 250)) {
78 position = 1;
79 }
80 current_level_ = kPermutation[position];
81
82 // Decay the absolute maximum (divide by 4)
83 abs_max_ >>= 2;
84 }
85}
86
87} // namespace voe
88} // namespace webrtc