blob: 27a7dde1b2b25c2faefa1aa6a8d6641c07776d37 [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)
yujo36b1a5f2017-06-12 12:45:32 -070053 int16_t abs_value = audioFrame.muted() ? 0 :
54 WebRtcSpl_MaxAbsValueW16(
55 audioFrame.data(),
56 audioFrame.samples_per_channel_ * audioFrame.num_channels_);
henrik.lundin92a7a182017-03-07 01:58:55 -080057
58 // Protect member access using a lock since this method is called on a
59 // dedicated audio thread in the RecordedDataIsAvailable() callback.
60 rtc::CritScope cs(&crit_sect_);
61
62 if (abs_value > abs_max_)
63 abs_max_ = abs_value;
64
65 // Update level approximately 10 times per second
66 if (count_++ == kUpdateFrequency) {
67 current_level_full_range_ = abs_max_;
68
69 count_ = 0;
70
71 // Highest value for a int16_t is 0x7fff = 32767
72 // Divide with 1000 to get in the range of 0-32 which is the range of the
73 // permutation vector
74 int32_t position = abs_max_ / 1000;
75
76 // Make it less likely that the bar stays at position 0. I.e. only if it's
77 // in the range 0-250 (instead of 0-1000)
78 if ((position == 0) && (abs_max_ > 250)) {
79 position = 1;
80 }
81 current_level_ = kPermutation[position];
82
83 // Decay the absolute maximum (divide by 4)
84 abs_max_ >>= 2;
85 }
86}
87
88} // namespace voe
89} // namespace webrtc