LCOV - code coverage report
Current view: top level - media/webrtc/trunk/webrtc/modules/audio_processing/vad - pitch_internal.cc (source / functions) Hit Total Coverage
Test: output.info Lines: 0 15 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       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/modules/audio_processing/vad/pitch_internal.h"
      12             : 
      13             : #include <cmath>
      14             : 
      15             : // A 4-to-3 linear interpolation.
      16             : // The interpolation constants are derived as following:
      17             : // Input pitch parameters are updated every 7.5 ms. Within a 30-ms interval
      18             : // we are interested in pitch parameters of 0-5 ms, 10-15ms and 20-25ms. This is
      19             : // like interpolating 4-to-6 and keep the odd samples.
      20             : // The reason behind this is that LPC coefficients are computed for the first
      21             : // half of each 10ms interval.
      22           0 : static void PitchInterpolation(double old_val, const double* in, double* out) {
      23           0 :   out[0] = 1. / 6. * old_val + 5. / 6. * in[0];
      24           0 :   out[1] = 5. / 6. * in[1] + 1. / 6. * in[2];
      25           0 :   out[2] = 0.5 * in[2] + 0.5 * in[3];
      26           0 : }
      27             : 
      28           0 : void GetSubframesPitchParameters(int sampling_rate_hz,
      29             :                                  double* gains,
      30             :                                  double* lags,
      31             :                                  int num_in_frames,
      32             :                                  int num_out_frames,
      33             :                                  double* log_old_gain,
      34             :                                  double* old_lag,
      35             :                                  double* log_pitch_gain,
      36             :                                  double* pitch_lag_hz) {
      37             :   // Gain interpolation is in log-domain, also returned in log-domain.
      38           0 :   for (int n = 0; n < num_in_frames; n++)
      39           0 :     gains[n] = log(gains[n] + 1e-12);
      40             : 
      41             :   // Interpolate lags and gains.
      42           0 :   PitchInterpolation(*log_old_gain, gains, log_pitch_gain);
      43           0 :   *log_old_gain = gains[num_in_frames - 1];
      44           0 :   PitchInterpolation(*old_lag, lags, pitch_lag_hz);
      45           0 :   *old_lag = lags[num_in_frames - 1];
      46             : 
      47             :   // Convert pitch-lags to Hertz.
      48           0 :   for (int n = 0; n < num_out_frames; n++) {
      49           0 :     pitch_lag_hz[n] = (sampling_rate_hz) / (pitch_lag_hz[n]);
      50             :   }
      51           0 : }

Generated by: LCOV version 1.13