⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lag_wind.c

📁 关于AMR-WB+语音压缩编码的实现代码
💻 C
字号:
/*-------------------------------------------------------------*
 * procedure init_lag_wind:                                    *
 *           ~~~~~~~~~~~~~~                                    *
 * Compute the lag window (for windowing the autocorrelations  *
 * in LP analysis).                                            *
 *-------------------------------------------------------------*/
#include "../include/amr_plus.h"
/*-------------------------------------------------------------*
 * procedure lag_wind:                                         *
 *           ~~~~~~~~~                                         *
 * lag windowing of the autocorrelations                       *
 *-------------------------------------------------------------*/
void lag_wind(
  float  r[],           /* in/out: autocorrelations            */
  int m                 /* input : order of LP filter          */
)
{
  int i;
  for (i = 0; i <= m; i++) {
    r[i] *= lag_window[i];
  }
  return;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -