Home | History | Annotate | Download | only in webaudio
      1 /*
      2  * Copyright (C) 2010, Google Inc. All rights reserved.
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions
      6  * are met:
      7  * 1.  Redistributions of source code must retain the above copyright
      8  *    notice, this list of conditions and the following disclaimer.
      9  * 2.  Redistributions in binary form must reproduce the above copyright
     10  *    notice, this list of conditions and the following disclaimer in the
     11  *    documentation and/or other materials provided with the distribution.
     12  *
     13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
     14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     16  * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
     17  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
     20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     23  */
     24 
     25 #ifndef RealtimeAnalyser_h
     26 #define RealtimeAnalyser_h
     27 
     28 #include "core/platform/audio/AudioArray.h"
     29 #include "wtf/Forward.h"
     30 #include "wtf/Noncopyable.h"
     31 #include "wtf/OwnPtr.h"
     32 
     33 namespace WebCore {
     34 
     35 class AudioBus;
     36 class FFTFrame;
     37 
     38 class RealtimeAnalyser {
     39     WTF_MAKE_NONCOPYABLE(RealtimeAnalyser);
     40 public:
     41     RealtimeAnalyser();
     42     virtual ~RealtimeAnalyser();
     43 
     44     void reset();
     45 
     46     size_t fftSize() const { return m_fftSize; }
     47     bool setFftSize(size_t);
     48 
     49     unsigned frequencyBinCount() const { return m_fftSize / 2; }
     50 
     51     void setMinDecibels(float k) { m_minDecibels = k; }
     52     float minDecibels() const { return static_cast<float>(m_minDecibels); }
     53 
     54     void setMaxDecibels(float k) { m_maxDecibels = k; }
     55     float maxDecibels() const { return static_cast<float>(m_maxDecibels); }
     56 
     57     void setSmoothingTimeConstant(float k) { m_smoothingTimeConstant = k; }
     58     float smoothingTimeConstant() const { return static_cast<float>(m_smoothingTimeConstant); }
     59 
     60     void getFloatFrequencyData(Float32Array*);
     61     void getByteFrequencyData(Uint8Array*);
     62     void getByteTimeDomainData(Uint8Array*);
     63 
     64     // The audio thread writes input data here.
     65     void writeInput(AudioBus*, size_t framesToProcess);
     66 
     67     static const double DefaultSmoothingTimeConstant;
     68     static const double DefaultMinDecibels;
     69     static const double DefaultMaxDecibels;
     70 
     71     static const unsigned DefaultFFTSize;
     72     static const unsigned MinFFTSize;
     73     static const unsigned MaxFFTSize;
     74     static const unsigned InputBufferSize;
     75 
     76 private:
     77     // The audio thread writes the input audio here.
     78     AudioFloatArray m_inputBuffer;
     79     unsigned m_writeIndex;
     80 
     81     size_t m_fftSize;
     82     OwnPtr<FFTFrame> m_analysisFrame;
     83     void doFFTAnalysis();
     84 
     85     // doFFTAnalysis() stores the floating-point magnitude analysis data here.
     86     AudioFloatArray m_magnitudeBuffer;
     87     AudioFloatArray& magnitudeBuffer() { return m_magnitudeBuffer; }
     88 
     89     // A value between 0 and 1 which averages the previous version of m_magnitudeBuffer with the current analysis magnitude data.
     90     double m_smoothingTimeConstant;
     91 
     92     // The range used when converting when using getByteFrequencyData().
     93     double m_minDecibels;
     94     double m_maxDecibels;
     95 };
     96 
     97 } // namespace WebCore
     98 
     99 #endif // RealtimeAnalyser_h
    100