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

📄 qlsf.h

📁 speech signal process tools
💻 H
字号:
/* ******************************************************************************** * *  Include file for qlsf and iqlsf programs. * *  @(#)qlsf.h	1.1	10/6/87 ESI * ******************************************************************************** *//* *  Defines for indexes to power quantization tables. */#define FINE		0	/* 6-bit quantization */#define COARSE		1	/* 1.5 dB quantization *//* *  Data structure for quantization table. */struct qtable{    float enc;			/* Upper limit on encoding range */    float dec;			/* Value to decode */    int code;			/* Bit pattern (quantization index) */};/* *  Data structure for pointer to a table, and length of the table. */struct quantable{    struct qtable *tab;		/* Pointer to table */    int nval;			/* Number of entries in the table */};

⌨️ 快捷键说明

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