mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00

Prior to this commit, most .c files in modules/audio_coding/codecs/ilbc don't include their corresponding headers, nor do they order #includes as per the Google Style Guide [1]. The former is especially harmful, since in C it can silently allow the function signature to diverge from its prototype, thus causing disaster at runtime. This CL fixes both issues. In effect, this allows the common_audio and modules/audio_coding:ilbc targets to be compiled with Clang's -Wmissing-prototypes, though this CL does not add that change. [1]: https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes Bug: webrtc:12314 Change-Id: I8299968ed3cc86ff35d9de045072b846298043af Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/198362 Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org> Commit-Queue: Timothy Gu <timothygu@chromium.org> Cr-Commit-Position: refs/heads/master@{#32896}
81 lines
3.1 KiB
C
81 lines
3.1 KiB
C
/*
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
/******************************************************************
|
|
|
|
iLBC Speech Coder ANSI-C Source Code
|
|
|
|
WebRtcIlbcfix_CbMemEnergy.c
|
|
|
|
******************************************************************/
|
|
|
|
#include "modules/audio_coding/codecs/ilbc/cb_mem_energy.h"
|
|
|
|
#include "modules/audio_coding/codecs/ilbc/cb_mem_energy_calc.h"
|
|
#include "modules/audio_coding/codecs/ilbc/constants.h"
|
|
#include "modules/audio_coding/codecs/ilbc/defines.h"
|
|
|
|
/*----------------------------------------------------------------*
|
|
* Function WebRtcIlbcfix_CbMemEnergy computes the energy of all
|
|
* the vectors in the codebook memory that will be used in the
|
|
* following search for the best match.
|
|
*----------------------------------------------------------------*/
|
|
|
|
void WebRtcIlbcfix_CbMemEnergy(
|
|
size_t range,
|
|
int16_t *CB, /* (i) The CB memory (1:st section) */
|
|
int16_t *filteredCB, /* (i) The filtered CB memory (2:nd section) */
|
|
size_t lMem, /* (i) Length of the CB memory */
|
|
size_t lTarget, /* (i) Length of the target vector */
|
|
int16_t *energyW16, /* (o) Energy in the CB vectors */
|
|
int16_t *energyShifts, /* (o) Shift value of the energy */
|
|
int scale, /* (i) The scaling of all energy values */
|
|
size_t base_size /* (i) Index to where energy values should be stored */
|
|
) {
|
|
int16_t *ppi, *ppo, *pp;
|
|
int32_t energy, tmp32;
|
|
|
|
/* Compute the energy and store it in a vector. Also the
|
|
* corresponding shift values are stored. The energy values
|
|
* are reused in all three stages. */
|
|
|
|
/* Calculate the energy in the first block of 'lTarget' sampels. */
|
|
ppi = CB+lMem-lTarget-1;
|
|
ppo = CB+lMem-1;
|
|
|
|
pp=CB+lMem-lTarget;
|
|
energy = WebRtcSpl_DotProductWithScale( pp, pp, lTarget, scale);
|
|
|
|
/* Normalize the energy and store the number of shifts */
|
|
energyShifts[0] = (int16_t)WebRtcSpl_NormW32(energy);
|
|
tmp32 = energy << energyShifts[0];
|
|
energyW16[0] = (int16_t)(tmp32 >> 16);
|
|
|
|
/* Compute the energy of the rest of the cb memory
|
|
* by step wise adding and subtracting the next
|
|
* sample and the last sample respectively. */
|
|
WebRtcIlbcfix_CbMemEnergyCalc(energy, range, ppi, ppo, energyW16, energyShifts, scale, 0);
|
|
|
|
/* Next, precompute the energy values for the filtered cb section */
|
|
energy=0;
|
|
pp=filteredCB+lMem-lTarget;
|
|
|
|
energy = WebRtcSpl_DotProductWithScale( pp, pp, lTarget, scale);
|
|
|
|
/* Normalize the energy and store the number of shifts */
|
|
energyShifts[base_size] = (int16_t)WebRtcSpl_NormW32(energy);
|
|
tmp32 = energy << energyShifts[base_size];
|
|
energyW16[base_size] = (int16_t)(tmp32 >> 16);
|
|
|
|
ppi = filteredCB + lMem - 1 - lTarget;
|
|
ppo = filteredCB + lMem - 1;
|
|
|
|
WebRtcIlbcfix_CbMemEnergyCalc(energy, range, ppi, ppo, energyW16, energyShifts, scale, base_size);
|
|
}
|