cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / renderer / media / media_stream_audio_level_calculator.cc
blob9994b695e1182f443cd9635f40254c3457edc1ae
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/renderer/media/media_stream_audio_level_calculator.h"
7 #include "base/logging.h"
8 #include "base/stl_util.h"
10 namespace content {
12 namespace {
14 // Calculates the maximum absolute amplitude of the audio data.
15 // Note, the return value can be bigger than std::numeric_limits<int16>::max().
16 int MaxAmplitude(const int16* audio_data, int length) {
17 int max = 0, absolute = 0;
18 for (int i = 0; i < length; ++i) {
19 absolute = std::abs(audio_data[i]);
20 if (absolute > max)
21 max = absolute;
23 // The range of int16 is [-32768, 32767], verify the |max| should not be
24 // bigger than 32768.
25 DCHECK(max <= std::abs(std::numeric_limits<int16>::min()));
27 return max;
30 } // namespace
32 MediaStreamAudioLevelCalculator::MediaStreamAudioLevelCalculator()
33 : counter_(0),
34 max_amplitude_(0),
35 level_(0) {
38 MediaStreamAudioLevelCalculator::~MediaStreamAudioLevelCalculator() {
41 int MediaStreamAudioLevelCalculator::Calculate(
42 const int16* audio_data,
43 int number_of_channels,
44 int number_of_frames,
45 bool force_report_nonzero_energy) {
46 DCHECK(thread_checker_.CalledOnValidThread());
47 // |level_| is updated every 10 callbacks. For the case where callback comes
48 // every 10ms, |level_| will be updated approximately every 100ms.
49 static const int kUpdateFrequency = 10;
51 int max = MaxAmplitude(audio_data, number_of_channels * number_of_frames);
52 max_amplitude_ = std::max(max_amplitude_, max);
54 if (counter_++ == kUpdateFrequency) {
55 level_ = (max_amplitude_ == 0 ?
56 force_report_nonzero_energy : max_amplitude_);
58 // Decay the absolute maximum amplitude by 1/4.
59 max_amplitude_ >>= 2;
61 // Reset the counter.
62 counter_ = 0;
65 return level_;
68 } // namespace content